]> git.proxmox.com Git - mirror_qemu.git/blame - slirp/misc.h
hmp: fix "dump-quest-memory" segfault
[mirror_qemu.git] / slirp / misc.h
CommitLineData
f0cbd3ec
FB
1/*
2 * Copyright (c) 1995 Danny Gasparovski.
5fafdf24
TS
3 *
4 * Please read the file COPYRIGHT for the
f0cbd3ec
FB
5 * terms and conditions of the copyright.
6 */
7
2a6a4076
MA
8#ifndef MISC_H
9#define MISC_H
f0cbd3ec
FB
10
11struct ex_list {
12 int ex_pty; /* Do we want a pty? */
a13a4126 13 struct in_addr ex_addr; /* Server address */
f0cbd3ec 14 int ex_fport; /* Port to telnet to */
9634d903 15 const char *ex_exec; /* Command line of what to exec */
f0cbd3ec
FB
16 struct ex_list *ex_next;
17};
18
f0cbd3ec
FB
19#define EMU_NONE 0x0
20
21/* TCP emulations */
22#define EMU_CTL 0x1
23#define EMU_FTP 0x2
24#define EMU_KSH 0x3
25#define EMU_IRC 0x4
26#define EMU_REALAUDIO 0x5
27#define EMU_RLOGIN 0x6
28#define EMU_IDENT 0x7
29#define EMU_RSH 0x8
30
31#define EMU_NOCONNECT 0x10 /* Don't connect */
32
f0cbd3ec 33struct tos_t {
b6dce92e
SW
34 uint16_t lport;
35 uint16_t fport;
36 uint8_t tos;
37 uint8_t emu;
f0cbd3ec
FB
38};
39
40struct emu_t {
b6dce92e
SW
41 uint16_t lport;
42 uint16_t fport;
43 uint8_t tos;
44 uint8_t emu;
45 struct emu_t *next;
f0cbd3ec
FB
46};
47
67e3eee4
ST
48struct slirp_quehead {
49 struct slirp_quehead *qh_link;
50 struct slirp_quehead *qh_rlink;
51};
52
6cb9c6d3
BS
53void slirp_insque(void *, void *);
54void slirp_remque(void *);
55int add_exec(struct ex_list **, int, char *, struct in_addr, int);
9634d903 56int fork_exec(struct socket *so, const char *ex, int do_pty);
f0cbd3ec
FB
57
58#endif