add listen-timeout to function as an accept timeout
[socat/sam.git] / sysincludes.h
blobf92c0183cbc3ef494ea879399b05c911ca760fdb
1 /* source: sysincludes.h */
2 /* Copyright Gerhard Rieger 2001-2009 */
3 /* Published under the GNU General Public License V.2, see file COPYING */
5 #ifndef __sysincludes_h_included
6 #define __sysincludes_h_included 1
8 #if HAVE_LIMITS_H
9 #include <limits.h> /* USHRT_MAX */
10 #endif
11 #include <math.h> /* HUGE_VAL */
12 #include <assert.h>
13 #include <stdarg.h> /* for msg() */
14 #include <string.h> /* strerror(), strchr() */
15 #if HAVE_STRINGS_H
16 #include <strings.h> /* strcasecmp(), bzero() for FD_ZERO */
17 #endif
18 #include <stdlib.h> /* malloc(), free() */
19 #include <ctype.h> /* isdigit() */
20 #include <stdio.h> /* FILE */
21 #include <errno.h> /* errno */
22 #if HAVE_SYSLOG_H
23 #include <syslog.h> /* openlog(), syslog(), closelog() */
24 #endif
25 #include <signal.h> /* signal(), SIGPIPE, SIG_IGN */
26 #include <time.h> /* struct timeval, strftime() */
27 #if 0
28 #include <sys/timeb.h> /* struct timeb */
29 #endif
30 #if HAVE_UNISTD_H
31 #include <unistd.h> /* select(), read(), write(), stat(), fork() */
32 #endif
33 #if HAVE_PWD_H
34 #include <pwd.h> /* getpwnam() */
35 #endif
36 #if HAVE_GRP_H
37 #include <grp.h> /* getgrnam() */
38 #endif
39 #if HAVE_PTY_H && (_WITH_TERMIOS || HAVE_OPENPTY)
40 #include <pty.h>
41 #endif
42 #if HAVE_SYS_PARAM_H
43 #include <sys/param.h> /* Linux 2.4 NGROUPS */
44 #endif
45 #if HAVE_SYS_TIME_H
46 #include <sys/time.h> /* select(); OpenBSD: struct timespec */
47 #endif
48 #if HAVE_STDINT_H
49 #include <stdint.h> /* uint8_t */
50 #endif
51 #if HAVE_SYS_TYPES_H
52 #include <sys/types.h> /* pid_t, select(), socket(), connect(), open(), u_short */
53 #endif
54 #if HAVE_SYS_POLL_H
55 #include <sys/poll.h> /* poll() */
56 #endif
57 #if HAVE_SYS_SOCKET_H
58 #include <sys/socket.h> /* struct sockaddr, struct linger, socket(), connect() */
59 #endif
60 #if HAVE_SYS_UIO_H
61 #include <sys/uio.h> /* struct iovec */
62 #endif
63 #if HAVE_SYS_STAT_H
64 #include <sys/stat.h> /* struct stat, stat(), open() */
65 #endif
66 #if HAVE_SYS_WAIT_H
67 #include <sys/wait.h> /* WNOHANG */
68 #endif
69 #if HAVE_FCNTL_H
70 #include <fcntl.h> /* open(), O_RDWR */
71 #endif
72 #if HAVE_NETDB_H && (_WITH_IP4 || _WITH_IP6)
73 #include <netdb.h> /* struct hostent, gethostbyname() */
74 #endif
75 #if HAVE_SYS_UN_H && WITH_UNIX
76 #include <sys/un.h> /* struct sockaddr_un, unix domain sockets */
77 #endif
78 #if HAVE_SYS_IOCTL_H
79 #include <sys/ioctl.h> /* ioctl() */
80 #endif
81 #if HAVE_SYS_SELECT_H
82 #include <sys/select.h> /* select(), fdset on AIX 4.1 */
83 #endif
84 #if HAVE_SYS_FILE_H
85 #include <sys/file.h> /* LOCK_EX, on AIX directly included */
86 #endif
87 #if _WITH_SOCKET
88 # if HAVE_NETINET_IN_H
89 #include <netinet/in.h> /* struct sockaddr_in, htonl() */
90 # endif
91 #endif /* _WITH_SOCKET */
92 #if _WITH_SOCKET && (_WITH_IP4 || _WITH_IP6)
93 # if HAVE_NETINET_IN_SYSTM_H
94 #include <netinet/in_systm.h> /* Solaris, FreeBSD: n_long */
95 # endif
96 # if HAVE_NETINET_IP_H
97 #include <netinet/ip.h> /* struct ip - past netinet/in.h on AIX! */
98 # endif
99 # if HAVE_NETINET_TCP_H
100 #include <netinet/tcp.h> /* TCP_RFC1323 */
101 # endif
102 # if HAVE_NETINET_IP6_H && _WITH_IP6
103 #include <netinet/ip6.h>
104 # endif
105 # if HAVE_NETINET6_IN6_H && _WITH_IP6
106 #include <netinet6/in6.h>
107 # endif
108 #include <arpa/inet.h> /* Linux: inet_aton() */
109 #if HAVE_ARPA_NAMESER_H
110 #include <arpa/nameser.h> /* req for resolv.h (esp. on MacOSX) */
111 #endif
112 #include <net/if.h>
113 #if HAVE_NET_IF_DL_H
114 #include <net/if_dl.h> /* FreeBSD: struct sockaddr_dl */
115 #endif
116 #if HAVE_RESOLV_H
117 #include <resolv.h> /* _res */
118 #endif
119 #endif /* _WITH_IP4 || _WITH_IP6 */
120 /*#include <linux/sockios.h>*/
121 #if HAVE_NET_IF_H
122 #include <net/if.h>
123 #endif /* HAVE_NET_IF_H */
124 #if HAVE_LINUX_TYPES_H
125 #include <linux/types.h> /* __u32 for linux/errqueue.h */
126 #endif
127 #if HAVE_LINUX_ERRQUEUE_H
128 #include <linux/errqueue.h> /* struct sock_extended_err */
129 #endif
130 #if HAVE_NETPACKET_PACKET_H
131 #include <netpacket/packet.h>
132 #endif
133 #if HAVE_NETINET_IF_ETHER_H
134 #include <netinet/if_ether.h>
135 #endif
136 #if HAVE_LINUX_IF_TUN_H
137 #include <linux/if_tun.h>
138 #endif
140 #if HAVE_TERMIOS_H && _WITH_TERMIOS
141 #include <termios.h>
142 #endif
143 #if HAVE_SYS_UTSNAME_H
144 #include <sys/utsname.h> /* uname(), struct utsname */
145 #endif
146 #if HAVE_UTIL_H
147 #include <util.h> /* NetBSD, OpenBSD openpty() */
148 #endif
149 #if HAVE_LIBUTIL_H
150 #include <libutil.h> /* FreeBSD openpty() */
151 #endif
152 #if HAVE_SYS_STROPTS_H
153 #include <sys/stropts.h> /* SunOS I_PUSH ... */
154 #endif
155 #if HAVE_REGEX_H
156 #include <regex.h>
157 #endif
158 #if HAVE_LINUX_FS_H
159 #include <linux/fs.h> /* somewhere required for ext2_fs.h */
160 #endif
161 #if HAVE_LINUX_EXT2_FS_H
162 #include <linux/ext2_fs.h> /* Linux ext2 filesystem definitions */
163 #endif
164 #if WITH_READLINE
165 # if HAVE_READLINE_READLINE_H
166 #include <readline/readline.h>
167 # endif
168 # if HAVE_READLINE_HISTORY_H
169 #include <readline/history.h>
170 # endif
171 #endif /* WITH_READLINE */
172 #if WITH_OPENSSL
173 #include <openssl/ssl.h>
174 #include <openssl/err.h>
175 #include <openssl/rand.h>
176 #endif
178 #endif /* !defined(__sysincludes_h_included) */