ClamAV is an open source (GPLv2) anti-virus toolkit.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
clamav/libclamav/hostid.h

15 lines
224 B

#if !defined(_LIBCLAMAV_HOSTID_H)
#define _LIBCLAMAV_HOSTID_H
struct device {
char *name;
char mac[19];
};
struct device *get_devices(void);
#if !HAVE_SYSCTLBYNAME
char *internal_get_host_id(void);
#endif
#endif