hw/arm/virt: formatting: memory map
[qemu/ar7.git] / slirp / misc.h
blobba8beb1b17e3d708119cd135421cbe1bcd423042
1 /*
2 * Copyright (c) 1995 Danny Gasparovski.
4 * Please read the file COPYRIGHT for the
5 * terms and conditions of the copyright.
6 */
8 #ifndef _MISC_H_
9 #define _MISC_H_
11 struct ex_list {
12 int ex_pty; /* Do we want a pty? */
13 struct in_addr ex_addr; /* Server address */
14 int ex_fport; /* Port to telnet to */
15 const char *ex_exec; /* Command line of what to exec */
16 struct ex_list *ex_next;
19 #ifndef HAVE_STRDUP
20 char *strdup(const char *);
21 #endif
23 #define EMU_NONE 0x0
25 /* TCP emulations */
26 #define EMU_CTL 0x1
27 #define EMU_FTP 0x2
28 #define EMU_KSH 0x3
29 #define EMU_IRC 0x4
30 #define EMU_REALAUDIO 0x5
31 #define EMU_RLOGIN 0x6
32 #define EMU_IDENT 0x7
33 #define EMU_RSH 0x8
35 #define EMU_NOCONNECT 0x10 /* Don't connect */
37 struct tos_t {
38 uint16_t lport;
39 uint16_t fport;
40 uint8_t tos;
41 uint8_t emu;
44 struct emu_t {
45 uint16_t lport;
46 uint16_t fport;
47 uint8_t tos;
48 uint8_t emu;
49 struct emu_t *next;
52 void slirp_insque(void *, void *);
53 void slirp_remque(void *);
54 int add_exec(struct ex_list **, int, char *, struct in_addr, int);
55 int fork_exec(struct socket *so, const char *ex, int do_pty);
57 #endif