2004-04-22 02:10:48 +02:00
|
|
|
/*
|
|
|
|
* User definable configuration options
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Define if you want the connection to be probed */
|
|
|
|
/* XXX Not working yet, so ignore this for now */
|
|
|
|
#undef PROBE_CONN
|
|
|
|
|
|
|
|
/* Define to 1 if you want KEEPALIVE timers */
|
|
|
|
#define DO_KEEPALIVE 0
|
|
|
|
|
|
|
|
/* Define this if you want slirp to write to the tty as fast as it can */
|
|
|
|
/* This should only be set if you are using load-balancing, slirp does a */
|
|
|
|
/* pretty good job on single modems already, and seting this will make */
|
|
|
|
/* interactive sessions less responsive */
|
|
|
|
/* XXXXX Talk about having fast modem as unit 0 */
|
|
|
|
#undef FULL_BOLT
|
|
|
|
|
|
|
|
/*********************************************************/
|
|
|
|
/*
|
|
|
|
* Autoconf defined configuration options
|
|
|
|
* You shouldn't need to touch any of these
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Define if you have sys/ioctl.h */
|
2004-07-13 00:33:07 +02:00
|
|
|
#undef HAVE_SYS_IOCTL_H
|
|
|
|
#ifndef _WIN32
|
2004-07-12 23:11:45 +02:00
|
|
|
#define HAVE_SYS_IOCTL_H
|
2004-07-13 00:33:07 +02:00
|
|
|
#endif
|
2004-04-22 02:10:48 +02:00
|
|
|
|
|
|
|
/* Define if you have sys/filio.h */
|
|
|
|
#undef HAVE_SYS_FILIO_H
|
2004-07-12 23:11:45 +02:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#define HAVE_SYS_FILIO_H
|
|
|
|
#endif
|
2004-04-22 02:10:48 +02:00
|
|
|
|
|
|
|
/* Define if you have sys/bitypes.h */
|
|
|
|
#undef HAVE_SYS_BITYPES_H
|
|
|
|
|
|
|
|
/* Define if the machine is big endian */
|
2009-07-27 16:13:06 +02:00
|
|
|
//#undef HOST_WORDS_BIGENDIAN
|
2004-04-22 02:10:48 +02:00
|
|
|
|
|
|
|
/* Define if you have readv */
|
|
|
|
#undef HAVE_READV
|
|
|
|
|
|
|
|
/* Define if iovec needs to be declared */
|
|
|
|
#undef DECLARE_IOVEC
|
2004-07-13 00:33:07 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define DECLARE_IOVEC
|
|
|
|
#endif
|
2004-04-22 02:10:48 +02:00
|
|
|
|
|
|
|
/* Define if you have a POSIX.1 sys/wait.h */
|
|
|
|
#undef HAVE_SYS_WAIT_H
|
|
|
|
|
|
|
|
/* Define if you have sys/select.h */
|
2004-07-13 00:33:07 +02:00
|
|
|
#undef HAVE_SYS_SELECT_H
|
|
|
|
#ifndef _WIN32
|
2004-04-22 02:10:48 +02:00
|
|
|
#define HAVE_SYS_SELECT_H
|
2004-07-13 00:33:07 +02:00
|
|
|
#endif
|
2004-04-22 02:10:48 +02:00
|
|
|
|
|
|
|
/* Define if you have arpa/inet.h */
|
2004-07-13 00:33:07 +02:00
|
|
|
#undef HAVE_ARPA_INET_H
|
|
|
|
#ifndef _WIN32
|
2004-04-22 02:10:48 +02:00
|
|
|
#define HAVE_ARPA_INET_H
|
2004-07-13 00:33:07 +02:00
|
|
|
#endif
|
2004-04-22 02:10:48 +02:00
|
|
|
|
|
|
|
/* Define if you have sys/signal.h */
|
|
|
|
#undef HAVE_SYS_SIGNAL_H
|
|
|
|
|
|
|
|
/* Define if you have sys/stropts.h */
|
|
|
|
#undef HAVE_SYS_STROPTS_H
|
|
|
|
|
|
|
|
/* Define to sizeof(char *) */
|
2005-06-05 19:11:42 +02:00
|
|
|
#define SIZEOF_CHAR_P (HOST_LONG_BITS / 8)
|
2004-04-22 02:10:48 +02:00
|
|
|
|
|
|
|
/* Define if you have inet_aton */
|
2004-07-13 00:33:07 +02:00
|
|
|
#undef HAVE_INET_ATON
|
|
|
|
#ifndef _WIN32
|
2004-04-22 02:10:48 +02:00
|
|
|
#define HAVE_INET_ATON
|
2004-07-13 00:33:07 +02:00
|
|
|
#endif
|
2004-04-22 02:10:48 +02:00
|
|
|
|
|
|
|
/* Define if you DON'T have unix-domain sockets */
|
|
|
|
#undef NO_UNIX_SOCKETS
|
2004-07-13 00:33:07 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define NO_UNIX_SOCKETS
|
|
|
|
#endif
|