slirp.h revision 74853b3588bff974298f37b7cb5a1811e8ff9ac1
#ifndef __COMMON_H__
#define __COMMON_H__
#ifdef __WIN__
# include <winsock2.h>
typedef int socklen_t;
#endif
#ifdef __OS2__ /* temporary workaround, see ticket #127 */
# define mbstat mbstat_os2
typedef int socklen_t;
#endif
#define CONFIG_QEMU
#ifdef DEBUG
# define DEBUG 1
#endif
#ifndef CONFIG_QEMU
#include "version.h"
#endif
#define LOG_GROUP LOG_GROUP_DRV_NAT
#ifdef __WIN__
# include <windows.h>
# include <io.h>
#endif
# define malloc(a) RTMemAllocZ(a)
# define realloc(a,b) RTMemRealloc(a, b)
#include "slirp_config.h"
#ifdef _WIN32
#ifndef _MSC_VER
# include <inttypes.h>
#endif
typedef char *caddr_t;
# include <iphlpapi.h>
# define EWOULDBLOCK WSAEWOULDBLOCK
# define EINPROGRESS WSAEINPROGRESS
# define ENOTCONN WSAENOTCONN
# define EHOSTUNREACH WSAEHOSTUNREACH
# define ENETUNREACH WSAENETUNREACH
# define ECONNREFUSED WSAECONNREFUSED
#else
# define ioctlsocket ioctl
# define closesocket(s) close(s)
# define O_BINARY 0
#endif
#ifdef HAVE_SYS_BITYPES_H
#endif
#ifdef _MSC_VER
#include <time.h>
#else /* !_MSC_VER */
#endif /* !_MSC_VER */
#ifdef NEED_TYPEDEFS
typedef char int8_t;
typedef unsigned char u_int8_t;
# if SIZEOF_SHORT == 2
typedef short int16_t;
typedef unsigned short u_int16_t;
# else
# if SIZEOF_INT == 2
typedef int int16_t;
typedef unsigned int u_int16_t;
# else
# endif
# endif
# if SIZEOF_SHORT == 4
typedef short int32_t;
typedef unsigned short u_int32_t;
# else
# if SIZEOF_INT == 4
typedef int int32_t;
typedef unsigned int u_int32_t;
# else
# endif
# endif
#endif /* NEED_TYPEDEFS */
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#include <stdio.h>
#include <errno.h>
#ifndef HAVE_MEMMOVE
#endif
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# else
# include <time.h>
# endif
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#else
# include <strings.h>
#endif
#ifndef _WIN32
#endif
#ifndef _P
#ifndef NO_PROTOTYPES
# define _P(x) x
#else
# define _P(x) ()
#endif
#endif
#ifndef _WIN32
#endif
#ifdef GETTIMEOFDAY_ONE_ARG
#define gettimeofday(x, y) gettimeofday(x)
#endif
/* Systems lacking strdup() definition in <string.h>. */
#if defined(ultrix)
#endif
/* Systems lacking malloc() definition in <stdlib.h>. */
#endif
#ifndef HAVE_INET_ATON
#endif
#include <fcntl.h>
#ifndef NO_UNIX_SOCKETS
#endif
#include <signal.h>
#ifdef HAVE_SYS_SIGNAL_H
#endif
#ifndef _WIN32
#endif
#if defined(HAVE_SYS_IOCTL_H)
#endif
#ifdef HAVE_SYS_SELECT_H
#endif
#ifdef HAVE_SYS_WAIT_H
#endif
#ifdef HAVE_SYS_FILIO_H
#endif
#ifdef USE_PPP
#endif
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#if 1 /* ndef _MSC_VER */
/* Avoid conflicting with the libc insque() and remque(), which
have different prototypes. */
#define insque slirp_insque
#define remque slirp_remque
#endif /* !_MSC_VER */
#ifdef HAVE_SYS_STROPTS_H
#endif
#include "libslirp.h"
#include "debug.h"
#include "ip.h"
#include "tcp.h"
#include "tcp_timer.h"
#include "tcp_var.h"
#include "tcpip.h"
#include "udp.h"
#include "icmp_var.h"
#include "mbuf.h"
#include "sbuf.h"
#include "socket.h"
#include "if.h"
#include "main.h"
#include "misc.h"
#include "ctl.h"
#ifdef USE_PPP
#endif
#include "bootp.h"
#include "tftp.h"
#include "slirp_state.h"
#ifndef NULL
#define NULL (void *)0
#endif
#ifdef BAD_SPRINTF
# define vsprintf vsprintf_len
# define sprintf sprintf_len
extern int sprintf_len _P((char *, const char *, ...));
#endif
#ifdef DECLARE_SPRINTF
# ifndef BAD_SPRINTF
# endif
#endif
#ifndef HAVE_STRERROR
#endif
#ifndef HAVE_INDEX
#endif
#ifndef HAVE_GETHOSTID
#endif
{
#ifdef LOG_ENABLED
#if 1 /* nearly only for stats which we always want. */
#else
#endif
#endif
}
extern int do_echo;
#if SIZEOF_CHAR_P == 4
#else
#endif
#ifndef _WIN32
#include <netdb.h>
#endif
#define DEFAULT_BAUD 115200
/* cksum.c */
/* if.c */
/* ip_input.c */
/* ip_output.c */
/* tcp_input.c */
/* tcp_output.c */
/* tcp_subr.c */
void tcp_respond _P((PNATState, struct tcpcb *, register struct tcpiphdr *, register struct mbuf *, tcp_seq, tcp_seq, int));
#ifdef USE_PPP
#else
#define MIN_MRU 128
#define MAX_MRU 16384
#endif
#ifndef _WIN32
#define min(x,y) ((x) < (y) ? (x) : (y))
#define max(x,y) ((x) > (y) ? (x) : (y))
#endif
#ifdef _WIN32
#define errno (WSAGetLastError())
#endif
#endif