mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
425 B
C
17 lines
425 B
C
16 years ago
|
/** Copyright (c) 2009 Open Information Security Foundation.
|
||
|
* \author Anoop Saldanha <poonaatsoc@gmail.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef __UTIL_HOST_OS_INFO_H__
|
||
|
#define __UTIL_HOST_OS_INFO_H__
|
||
|
|
||
|
#define SC_HINFO_IS_IPV6 0
|
||
|
#define SC_HINFO_IS_IPV4 1
|
||
|
|
||
|
int SCHInfoAddHostOSInfo(char *, char *, int);
|
||
|
int SCHInfoGetHostOSFlavour(char *);
|
||
|
void SCHInfoCleanResources(void);
|
||
|
void SCHInfoRegisterTests(void);
|
||
|
|
||
|
#endif /* __UTIL_HOST_OS_INFO_H__ */
|