summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/channels.h b/channels.h
index c47de55c0..fc20fb2c3 100644
--- a/channels.h
+++ b/channels.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.h,v 1.75 2004/10/29 21:47:15 djm 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>
@@ -203,9 +203,11 @@ void channel_clear_permitted_opens(void);
203void channel_input_port_forward_request(int, int); 203void channel_input_port_forward_request(int, int);
204int channel_connect_to(const char *, u_short); 204int channel_connect_to(const char *, u_short);
205int channel_connect_by_listen_address(u_short); 205int channel_connect_by_listen_address(u_short);
206void channel_request_remote_forwarding(u_short, const char *, u_short); 206void channel_request_remote_forwarding(const char *, u_short,
207void channel_request_rforward_cancel(u_short port); 207 const char *, u_short);
208int 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);
209int channel_setup_remote_fwd_listener(const char *, u_short, int); 211int channel_setup_remote_fwd_listener(const char *, u_short, int);
210int channel_cancel_rport_listener(const char *, u_short); 212int channel_cancel_rport_listener(const char *, u_short);
211 213