- (dtucker) [clientloop.c serverloop.c] channel_register_filter now
takes 2 more args. with djm@
This commit is contained in:
parent
f6b01b758f
commit
1cf65ae61d
|
@ -115,6 +115,8 @@
|
||||||
- dtucker@cvs.openbsd.org 2008/06/12 16:35:31
|
- dtucker@cvs.openbsd.org 2008/06/12 16:35:31
|
||||||
[ssh_config.5 ssh.c]
|
[ssh_config.5 ssh.c]
|
||||||
keyword expansion for localcommand. ok djm@
|
keyword expansion for localcommand. ok djm@
|
||||||
|
- (dtucker) [clientloop.c serverloop.c] channel_register_filter now
|
||||||
|
takes 2 more args. with djm@
|
||||||
|
|
||||||
20080611
|
20080611
|
||||||
- (djm) [channels.c configure.ac]
|
- (djm) [channels.c configure.ac]
|
||||||
|
@ -4277,4 +4279,4 @@
|
||||||
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
||||||
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4985 2008/06/12 18:56:37 dtucker Exp $
|
$Id: ChangeLog,v 1.4986 2008/06/12 19:09:18 dtucker Exp $
|
||||||
|
|
|
@ -1745,7 +1745,7 @@ client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun)
|
||||||
#if defined(SSH_TUN_FILTER)
|
#if defined(SSH_TUN_FILTER)
|
||||||
if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
|
if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
|
||||||
channel_register_filter(c->self, sys_tun_infilter,
|
channel_register_filter(c->self, sys_tun_infilter,
|
||||||
sys_tun_outfilter);
|
sys_tun_outfilter, NULL, NULL);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
packet_start(SSH2_MSG_CHANNEL_OPEN);
|
packet_start(SSH2_MSG_CHANNEL_OPEN);
|
||||||
|
|
|
@ -998,7 +998,7 @@ server_request_tun(void)
|
||||||
#if defined(SSH_TUN_FILTER)
|
#if defined(SSH_TUN_FILTER)
|
||||||
if (mode == SSH_TUNMODE_POINTOPOINT)
|
if (mode == SSH_TUNMODE_POINTOPOINT)
|
||||||
channel_register_filter(c->self, sys_tun_infilter,
|
channel_register_filter(c->self, sys_tun_infilter,
|
||||||
sys_tun_outfilter);
|
sys_tun_outfilter, NULL, NULL);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
done:
|
done:
|
||||||
|
|
Loading…
Reference in New Issue