mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 12:38:20 +00:00
16 lines
240 B
C
16 lines
240 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
|
|
const char *
|
|
bro_inet_ntop(int af, const void * __restrict src, char * __restrict dst,
|
|
socklen_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|