8 // Uncomment the following line to enable SLIRP statistics printing in Qemu
12 #define STAT(expr) expr
14 #define STAT(expr) do { } while(0)
20 #include "config-host.h"
21 #include "slirp_config.h"
24 # include <inttypes.h>
26 typedef uint8_t u_int8_t
;
27 typedef uint16_t u_int16_t
;
28 typedef uint32_t u_int32_t
;
29 typedef uint64_t u_int64_t
;
30 typedef char *caddr_t
;
32 #define WIN32_LEAN_AND_MEAN
34 # include <winsock2.h>
35 # include <ws2tcpip.h>
36 # include <sys/timeb.h>
37 # include <iphlpapi.h>
39 # define EWOULDBLOCK WSAEWOULDBLOCK
40 # define EINPROGRESS WSAEINPROGRESS
41 # define ENOTCONN WSAENOTCONN
42 # define EHOSTUNREACH WSAEHOSTUNREACH
43 # define ENETUNREACH WSAENETUNREACH
44 # define ECONNREFUSED WSAECONNREFUSED
46 # define ioctlsocket ioctl
47 # define closesocket(s) close(s)
51 #include <sys/types.h>
52 #ifdef HAVE_SYS_BITYPES_H
53 # include <sys/bitypes.h>
60 typedef unsigned char u_int8_t
;
62 # if SIZEOF_SHORT == 2
63 typedef short int16_t;
64 typedef unsigned short u_int16_t
;
68 typedef unsigned int u_int16_t
;
70 #error Cannot find a type with sizeof() == 2
74 # if SIZEOF_SHORT == 4
75 typedef short int32_t;
76 typedef unsigned short u_int32_t
;
80 typedef unsigned int u_int32_t
;
82 #error Cannot find a type with sizeof() == 4
85 #endif /* NEED_TYPEDEFS */
99 #define memmove(x, y, z) bcopy(y, x, z)
102 #if TIME_WITH_SYS_TIME
103 # include <sys/time.h>
106 # ifdef HAVE_SYS_TIME_H
107 # include <sys/time.h>
116 # include <strings.h>
124 #ifndef NO_PROTOTYPES
131 #include <netinet/in.h>
132 #include <arpa/inet.h>
135 #ifdef GETTIMEOFDAY_ONE_ARG
136 #define gettimeofday(x, y) gettimeofday(x)
139 /* Systems lacking strdup() definition in <string.h>. */
141 char *strdup
_P((const char *));
144 /* Systems lacking malloc() definition in <stdlib.h>. */
145 #if defined(ultrix) || defined(hcx)
146 void *malloc
_P((size_t arg
));
147 void free
_P((void *ptr
));
150 #ifndef HAVE_INET_ATON
151 int inet_aton
_P((const char *cp
, struct in_addr
*ia
));
155 #ifndef NO_UNIX_SOCKETS
159 #ifdef HAVE_SYS_SIGNAL_H
160 # include <sys/signal.h>
163 #include <sys/socket.h>
166 #if defined(HAVE_SYS_IOCTL_H)
167 # include <sys/ioctl.h>
170 #ifdef HAVE_SYS_SELECT_H
171 # include <sys/select.h>
174 #ifdef HAVE_SYS_WAIT_H
175 # include <sys/wait.h>
178 #ifdef HAVE_SYS_FILIO_H
179 # include <sys/filio.h>
183 #include <ppp/slirppp.h>
192 #include <sys/stat.h>
194 /* Avoid conflicting with the libc insque() and remque(), which
195 have different prototypes. */
196 #define insque slirp_insque
197 #define remque slirp_remque
199 #ifdef HAVE_SYS_STROPTS_H
200 #include <sys/stropts.h>
207 #include "tcp_timer.h"
211 #include "icmp_var.h"
220 #include "ppp/pppd.h"
226 #include "libslirp.h"
228 extern struct ttys
*ttys_unit
[MAX_INTERFACES
];
231 #define NULL (void *)0
235 void if_start
_P((void));
237 void if_start
_P((struct ttys
*));
241 # define vsprintf vsprintf_len
242 # define sprintf sprintf_len
243 extern int vsprintf_len
_P((char *, const char *, va_list));
244 extern int sprintf_len
_P((char *, const char *, ...));
247 #ifdef DECLARE_SPRINTF
249 extern int vsprintf
_P((char *, const char *, va_list));
251 extern int vfprintf
_P((FILE *, const char *, va_list));
254 #ifndef HAVE_STRERROR
255 extern char *strerror
_P((int error
));
259 char *index
_P((const char *, int));
262 #ifndef HAVE_GETHOSTID
263 long gethostid
_P((void));
266 void lprint
_P((const char *, ...));
272 #define DEFAULT_BAUD 115200
274 #define SO_OPTIONS DO_KEEPALIVE
275 #define TCP_MAXIDLE (TCPTV_KEEPCNT * TCPTV_KEEPINTVL)
278 int cksum(struct mbuf
*m
, int len
);
281 void if_init
_P((void));
282 void if_output
_P((struct socket
*, struct mbuf
*));
285 void ip_init
_P((void));
286 void ip_input
_P((struct mbuf
*));
287 void ip_slowtimo
_P((void));
288 void ip_stripoptions
_P((register struct mbuf
*, struct mbuf
*));
291 int ip_output
_P((struct socket
*, struct mbuf
*));
294 void tcp_input
_P((register struct mbuf
*, int, struct socket
*));
295 int tcp_mss
_P((register struct tcpcb
*, u_int
));
298 int tcp_output
_P((register struct tcpcb
*));
299 void tcp_setpersist
_P((register struct tcpcb
*));
302 void tcp_init
_P((void));
303 void tcp_template
_P((struct tcpcb
*));
304 void tcp_respond
_P((struct tcpcb
*, register struct tcpiphdr
*, register struct mbuf
*, tcp_seq
, tcp_seq
, int));
305 struct tcpcb
* tcp_newtcpcb
_P((struct socket
*));
306 struct tcpcb
* tcp_close
_P((register struct tcpcb
*));
307 void tcp_sockclosed
_P((struct tcpcb
*));
308 int tcp_fconnect
_P((struct socket
*));
309 void tcp_connect
_P((struct socket
*));
310 int tcp_attach
_P((struct socket
*));
311 u_int8_t tcp_tos
_P((struct socket
*));
312 int tcp_emu
_P((struct socket
*, struct mbuf
*));
313 int tcp_ctl
_P((struct socket
*));
314 struct tcpcb
*tcp_drop(struct tcpcb
*tp
, int err
);
317 #define MIN_MRU MINMRU
318 #define MAX_MRU MAXMRU
321 #define MAX_MRU 16384
325 #define min(x,y) ((x) < (y) ? (x) : (y))
326 #define max(x,y) ((x) > (y) ? (x) : (y))
331 #define errno (WSAGetLastError())