]> git.proxmox.com Git - mirror_qemu.git/blame - slirp/slirp.h
typo
[mirror_qemu.git] / slirp / slirp.h
CommitLineData
f0cbd3ec
FB
1#ifndef __COMMON_H__
2#define __COMMON_H__
3
4#define CONFIG_QEMU
5
6#define DEBUG 1
7
8#ifndef CONFIG_QEMU
9#include "version.h"
10#endif
11#include "config.h"
12#include "slirp_config.h"
13
379ff53d
FB
14#ifdef _WIN32
15# include <inttypes.h>
16
17typedef uint8_t u_int8_t;
18typedef uint16_t u_int16_t;
19typedef uint32_t u_int32_t;
20typedef uint64_t u_int64_t;
21typedef char *caddr_t;
22
23# include <winsock2.h>
24# include <sys/timeb.h>
25# include <iphlpapi.h>
26
27# define EWOULDBLOCK WSAEWOULDBLOCK
28# define EINPROGRESS WSAEINPROGRESS
29# define ENOTCONN WSAENOTCONN
30# define EHOSTUNREACH WSAEHOSTUNREACH
31# define ENETUNREACH WSAENETUNREACH
32# define ECONNREFUSED WSAECONNREFUSED
33#else
34# define ioctlsocket ioctl
35# define closesocket(s) close(s)
6d46bf8a 36# define O_BINARY 0
379ff53d
FB
37#endif
38
f0cbd3ec
FB
39#include <sys/types.h>
40#ifdef HAVE_SYS_BITYPES_H
41# include <sys/bitypes.h>
42#endif
43
170c6f87
FB
44#include <sys/time.h>
45
f0cbd3ec
FB
46#ifdef NEED_TYPEDEFS
47typedef char int8_t;
48typedef unsigned char u_int8_t;
49
50# if SIZEOF_SHORT == 2
51 typedef short int16_t;
52 typedef unsigned short u_int16_t;
53# else
54# if SIZEOF_INT == 2
55 typedef int int16_t;
56 typedef unsigned int u_int16_t;
57# else
58 #error Cannot find a type with sizeof() == 2
59# endif
60# endif
61
62# if SIZEOF_SHORT == 4
63 typedef short int32_t;
64 typedef unsigned short u_int32_t;
65# else
66# if SIZEOF_INT == 4
67 typedef int int32_t;
68 typedef unsigned int u_int32_t;
69# else
70 #error Cannot find a type with sizeof() == 4
71# endif
72# endif
73#endif /* NEED_TYPEDEFS */
74
75#ifdef HAVE_UNISTD_H
76# include <unistd.h>
77#endif
78
79#ifdef HAVE_STDLIB_H
80# include <stdlib.h>
81#endif
82
83#include <stdio.h>
84#include <errno.h>
85
86#ifndef HAVE_MEMMOVE
87#define memmove(x, y, z) bcopy(y, x, z)
88#endif
89
90#if TIME_WITH_SYS_TIME
91# include <sys/time.h>
92# include <time.h>
93#else
94# if HAVE_SYS_TIME_H
95# include <sys/time.h>
96# else
97# include <time.h>
98# endif
99#endif
100
101#ifdef HAVE_STRING_H
102# include <string.h>
103#else
104# include <strings.h>
105#endif
106
379ff53d 107#ifndef _WIN32
f0cbd3ec 108#include <sys/uio.h>
379ff53d 109#endif
f0cbd3ec
FB
110
111#ifndef _P
112#ifndef NO_PROTOTYPES
113# define _P(x) x
114#else
115# define _P(x) ()
116#endif
117#endif
118
379ff53d 119#ifndef _WIN32
f0cbd3ec
FB
120#include <netinet/in.h>
121#include <arpa/inet.h>
379ff53d 122#endif
f0cbd3ec
FB
123
124#ifdef GETTIMEOFDAY_ONE_ARG
125#define gettimeofday(x, y) gettimeofday(x)
126#endif
127
128/* Systems lacking strdup() definition in <string.h>. */
129#if defined(ultrix)
130char *strdup _P((const char *));
131#endif
132
133/* Systems lacking malloc() definition in <stdlib.h>. */
134#if defined(ultrix) || defined(hcx)
135void *malloc _P((size_t arg));
136void free _P((void *ptr));
137#endif
138
139#ifndef HAVE_INET_ATON
140int inet_aton _P((const char *cp, struct in_addr *ia));
141#endif
142
143#include <fcntl.h>
144#ifndef NO_UNIX_SOCKETS
145#include <sys/un.h>
146#endif
147#include <signal.h>
148#ifdef HAVE_SYS_SIGNAL_H
149# include <sys/signal.h>
150#endif
379ff53d 151#ifndef _WIN32
f0cbd3ec 152#include <sys/socket.h>
379ff53d 153#endif
f0cbd3ec 154
ee2654ac 155#if defined(HAVE_SYS_IOCTL_H)
f0cbd3ec 156# include <sys/ioctl.h>
f0cbd3ec
FB
157#endif
158
f0cbd3ec
FB
159#ifdef HAVE_SYS_SELECT_H
160# include <sys/select.h>
161#endif
162
163#ifdef HAVE_SYS_WAIT_H
164# include <sys/wait.h>
165#endif
166
167#ifdef HAVE_SYS_FILIO_H
168# include <sys/filio.h>
169#endif
170
171#ifdef USE_PPP
172#include <ppp/slirppp.h>
173#endif
174
175#ifdef __STDC__
176#include <stdarg.h>
177#else
178#include <varargs.h>
179#endif
180
181#include <sys/stat.h>
182
183/* Avoid conflicting with the libc insque() and remque(), which
184 have different prototypes. */
185#define insque slirp_insque
186#define remque slirp_remque
187
188#ifdef HAVE_SYS_STROPTS_H
189#include <sys/stropts.h>
190#endif
191
192#include "debug.h"
193
194#include "ip.h"
195#include "tcp.h"
196#include "tcp_timer.h"
197#include "tcp_var.h"
198#include "tcpip.h"
199#include "udp.h"
200#include "icmp_var.h"
201#include "mbuf.h"
202#include "sbuf.h"
203#include "socket.h"
204#include "if.h"
205#include "main.h"
206#include "misc.h"
207#include "ctl.h"
208#ifdef USE_PPP
209#include "ppp/pppd.h"
210#include "ppp/ppp.h"
211#endif
212
213#include "bootp.h"
c7f74643 214#include "tftp.h"
f0cbd3ec
FB
215#include "libslirp.h"
216
217extern struct ttys *ttys_unit[MAX_INTERFACES];
218
219#ifndef NULL
220#define NULL (void *)0
221#endif
222
223#ifndef FULL_BOLT
224void if_start _P((void));
225#else
226void if_start _P((struct ttys *));
227#endif
228
229#ifdef BAD_SPRINTF
230# define vsprintf vsprintf_len
231# define sprintf sprintf_len
232 extern int vsprintf_len _P((char *, const char *, va_list));
233 extern int sprintf_len _P((char *, const char *, ...));
234#endif
235
236#ifdef DECLARE_SPRINTF
237# ifndef BAD_SPRINTF
238 extern int vsprintf _P((char *, const char *, va_list));
239# endif
240 extern int vfprintf _P((FILE *, const char *, va_list));
241#endif
242
243#ifndef HAVE_STRERROR
244 extern char *strerror _P((int error));
245#endif
246
247#ifndef HAVE_INDEX
248 char *index _P((const char *, int));
249#endif
250
251#ifndef HAVE_GETHOSTID
252 long gethostid _P((void));
253#endif
254
255void lprint _P((const char *, ...));
256
257extern int do_echo;
258
259#if SIZEOF_CHAR_P == 4
260# define insque_32 insque
261# define remque_32 remque
262#else
263 inline void insque_32 _P((void *, void *));
264 inline void remque_32 _P((void *));
265#endif
266
379ff53d 267#ifndef _WIN32
f0cbd3ec 268#include <netdb.h>
379ff53d 269#endif
f0cbd3ec
FB
270
271#define DEFAULT_BAUD 115200
272
273/* cksum.c */
274int cksum(struct mbuf *m, int len);
275
276/* if.c */
277void if_init _P((void));
278void if_output _P((struct socket *, struct mbuf *));
279
280/* ip_input.c */
281void ip_init _P((void));
282void ip_input _P((struct mbuf *));
283struct ip * ip_reass _P((register struct ipasfrag *, register struct ipq *));
284void ip_freef _P((struct ipq *));
285void ip_enq _P((register struct ipasfrag *, register struct ipasfrag *));
286void ip_deq _P((register struct ipasfrag *));
287void ip_slowtimo _P((void));
288void ip_stripoptions _P((register struct mbuf *, struct mbuf *));
289
290/* ip_output.c */
291int ip_output _P((struct socket *, struct mbuf *));
292
293/* tcp_input.c */
294int tcp_reass _P((register struct tcpcb *, register struct tcpiphdr *, struct mbuf *));
295void tcp_input _P((register struct mbuf *, int, struct socket *));
296void tcp_dooptions _P((struct tcpcb *, u_char *, int, struct tcpiphdr *));
297void tcp_xmit_timer _P((register struct tcpcb *, int));
298int tcp_mss _P((register struct tcpcb *, u_int));
299
300/* tcp_output.c */
301int tcp_output _P((register struct tcpcb *));
302void tcp_setpersist _P((register struct tcpcb *));
303
304/* tcp_subr.c */
305void tcp_init _P((void));
306void tcp_template _P((struct tcpcb *));
307void tcp_respond _P((struct tcpcb *, register struct tcpiphdr *, register struct mbuf *, tcp_seq, tcp_seq, int));
308struct tcpcb * tcp_newtcpcb _P((struct socket *));
309struct tcpcb * tcp_close _P((register struct tcpcb *));
310void tcp_drain _P((void));
311void tcp_sockclosed _P((struct tcpcb *));
312int tcp_fconnect _P((struct socket *));
313void tcp_connect _P((struct socket *));
314int tcp_attach _P((struct socket *));
315u_int8_t tcp_tos _P((struct socket *));
316int tcp_emu _P((struct socket *, struct mbuf *));
317int tcp_ctl _P((struct socket *));
9fafc9ea 318struct tcpcb *tcp_drop(struct tcpcb *tp, int err);
f0cbd3ec
FB
319
320#ifdef USE_PPP
321#define MIN_MRU MINMRU
322#define MAX_MRU MAXMRU
323#else
324#define MIN_MRU 128
325#define MAX_MRU 16384
326#endif
327
379ff53d
FB
328#ifndef _WIN32
329#define min(x,y) ((x) < (y) ? (x) : (y))
330#define max(x,y) ((x) > (y) ? (x) : (y))
331#endif
332
02d2c54c 333#ifdef _WIN32
ef6ff6b7 334#undef errno
02d2c54c
FB
335#define errno (WSAGetLastError())
336#endif
337
f0cbd3ec 338#endif