diff options
author | Damien Miller <djm@mindrot.org> | 2009-02-14 16:28:21 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2009-02-14 16:28:21 +1100 |
commit | 4bf648f7766ba764d7a78b1dbb26df4f0d42a8c9 (patch) | |
tree | cc576e28218cb3ad9617a12eabe68c21a7e09614 /channels.h | |
parent | fdd66fc750228b5d040c45bc36565299374b72c8 (diff) |
- djm@cvs.openbsd.org 2009/02/12 03:00:56
[canohost.c canohost.h channels.c channels.h clientloop.c readconf.c]
[readconf.h serverloop.c ssh.c]
support remote port forwarding with a zero listen port (-R0:...) to
dyamically allocate a listen port at runtime (this is actually
specified in rfc4254); bz#1003 ok markus@
Diffstat (limited to 'channels.h')
-rw-r--r-- | channels.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/channels.h b/channels.h index 19fee769c..1488ed7e5 100644 --- a/channels.h +++ b/channels.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: channels.h,v 1.97 2009/01/22 09:46:01 djm Exp $ */ | 1 | /* $OpenBSD: channels.h,v 1.98 2009/02/12 03:00:56 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -245,7 +245,7 @@ int channel_request_remote_forwarding(const char *, u_short, | |||
245 | int channel_setup_local_fwd_listener(const char *, u_short, | 245 | int channel_setup_local_fwd_listener(const char *, u_short, |
246 | const char *, u_short, int); | 246 | const char *, u_short, int); |
247 | void channel_request_rforward_cancel(const char *host, u_short port); | 247 | void channel_request_rforward_cancel(const char *host, u_short port); |
248 | int channel_setup_remote_fwd_listener(const char *, u_short, int); | 248 | int channel_setup_remote_fwd_listener(const char *, u_short, int *, int); |
249 | int channel_cancel_rport_listener(const char *, u_short); | 249 | int channel_cancel_rport_listener(const char *, u_short); |
250 | 250 | ||
251 | /* x11 forwarding */ | 251 | /* x11 forwarding */ |