]> git.proxmox.com Git - mirror_qemu.git/blob - slirp/slirp_config.h
Merge remote-tracking branch 'remotes/mjt/tags/pull-trivial-patches-2016-06-07' into...
[mirror_qemu.git] / slirp / slirp_config.h
1 /*
2 * User definable configuration options
3 */
4
5 /* Define if you want the connection to be probed */
6 /* XXX Not working yet, so ignore this for now */
7 #undef PROBE_CONN
8
9 /* Define to 1 if you want KEEPALIVE timers */
10 #define DO_KEEPALIVE 0
11
12 /* Define this if you want slirp to write to the tty as fast as it can */
13 /* This should only be set if you are using load-balancing, slirp does a */
14 /* pretty good job on single modems already, and seting this will make */
15 /* interactive sessions less responsive */
16 /* XXXXX Talk about having fast modem as unit 0 */
17 #undef FULL_BOLT
18
19 /*********************************************************/
20 /*
21 * Autoconf defined configuration options
22 * You shouldn't need to touch any of these
23 */
24
25 /* Define if you have sys/ioctl.h */
26 #undef HAVE_SYS_IOCTL_H
27 #ifndef _WIN32
28 #define HAVE_SYS_IOCTL_H
29 #endif
30
31 /* Define if you have sys/filio.h */
32 #undef HAVE_SYS_FILIO_H
33 #ifdef __APPLE__
34 #define HAVE_SYS_FILIO_H
35 #endif
36
37 /* Define if you have sys/bitypes.h */
38 #undef HAVE_SYS_BITYPES_H
39
40 /* Define if the machine is big endian */
41 //#undef HOST_WORDS_BIGENDIAN
42
43 /* Define if you have readv */
44 #undef HAVE_READV
45
46 /* Define if iovec needs to be declared */
47 #undef DECLARE_IOVEC
48 #ifdef _WIN32
49 #define DECLARE_IOVEC
50 #endif
51
52 /* Define if you have a POSIX.1 sys/wait.h */
53 #undef HAVE_SYS_WAIT_H
54
55 /* Define if you have sys/select.h */
56 #undef HAVE_SYS_SELECT_H
57 #ifndef _WIN32
58 #define HAVE_SYS_SELECT_H
59 #endif
60
61 /* Define if you have arpa/inet.h */
62 #undef HAVE_ARPA_INET_H
63 #ifndef _WIN32
64 #define HAVE_ARPA_INET_H
65 #endif
66
67 /* Define if you have sys/signal.h */
68 #undef HAVE_SYS_SIGNAL_H
69
70 /* Define if you have sys/stropts.h */
71 #undef HAVE_SYS_STROPTS_H
72
73 /* Define to sizeof(char *) */
74 #define SIZEOF_CHAR_P (HOST_LONG_BITS / 8)
75
76 /* Define if you have inet_aton */
77 #undef HAVE_INET_ATON
78 #ifndef _WIN32
79 #define HAVE_INET_ATON
80 #endif
81
82 /* Define if you DON'T have unix-domain sockets */
83 #undef NO_UNIX_SOCKETS
84 #ifdef _WIN32
85 #define NO_UNIX_SOCKETS
86 #endif