1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/* * Public domain * arpa/inet.h compatibility shim */ #ifndef _WIN32 #ifdef HAVE_ARPA_NAMESER_H #include_next <arpa/nameser.h> #endif #else #include <win32netcompat.h> #ifndef INADDRSZ #define INADDRSZ 4 #endif #ifndef IN6ADDRSZ #define IN6ADDRSZ 16 #endif #ifndef INT16SZ #define INT16SZ 2 #endif #endif