1 | /*
|
---|
2 | * Copyright (c) 1995 Danny Gasparovski.
|
---|
3 | *
|
---|
4 | * Please read the file COPYRIGHT for the
|
---|
5 | * terms and conditions of the copyright.
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef _MISC_H_
|
---|
9 | #define _MISC_H_
|
---|
10 |
|
---|
11 | struct ex_list {
|
---|
12 | int ex_pty; /* Do we want a pty? */
|
---|
13 | int ex_addr; /* The last byte of the address */
|
---|
14 | int ex_fport; /* Port to telnet to */
|
---|
15 | char *ex_exec; /* Command line of what to exec */
|
---|
16 | struct ex_list *ex_next;
|
---|
17 | };
|
---|
18 |
|
---|
19 | extern struct ex_list *exec_list;
|
---|
20 | #ifndef VBOX
|
---|
21 | extern u_int curtime, time_fasttimo, last_slowtimo, detach_time, detach_wait;
|
---|
22 | #endif /* !VBOX */
|
---|
23 |
|
---|
24 | #ifndef VBOX
|
---|
25 | extern int (*lprint_print) _P((void *, const char *, va_list));
|
---|
26 | extern char *lprint_ptr, *lprint_ptr2, **lprint_arg;
|
---|
27 | extern struct sbuf *lprint_sb;
|
---|
28 | #endif /* !VBOX */
|
---|
29 |
|
---|
30 | #ifndef HAVE_STRDUP
|
---|
31 | char *strdup _P((const char *));
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | void do_wait _P((int));
|
---|
35 |
|
---|
36 | #define EMU_NONE 0x0
|
---|
37 |
|
---|
38 | /* TCP emulations */
|
---|
39 | #define EMU_CTL 0x1
|
---|
40 | #define EMU_FTP 0x2
|
---|
41 | #define EMU_KSH 0x3
|
---|
42 | #define EMU_IRC 0x4
|
---|
43 | #define EMU_REALAUDIO 0x5
|
---|
44 | #define EMU_RLOGIN 0x6
|
---|
45 | #define EMU_IDENT 0x7
|
---|
46 | #define EMU_RSH 0x8
|
---|
47 |
|
---|
48 | #define EMU_NOCONNECT 0x10 /* Don't connect */
|
---|
49 |
|
---|
50 | /* UDP emulations */
|
---|
51 | #define EMU_TALK 0x1
|
---|
52 | #define EMU_NTALK 0x2
|
---|
53 | #define EMU_CUSEEME 0x3
|
---|
54 |
|
---|
55 | struct tos_t {
|
---|
56 | u_int16_t lport;
|
---|
57 | u_int16_t fport;
|
---|
58 | u_int8_t tos;
|
---|
59 | u_int8_t emu;
|
---|
60 | };
|
---|
61 |
|
---|
62 | struct emu_t {
|
---|
63 | u_int16_t lport;
|
---|
64 | u_int16_t fport;
|
---|
65 | u_int8_t tos;
|
---|
66 | u_int8_t emu;
|
---|
67 | struct emu_t *next;
|
---|
68 | };
|
---|
69 |
|
---|
70 | extern struct emu_t *tcpemu;
|
---|
71 |
|
---|
72 | extern int x_port, x_server, x_display;
|
---|
73 |
|
---|
74 | int show_x _P((char *, struct socket *));
|
---|
75 | void redir_x _P((u_int32_t, int, int, int));
|
---|
76 | #ifdef VBOX
|
---|
77 | void getouraddr _P((PNATState));
|
---|
78 | #else /* !VBOX */
|
---|
79 | void getouraddr _P((void));
|
---|
80 | #endif /* !VBOX */
|
---|
81 | inline void slirp_insque _P((PNATState, void *, void *));
|
---|
82 | inline void slirp_remque _P((PNATState, void *));
|
---|
83 | int add_exec _P((struct ex_list **, int, char *, int, int));
|
---|
84 | int slirp_openpty _P((int *, int *));
|
---|
85 | #ifdef VBOX
|
---|
86 | int fork_exec _P((PNATState, struct socket *, char *, int));
|
---|
87 | #else /* !VBOX */
|
---|
88 | int fork_exec _P((struct socket *, char *, int));
|
---|
89 | #endif /* !VBOX */
|
---|
90 | void snooze_hup _P((int));
|
---|
91 | void snooze _P((void));
|
---|
92 | void relay _P((int));
|
---|
93 | void add_emu _P((char *));
|
---|
94 | void u_sleep _P((int));
|
---|
95 | void fd_nonblock _P((int));
|
---|
96 | void fd_block _P((int));
|
---|
97 | int rsh_exec _P((struct socket *, struct socket *, char *, char *, char *));
|
---|
98 |
|
---|
99 | #if defined(VBOX) && defined(_MSC_VER)
|
---|
100 | void insque(void *a, void *b);
|
---|
101 | void remque(void *a);
|
---|
102 | #endif
|
---|
103 |
|
---|
104 | #endif
|
---|