a684734975
- Started implementing guest forwarding feature. - Updated most of socket.h. - Added if_mtu / if_mru handling. - Cleaned up MIN / MAX defines.
43 lines
921 B
C
43 lines
921 B
C
/////////////////////////////////////////////////////////////////////////
|
|
// $Id$
|
|
/////////////////////////////////////////////////////////////////////////
|
|
/*
|
|
* User definable configuration options
|
|
*/
|
|
|
|
/* Define to 1 if you want KEEPALIVE timers */
|
|
#define DO_KEEPALIVE 0
|
|
|
|
/*********************************************************/
|
|
/*
|
|
* Autoconf defined configuration options
|
|
* You shouldn't need to touch any of these
|
|
*/
|
|
|
|
/* Define if you have readv */
|
|
#undef HAVE_READV
|
|
|
|
/* Define if iovec needs to be declared */
|
|
#undef DECLARE_IOVEC
|
|
#ifdef _WIN32
|
|
#define DECLARE_IOVEC
|
|
#endif
|
|
|
|
/* Define if you have sys/select.h */
|
|
#undef HAVE_SYS_SELECT_H
|
|
#ifndef _WIN32
|
|
#define HAVE_SYS_SELECT_H
|
|
#endif
|
|
|
|
/* Define to sizeof(char) */
|
|
#define SIZEOF_CHAR 1
|
|
|
|
/* Define to sizeof(short) */
|
|
#define SIZEOF_SHORT 2
|
|
|
|
/* Define to sizeof(int) */
|
|
#define SIZEOF_INT 4
|
|
|
|
/* Define to sizeof(char *) */
|
|
#define SIZEOF_CHAR_P SIZEOF_INT_P
|