version 1.1.1.5, 2018/04/24 17:41:07
|
version 1.1.1.6, 2018/04/24 18:31:19
|
Line 37 void do_wait(int);
|
Line 37 void do_wait(int);
|
#define EMU_NOCONNECT 0x10 /* Don't connect */ |
#define EMU_NOCONNECT 0x10 /* Don't connect */ |
|
|
struct tos_t { |
struct tos_t { |
u_int16_t lport; |
uint16_t lport; |
u_int16_t fport; |
uint16_t fport; |
u_int8_t tos; |
uint8_t tos; |
u_int8_t emu; |
uint8_t emu; |
}; |
}; |
|
|
struct emu_t { |
struct emu_t { |
u_int16_t lport; |
uint16_t lport; |
u_int16_t fport; |
uint16_t fport; |
u_int8_t tos; |
uint8_t tos; |
u_int8_t emu; |
uint8_t emu; |
struct emu_t *next; |
struct emu_t *next; |
}; |
}; |
|
|
extern int x_port, x_server, x_display; |
extern int x_port, x_server, x_display; |
|
|
int show_x(char *, struct socket *); |
int show_x(char *, struct socket *); |
void redir_x(u_int32_t, int, int, int); |
void redir_x(uint32_t, int, int, int); |
void slirp_insque(void *, void *); |
void slirp_insque(void *, void *); |
void slirp_remque(void *); |
void slirp_remque(void *); |
int add_exec(struct ex_list **, int, char *, struct in_addr, int); |
int add_exec(struct ex_list **, int, char *, struct in_addr, int); |