syslimits.h fix for OSX
[vde.git] / vde-2 / slirpvde / misc.h
blob399d403665ec038f159cf7e304aa78488e8e6e20
1 /*
2 * Copyright (c) 1995 Danny Gasparovski.
3 *
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 #include <slirp.h>
13 struct ex_list {
14 int ex_pty; /* Do we want a pty? */
15 int ex_addr; /* The last byte of the address */
16 int ex_fport; /* Port to telnet to */
17 char *ex_exec; /* Command line of what to exec */
18 struct ex_list *ex_next;
21 extern struct ex_list *exec_list;
22 extern u_int curtime, time_fasttimo, last_slowtimo, detach_time, detach_wait;
24 extern int (*lprint_print) _P((void *, const char *, va_list));
25 extern char *lprint_ptr, *lprint_ptr2, **lprint_arg;
26 extern struct sbuf *lprint_sb;
28 #ifndef HAVE_STRDUP
29 char *strdup _P((const char *));
30 #endif
32 void do_wait _P((int));
34 #define EMU_NONE 0x0
36 /* TCP emulations */
37 #define EMU_CTL 0x1
38 #define EMU_FTP 0x2
39 #define EMU_KSH 0x3
40 #define EMU_IRC 0x4
41 #define EMU_REALAUDIO 0x5
42 #define EMU_RLOGIN 0x6
43 #define EMU_IDENT 0x7
44 #define EMU_RSH 0x8
46 #define EMU_NOCONNECT 0x10 /* Don't connect */
48 /* UDP emulations */
49 #define EMU_TALK 0x1
50 #define EMU_NTALK 0x2
51 #define EMU_CUSEEME 0x3
53 struct tos_t {
54 u_int16_t lport;
55 u_int16_t fport;
56 u_int8_t tos;
57 u_int8_t emu;
60 struct emu_t {
61 u_int16_t lport;
62 u_int16_t fport;
63 u_int8_t tos;
64 u_int8_t emu;
65 struct emu_t *next;
68 extern struct emu_t *tcpemu;
70 extern int x_port, x_server, x_display;
72 int show_x _P((void));
73 void redir_x _P((u_int32_t, int, int, int));
74 void redir_tcp _P((u_int32_t, int, int));
76 void getouraddr _P((void));
77 inline void slirp_insque _P((void *, void *));
78 inline void slirp_remque _P((void *));
79 int add_exec _P((struct ex_list **, int, char *, int, int));
80 int openpty _P((int *, int *));
81 int fork_exec _P((struct socket *, char *, int));
82 void snooze_hup _P((int));
83 void snooze _P((void));
84 void relay _P((int));
85 void add_emu _P((char *));
86 void u_sleep _P((int));
87 void fd_nonblock _P((int));
88 void fd_block _P((int));
89 int rsh_exec _P((struct socket *, struct socket *, char *, char *, char *));
91 #endif