blob: da68d099501a8c127b3484f28bf1dbab7165b483 [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
8#ifndef _MISC_H_
9#define _MISC_H_
10
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#ifndef HAVE_STRDUP
Blue Swirl6cb9c6d2009-07-01 19:11:17 +000020char *strdup(const char *);
bellardf0cbd3e2004-04-22 00:10:48 +000021#endif
22
Blue Swirl6cb9c6d2009-07-01 19:11:17 +000023void do_wait(int);
bellardf0cbd3e2004-04-22 00:10:48 +000024
25#define EMU_NONE 0x0
26
27/* TCP emulations */
28#define EMU_CTL 0x1
29#define EMU_FTP 0x2
30#define EMU_KSH 0x3
31#define EMU_IRC 0x4
32#define EMU_REALAUDIO 0x5
33#define EMU_RLOGIN 0x6
34#define EMU_IDENT 0x7
35#define EMU_RSH 0x8
36
37#define EMU_NOCONNECT 0x10 /* Don't connect */
38
bellardf0cbd3e2004-04-22 00:10:48 +000039struct tos_t {
40 u_int16_t lport;
41 u_int16_t fport;
42 u_int8_t tos;
43 u_int8_t emu;
44};
45
46struct emu_t {
47 u_int16_t lport;
48 u_int16_t fport;
49 u_int8_t tos;
50 u_int8_t emu;
51 struct emu_t *next;
52};
53
bellardf0cbd3e2004-04-22 00:10:48 +000054extern int x_port, x_server, x_display;
55
Blue Swirl6cb9c6d2009-07-01 19:11:17 +000056int show_x(char *, struct socket *);
57void redir_x(u_int32_t, int, int, int);
58void slirp_insque(void *, void *);
59void slirp_remque(void *);
60int add_exec(struct ex_list **, int, char *, struct in_addr, int);
61int slirp_openpty(int *, int *);
blueswir19634d902007-10-26 19:01:16 +000062int fork_exec(struct socket *so, const char *ex, int do_pty);
Blue Swirl6cb9c6d2009-07-01 19:11:17 +000063void snooze_hup(int);
64void snooze(void);
65void relay(int);
66void add_emu(char *);
67void u_sleep(int);
68void fd_nonblock(int);
69void fd_block(int);
70int rsh_exec(struct socket *, struct socket *, char *, char *, char *);
bellardf0cbd3e2004-04-22 00:10:48 +000071
72#endif