blob: 5211bbd30a3c3f97103e55428074121a3c360a3e [file] [log] [blame]
bellardf0cbd3e2004-04-22 00:10:48 +00001/*
2 * Copyright (c) 1995 Danny Gasparovski.
ths5fafdf22007-09-16 21:08:06 +00003 *
4 * Please read the file COPYRIGHT for the
bellardf0cbd3e2004-04-22 00:10:48 +00005 * terms and conditions of the copyright.
6 */
7
Markus Armbruster2a6a4072016-06-29 13:47:03 +02008#ifndef MISC_H
9#define MISC_H
bellardf0cbd3e2004-04-22 00:10:48 +000010
11struct ex_list {
12 int ex_pty; /* Do we want a pty? */
Jan Kiszkaa13a4122009-06-24 14:42:28 +020013 struct in_addr ex_addr; /* Server address */
bellardf0cbd3e2004-04-22 00:10:48 +000014 int ex_fport; /* Port to telnet to */
blueswir19634d902007-10-26 19:01:16 +000015 const char *ex_exec; /* Command line of what to exec */
bellardf0cbd3e2004-04-22 00:10:48 +000016 struct ex_list *ex_next;
17};
18
bellardf0cbd3e2004-04-22 00:10:48 +000019#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
bellardf0cbd3e2004-04-22 00:10:48 +000033struct tos_t {
Stefan Weilb6dce922010-07-22 22:15:23 +020034 uint16_t lport;
35 uint16_t fport;
36 uint8_t tos;
37 uint8_t emu;
bellardf0cbd3e2004-04-22 00:10:48 +000038};
39
40struct emu_t {
Stefan Weilb6dce922010-07-22 22:15:23 +020041 uint16_t lport;
42 uint16_t fport;
43 uint8_t tos;
44 uint8_t emu;
45 struct emu_t *next;
bellardf0cbd3e2004-04-22 00:10:48 +000046};
47
Samuel Thibault67e3eee2016-02-22 22:29:21 +010048struct slirp_quehead {
49 struct slirp_quehead *qh_link;
50 struct slirp_quehead *qh_rlink;
51};
52
Blue Swirl6cb9c6d2009-07-01 19:11:17 +000053void slirp_insque(void *, void *);
54void slirp_remque(void *);
55int add_exec(struct ex_list **, int, char *, struct in_addr, int);
blueswir19634d902007-10-26 19:01:16 +000056int fork_exec(struct socket *so, const char *ex, int do_pty);
bellardf0cbd3e2004-04-22 00:10:48 +000057
58#endif