summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/channels.h b/channels.h
index f8dc8249c..fc20fb2c3 100644
--- a/channels.h
+++ b/channels.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.h,v 1.74 2004/08/11 21:43:04 avsm Exp $ */ 1/* $OpenBSD: channels.h,v 1.76 2005/03/01 10:09:52 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -79,6 +79,7 @@ struct Channel {
79 int ctl_fd; /* control fd (client sharing) */ 79 int ctl_fd; /* control fd (client sharing) */
80 int isatty; /* rfd is a tty */ 80 int isatty; /* rfd is a tty */
81 int wfd_isatty; /* wfd is a tty */ 81 int wfd_isatty; /* wfd is a tty */
82 int client_tty; /* (client) TTY has been requested */
82 int force_drain; /* force close on iEOF */ 83 int force_drain; /* force close on iEOF */
83 int delayed; /* fdset hack */ 84 int delayed; /* fdset hack */
84 Buffer input; /* data read from socket, to be sent over 85 Buffer input; /* data read from socket, to be sent over
@@ -202,9 +203,11 @@ void channel_clear_permitted_opens(void);
202void channel_input_port_forward_request(int, int); 203void channel_input_port_forward_request(int, int);
203int channel_connect_to(const char *, u_short); 204int channel_connect_to(const char *, u_short);
204int channel_connect_by_listen_address(u_short); 205int channel_connect_by_listen_address(u_short);
205void channel_request_remote_forwarding(u_short, const char *, u_short); 206void channel_request_remote_forwarding(const char *, u_short,
206void channel_request_rforward_cancel(u_short port); 207 const char *, u_short);
207int channel_setup_local_fwd_listener(u_short, const char *, u_short, int); 208int channel_setup_local_fwd_listener(const char *, u_short,
209 const char *, u_short, int);
210void channel_request_rforward_cancel(const char *host, u_short port);
208int channel_setup_remote_fwd_listener(const char *, u_short, int); 211int channel_setup_remote_fwd_listener(const char *, u_short, int);
209int channel_cancel_rport_listener(const char *, u_short); 212int channel_cancel_rport_listener(const char *, u_short);
210 213