1d1bedfcccad6796916d98141c765ffdf6301634
[tinc] / src / have.h
1 #ifndef TINC_HAVE_H
2 #define TINC_HAVE_H
3
4 /*
5     have.h -- include headers which are known to exist
6     Copyright (C) 1998-2005 Ivo Timmermans
7                   2003-2021 Guus Sliepen <guus@tinc-vpn.org>
8
9     This program is free software; you can redistribute it and/or modify
10     it under the terms of the GNU General Public License as published by
11     the Free Software Foundation; either version 2 of the License, or
12     (at your option) any later version.
13
14     This program is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18
19     You should have received a copy of the GNU General Public License along
20     with this program; if not, write to the Free Software Foundation, Inc.,
21     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 */
23
24 #ifdef HAVE_WINDOWS
25 #define WINVER 0x0600
26 #define _WIN32_WINNT 0x0600
27 #define WIN32_LEAN_AND_MEAN
28 #define _CRT_SECURE_NO_WARNINGS
29 #define _CRT_NONSTDC_NO_WARNINGS
30 #endif
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <stdarg.h>
35 #include <stdbool.h>
36 #include <string.h>
37 #include <ctype.h>
38 #include <signal.h>
39 #include <errno.h>
40 #include <fcntl.h>
41 #ifdef HAVE_UNISTD_H
42 #include <unistd.h>
43 #endif
44 #include <limits.h>
45 #include <math.h>
46 #include <time.h>
47
48 #ifdef HAVE_STATIC_ASSERT
49 #define STATIC_ASSERT(expr, msg) _Static_assert((expr), msg)
50 #else
51 #define STATIC_ASSERT(check, msg)
52 #endif
53
54 #ifdef HAVE_ATTR_PACKED
55 #define PACKED(...) __VA_ARGS__ __attribute__((__packed__))
56 #else
57 #ifdef _MSC_VER
58 #define PACKED(...) __pragma(pack(push, 1)) __VA_ARGS__ __pragma(pack(pop))
59 #else
60 #warning Your compiler does not support __packed__. Use at your own risk.
61 #endif
62 #endif
63
64 #ifdef HAVE_ALLOCA_H
65 #include <alloca.h>
66 #elif defined(HAVE_NETBSD)
67 #define alloca(size) __builtin_alloca(size)
68 #endif
69
70 #ifdef HAVE_WINDOWS
71 #ifdef HAVE_W32API_H
72 #include <w32api.h>
73 #endif
74
75 #include <winsock2.h>
76 #include <windows.h>
77 #include <ws2tcpip.h>
78
79 #ifdef _MSC_VER
80 #include <io.h>
81 #include <process.h>
82 #include <direct.h>
83 #endif
84 #endif // HAVE_WINDOWS
85
86 #ifdef HAVE_TERMIOS_H
87 #include <termios.h>
88 #endif
89
90 #ifdef HAVE_INTTYPES_H
91 #include <inttypes.h>
92 #endif
93
94 /* Include system specific headers */
95
96 #ifdef HAVE_STDDEF_H
97 #include <stddef.h>
98 #endif
99
100 #ifdef HAVE_SYSLOG_H
101 #include <syslog.h>
102 #endif
103
104 #ifdef HAVE_SYS_TIME_H
105 #include <sys/time.h>
106 #endif
107
108
109 #ifdef HAVE_SYS_TYPES_H
110 #include <sys/types.h>
111 #endif
112
113 #ifdef HAVE_SYS_STAT_H
114 #include <sys/stat.h>
115 #endif
116
117 #ifdef HAVE_SYS_FILE_H
118 #include <sys/file.h>
119 #endif
120
121 #ifdef HAVE_SYS_MMAN_H
122 #include <sys/mman.h>
123 #endif
124
125 #ifdef HAVE_SYS_WAIT_H
126 #include <sys/wait.h>
127 #endif
128
129 #ifdef HAVE_SYS_IOCTL_H
130 #include <sys/ioctl.h>
131 #endif
132
133 #ifdef HAVE_SYS_PARAM_H
134 #include <sys/param.h>
135 #endif
136
137 #ifdef HAVE_SYS_RESOURCE_H
138 #include <sys/resource.h>
139 #endif
140
141 #ifdef HAVE_SYS_UN_H
142 #include <sys/un.h>
143 #endif
144
145 #ifdef HAVE_DIRENT_H
146 #include <dirent.h>
147 #elif defined(_MSC_VER)
148 #include "dirent.h"
149 #endif
150
151 /* SunOS really wants sys/socket.h BEFORE net/if.h,
152    and FreeBSD wants these lines below the rest. */
153
154 #ifdef HAVE_NETDB_H
155 #include <netdb.h>
156 #endif
157
158 #ifdef HAVE_SYS_SOCKET_H
159 #include <sys/socket.h>
160 #endif
161
162 #ifdef HAVE_NET_IF_H
163 #include <net/if.h>
164 #endif
165
166 #ifdef HAVE_NET_IF_TYPES_H
167 #include <net/if_types.h>
168 #endif
169
170 #ifdef HAVE_NET_IF_TUN_H
171 #include <net/if_tun.h>
172 #endif
173
174 #ifdef HAVE_NET_TUN_IF_TUN_H
175 #include <net/tun/if_tun.h>
176 #endif
177
178 #ifdef HAVE_NET_IF_TAP_H
179 #include <net/if_tap.h>
180 #endif
181
182 #ifdef HAVE_NET_TAP_IF_TAP_H
183 #include <net/tap/if_tap.h>
184 #endif
185
186 #ifdef HAVE_NETINET_IN_SYSTM_H
187 #include <netinet/in_systm.h>
188 #endif
189
190 #ifdef HAVE_NETINET_IN_H
191 #include <netinet/in.h>
192 #endif
193
194 #ifdef HAVE_ARPA_INET_H
195 #include <arpa/inet.h>
196 #endif
197
198 #ifdef HAVE_NETINET_IP_H
199 #include <netinet/ip.h>
200 #endif
201
202 #ifdef HAVE_NETINET_TCP_H
203 #include <netinet/tcp.h>
204 #endif
205
206 #ifdef HAVE_NETINET_IN6_H
207 #include <netinet/in6.h>
208 #endif
209
210 #ifdef HAVE_NETINET_IP6_H
211 #include <netinet/ip6.h>
212 #endif
213
214 #ifdef HAVE_NET_ETHERNET_H
215 #include <net/ethernet.h>
216 #endif
217
218 #ifdef HAVE_NET_IF_ARP_H
219 #include <net/if_arp.h>
220 #endif
221
222 #ifdef HAVE_NETINET_IP_ICMP_H
223 #include <netinet/ip_icmp.h>
224 #endif
225
226 #ifdef HAVE_NETINET_ICMP6_H
227 #include <netinet/icmp6.h>
228 #endif
229
230 #ifdef HAVE_NETINET_IF_ETHER_H
231 #include <netinet/if_ether.h>
232 #endif
233
234 #ifdef HAVE_ARPA_NAMESER_H
235 #include <arpa/nameser.h>
236 #endif
237
238 #ifdef HAVE_RESOLV_H
239 #include <resolv.h>
240 #endif
241
242 #ifdef HAVE_LINUX_IF_TUN_H
243 #include <linux/if_tun.h>
244 #endif
245
246 #ifdef HAVE_GETOPT_H
247 #include <getopt.h>
248 #else
249 #include "getopt.h"
250 #endif
251
252 #ifdef STATUS
253 #undef STATUS
254 #endif
255
256 #ifdef HAVE_WINDOWS
257 #define SLASH "\\"
258 #else
259 #define SLASH "/"
260 #endif
261
262 #endif