1 /* Define if your raw sockets have arguments in host order as in BSD.  */
2 #undef BSD_RAWSOCK_ORDER
3 
4 /* Define if your system knows about struct sockaddr_storage */
5 #undef HAVE_SOCKADDR_STORAGE
6 
7 /* Define to int if your system does not know about sa_family_t */
8 #undef sa_family_t
9 
10 /* Define to int if your system does not know about socklen_t */
11 #undef socklen_t
12 
13 /* Define to `unsigned long long' if <sys/types.h> doesn't define.  */
14 #undef u_int64_t
15 
16 /* Define to `unsigned int' if <sys/types.h> doesn't define.  */
17 #undef u_int32_t
18 
19 /* Define to `unsigned short' if <sys/types.h> doesn't define.  */
20 #undef u_int16_t
21 
22 /* Define to `unsigned char' if <sys/types.h> doesn't define.  */
23 #undef u_int8_t
24 
25 /* Undefine if <netdb.h> contains this, otherwise define to 1 */
26 #undef NI_NUMERICHOST
27 
28 /* Undefine if <netdb.h> contains this, otherwise define to 1 */
29 #undef NI_MAXHOST
30 
31 /* Undefine if <netdb.h> contains this, otherwise define to 32 */
32 #undef NI_MAXSERV
33 
34 /* Take care of getaddrinfo */
35 #undef HAVE_STRUCT_ADDRINFO
36 
37 /* Define if timeradd is defined in <sys/time.h> */
38 #undef HAVE_TIMERADD
39 #ifndef HAVE_TIMERADD
40 #define timeradd(tvp, uvp, vvp)                                         \
41         do {                                                            \
42                 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec;          \
43                 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec;       \
44                 if ((vvp)->tv_usec >= 1000000) {                        \
45                         (vvp)->tv_sec++;                                \
46                         (vvp)->tv_usec -= 1000000;                      \
47                 }                                                       \
48         } while (0)
49 #define	timersub(tvp, uvp, vvp)						\
50 	do {								\
51 		(vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec;		\
52 		(vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec;	\
53 		if ((vvp)->tv_usec < 0) {				\
54 			(vvp)->tv_sec--;				\
55 			(vvp)->tv_usec += 1000000;			\
56 		}							\
57 	} while (0)
58 #endif /* !HAVE_TIMERADD */
59 
60 /* Define if fd_mask is defined in <sys/select.h> */
61 #undef HAVE_FDMASK_IN_SELECT
62