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.
13 lines
251 B
C
13 lines
251 B
C
16 years ago
|
#ifndef __WIN32_MISC_H__
|
||
|
#define __WIN32_MISC_H__
|
||
|
|
||
|
#define index strchr
|
||
|
#define rindex strrchr
|
||
|
|
||
|
const char* inet_ntop(int af, const void *src, char *dst, uint32_t cnt);
|
||
|
int inet_pton(int af, const char *src, void *dst);
|
||
|
|
||
|
#define geteuid() (0)
|
||
|
|
||
|
#endif
|