VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/slirp/misc.h@ 20376

Last change on this file since 20376 was 20306, checked in by vboxsync, 16 years ago

NAT: compile fixes

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
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
11struct ex_list
12{
13 int ex_pty; /* Do we want a pty? */
14 int ex_addr; /* The last byte of the address */
15 int ex_fport; /* Port to telnet to */
16 char *ex_exec; /* Command line of what to exec */
17 struct ex_list *ex_next;
18};
19
20extern struct ex_list *exec_list;
21
22#define EMU_NONE 0x0
23
24/* TCP emulations */
25#define EMU_CTL 0x1
26#define EMU_FTP 0x2
27#define EMU_KSH 0x3
28#define EMU_IRC 0x4
29#define EMU_REALAUDIO 0x5
30#define EMU_RLOGIN 0x6
31#define EMU_IDENT 0x7
32#define EMU_RSH 0x8
33
34#define EMU_NOCONNECT 0x10 /* Don't connect */
35
36/* UDP emulations */
37#define EMU_TALK 0x1
38#define EMU_NTALK 0x2
39#define EMU_CUSEEME 0x3
40
41struct tos_t
42{
43 u_int16_t lport;
44 u_int16_t fport;
45 u_int8_t tos;
46 u_int8_t emu;
47};
48
49struct emu_t
50{
51 u_int16_t lport;
52 u_int16_t fport;
53 u_int8_t tos;
54 u_int8_t emu;
55 struct emu_t *next;
56};
57
58extern struct emu_t *tcpemu;
59
60extern int x_port, x_server, x_display;
61
62int show_x (char *, struct socket *);
63void redir_x (u_int32_t, int, int, int);
64void getouraddr (PNATState);
65void slirp_insque (PNATState, void *, void *);
66void slirp_remque (PNATState, void *);
67int add_exec (struct ex_list **, int, char *, int, int);
68int slirp_openpty (int *, int *);
69int fork_exec (PNATState, struct socket *, char *, int);
70void snooze_hup (int);
71void snooze (void);
72void relay (int);
73void add_emu (char *);
74void fd_nonblock (int);
75void fd_block (int);
76
77#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette