diff options
author | Damien Miller <djm@mindrot.org> | 2002-02-19 05:20:08 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-02-19 05:20:08 +0100 |
commit | 2aa0c1995c1a4c138b7a03fe90e75d6f73eab1f3 (patch) | |
tree | cbea3712156ea475df53e32984af4fce390c94d9 | |
parent | - mpech@cvs.openbsd.org 2002/02/13 08:33:47 (diff) | |
download | openssh-2aa0c1995c1a4c138b7a03fe90e75d6f73eab1f3.tar.xz openssh-2aa0c1995c1a4c138b7a03fe90e75d6f73eab1f3.zip |
- markus@cvs.openbsd.org 2002/02/14 23:27:59
[channels.c]
increase the SSH v2 window size to 4 packets. comsumes a little
bit more memory for slow receivers but increases througput.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | channels.c | 7 |
2 files changed, 8 insertions, 5 deletions
@@ -5,6 +5,10 @@ When you give command examples and etc., in a manual page prefix them with: $ command or # command + - markus@cvs.openbsd.org 2002/02/14 23:27:59 + [channels.c] + increase the SSH v2 window size to 4 packets. comsumes a little + bit more memory for slow receivers but increases througput. 20020218 - (tim) newer config.guess from ftp://ftp.gnu.org/gnu/config/config.guess @@ -7602,4 +7606,4 @@ - Wrote replacements for strlcpy and mkdtemp - Released 1.0pre1 -$Id: ChangeLog,v 1.1855 2002/02/19 04:19:42 djm Exp $ +$Id: ChangeLog,v 1.1856 2002/02/19 04:20:08 djm Exp $ diff --git a/channels.c b/channels.c index 7da46143f..50d6f16ad 100644 --- a/channels.c +++ b/channels.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: channels.c,v 1.167 2002/02/06 14:55:15 markus Exp $"); +RCSID("$OpenBSD: channels.c,v 1.168 2002/02/14 23:27:59 markus Exp $"); #include "ssh.h" #include "ssh1.h" @@ -644,15 +644,14 @@ channel_register_filter(int id, channel_filter_fn *fn) void channel_set_fds(int id, int rfd, int wfd, int efd, - int extusage, int nonblock) + int extusage, int nonblock, u_int window_max) { Channel *c = channel_lookup(id); if (c == NULL || c->type != SSH_CHANNEL_LARVAL) fatal("channel_activate for non-larval channel %d.", id); channel_register_fds(c, rfd, wfd, efd, extusage, nonblock); c->type = SSH_CHANNEL_OPEN; - /* XXX window size? */ - c->local_window = c->local_window_max = c->local_maxpacket * 2; + c->local_window = c->local_window_max = window_max; packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST); packet_put_int(c->remote_id); packet_put_int(c->local_window); |