slirp: Factor out internal state structure
[qemu.git] / slirp / misc.h
blobe43519dcba40f7b5b2493d616696dde9919a3bec
1 /*
2 * Copyright (c) 1995 Danny Gasparovski.
4 * Please read the file COPYRIGHT for the
5 * terms and conditions of the copyright.
6 */
8 #ifndef _MISC_H_
9 #define _MISC_H_
11 struct ex_list {
12 int ex_pty; /* Do we want a pty? */
13 struct in_addr ex_addr; /* Server address */
14 int ex_fport; /* Port to telnet to */
15 const char *ex_exec; /* Command line of what to exec */
16 struct ex_list *ex_next;
19 #ifndef HAVE_STRDUP
20 char *strdup _P((const char *));
21 #endif
23 void do_wait _P((int));
25 #define EMU_NONE 0x0
27 /* TCP emulations */
28 #define EMU_CTL 0x1
29 #define EMU_FTP 0x2
30 #define EMU_KSH 0x3
31 #define EMU_IRC 0x4
32 #define EMU_REALAUDIO 0x5
33 #define EMU_RLOGIN 0x6
34 #define EMU_IDENT 0x7
35 #define EMU_RSH 0x8
37 #define EMU_NOCONNECT 0x10 /* Don't connect */
39 /* UDP emulations */
40 #define EMU_TALK 0x1
41 #define EMU_NTALK 0x2
42 #define EMU_CUSEEME 0x3
44 struct tos_t {
45 u_int16_t lport;
46 u_int16_t fport;
47 u_int8_t tos;
48 u_int8_t emu;
51 struct emu_t {
52 u_int16_t lport;
53 u_int16_t fport;
54 u_int8_t tos;
55 u_int8_t emu;
56 struct emu_t *next;
59 extern int x_port, x_server, x_display;
61 int show_x _P((char *, struct socket *));
62 void redir_x _P((u_int32_t, int, int, int));
63 void slirp_insque _P((void *, void *));
64 void slirp_remque _P((void *));
65 int add_exec _P((struct ex_list **, int, char *, struct in_addr, int));
66 int slirp_openpty _P((int *, int *));
67 int fork_exec(struct socket *so, const char *ex, int do_pty);
68 void snooze_hup _P((int));
69 void snooze _P((void));
70 void relay _P((int));
71 void add_emu _P((char *));
72 void u_sleep _P((int));
73 void fd_nonblock _P((int));
74 void fd_block _P((int));
75 int rsh_exec _P((struct socket *, struct socket *, char *, char *, char *));
77 #endif