2 * Copyright (c) 1995 Danny Gasparovski.
4 * Please read the file COPYRIGHT for the
5 * terms and conditions of the copyright.
12 int ex_pty
; /* Do we want a pty? */
13 int ex_addr
; /* The last byte of the address */
14 int ex_fport
; /* Port to telnet to */
15 char *ex_exec
; /* Command line of what to exec */
16 struct ex_list
*ex_next
;
19 extern struct ex_list
*exec_list
;
20 extern u_int curtime
, time_fasttimo
, last_slowtimo
, detach_time
, detach_wait
;
22 extern int (*lprint_print
) _P((void *, const char *, va_list));
23 extern char *lprint_ptr
, *lprint_ptr2
, **lprint_arg
;
24 extern struct sbuf
*lprint_sb
;
27 char *strdup
_P((const char *));
30 void do_wait
_P((int));
39 #define EMU_REALAUDIO 0x5
40 #define EMU_RLOGIN 0x6
44 #define EMU_NOCONNECT 0x10 /* Don't connect */
49 #define EMU_CUSEEME 0x3
66 extern struct emu_t
*tcpemu
;
68 extern int x_port
, x_server
, x_display
;
70 int show_x
_P((char *, struct socket
*));
71 void redir_x
_P((u_int32_t
, int, int, int));
72 void getouraddr
_P((void));
73 inline void slirp_insque
_P((void *, void *));
74 inline void slirp_remque
_P((void *));
75 int add_exec
_P((struct ex_list
**, int, char *, int, int));
76 int slirp_openpty
_P((int *, int *));
77 int fork_exec
_P((struct socket
*, char *, int));
78 void snooze_hup
_P((int));
79 void snooze
_P((void));
81 void add_emu
_P((char *));
82 void u_sleep
_P((int));
83 void fd_nonblock
_P((int));
84 void fd_block
_P((int));
85 int rsh_exec
_P((struct socket
*, struct socket
*, char *, char *, char *));