2004-04-22 02:10:48 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1995 Danny Gasparovski.
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
|
|
|
* Please read the file COPYRIGHT for the
|
2004-04-22 02:10:48 +02:00
|
|
|
* terms and conditions of the copyright.
|
|
|
|
*/
|
|
|
|
|
2016-06-29 13:47:03 +02:00
|
|
|
#ifndef MISC_H
|
|
|
|
#define MISC_H
|
2004-04-22 02:10:48 +02:00
|
|
|
|
2018-11-21 23:06:22 +01:00
|
|
|
struct gfwd_list {
|
2018-11-10 14:45:39 +01:00
|
|
|
void *ex_chardev;
|
2009-06-24 14:42:28 +02:00
|
|
|
struct in_addr ex_addr; /* Server address */
|
2004-04-22 02:10:48 +02:00
|
|
|
int ex_fport; /* Port to telnet to */
|
2018-11-10 14:45:44 +01:00
|
|
|
char *ex_exec; /* Command line of what to exec */
|
2018-11-21 23:06:22 +01:00
|
|
|
struct gfwd_list *ex_next;
|
2004-04-22 02:10:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define EMU_NONE 0x0
|
|
|
|
|
|
|
|
/* TCP emulations */
|
|
|
|
#define EMU_CTL 0x1
|
|
|
|
#define EMU_FTP 0x2
|
|
|
|
#define EMU_KSH 0x3
|
|
|
|
#define EMU_IRC 0x4
|
|
|
|
#define EMU_REALAUDIO 0x5
|
|
|
|
#define EMU_RLOGIN 0x6
|
|
|
|
#define EMU_IDENT 0x7
|
|
|
|
|
|
|
|
#define EMU_NOCONNECT 0x10 /* Don't connect */
|
|
|
|
|
|
|
|
struct tos_t {
|
2010-07-22 22:15:23 +02:00
|
|
|
uint16_t lport;
|
|
|
|
uint16_t fport;
|
|
|
|
uint8_t tos;
|
|
|
|
uint8_t emu;
|
2004-04-22 02:10:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct emu_t {
|
2010-07-22 22:15:23 +02:00
|
|
|
uint16_t lport;
|
|
|
|
uint16_t fport;
|
|
|
|
uint8_t tos;
|
|
|
|
uint8_t emu;
|
|
|
|
struct emu_t *next;
|
2004-04-22 02:10:48 +02:00
|
|
|
};
|
|
|
|
|
2016-02-22 22:29:21 +01:00
|
|
|
struct slirp_quehead {
|
|
|
|
struct slirp_quehead *qh_link;
|
|
|
|
struct slirp_quehead *qh_rlink;
|
|
|
|
};
|
|
|
|
|
2009-07-01 21:11:17 +02:00
|
|
|
void slirp_insque(void *, void *);
|
|
|
|
void slirp_remque(void *);
|
2018-11-21 23:06:22 +01:00
|
|
|
int add_exec(struct gfwd_list **, void *, const char *, struct in_addr, int);
|
2018-11-10 14:45:37 +01:00
|
|
|
int fork_exec(struct socket *so, const char *ex);
|
2004-04-22 02:10:48 +02:00
|
|
|
|
|
|
|
#endif
|