VirtualBox

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

最後變更 在這個檔案從14964是 14964,由 vboxsync 提交於 16 年 前

slirp: code cosmetics for better readability (no semantics change)

  • 屬性 svn:eol-style 設為 native
檔案大小: 1.7 KB
 
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 _P((char *, struct socket *));
63void redir_x _P((u_int32_t, int, int, int));
64void getouraddr _P((PNATState));
65void slirp_insque _P((PNATState, void *, void *));
66void slirp_remque _P((PNATState, void *));
67int add_exec _P((struct ex_list **, int, char *, int, int));
68int slirp_openpty _P((int *, int *));
69int fork_exec _P((PNATState, struct socket *, char *, int));
70void snooze_hup _P((int));
71void snooze _P((void));
72void relay _P((int));
73void add_emu _P((char *));
74void fd_nonblock _P((int));
75void fd_block _P((int));
76
77#endif
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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