aboutsummaryrefslogtreecommitdiff
path: root/externals/libressl/include/compat/arpa/nameser.h
blob: eff3b0d90b9a8e80863702cc88b71b5d38d426dc (plain) (blame)
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