summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-02-19 15:20:57 +1100
committerDamien Miller <djm@mindrot.org>2002-02-19 15:20:57 +1100
commit19a59451050446bb8656d1b72a8787e97cd1c99b (patch)
tree567e6e601f4e88d013f6a4ffaab9692ba54bbc04 /ssh.c
parent2aa0c1995c1a4c138b7a03fe90e75d6f73eab1f3 (diff)
- markus@cvs.openbsd.org 2002/02/14 23:28:00
[channels.h session.c ssh.c] increase the SSH v2 window size to 4 packets. comsumes a little bit more memory for slow receivers but increases througput.
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ssh.c b/ssh.c
index 236f2b522..117a0930b 100644
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
39 */ 39 */
40 40
41#include "includes.h" 41#include "includes.h"
42RCSID("$OpenBSD: ssh.c,v 1.163 2002/02/07 09:35:39 markus Exp $"); 42RCSID("$OpenBSD: ssh.c,v 1.164 2002/02/14 23:28:00 markus Exp $");
43 43
44#include <openssl/evp.h> 44#include <openssl/evp.h>
45#include <openssl/err.h> 45#include <openssl/err.h>
@@ -1145,9 +1145,9 @@ ssh_session2_open(void)
1145 1145
1146 window = CHAN_SES_WINDOW_DEFAULT; 1146 window = CHAN_SES_WINDOW_DEFAULT;
1147 packetmax = CHAN_SES_PACKET_DEFAULT; 1147 packetmax = CHAN_SES_PACKET_DEFAULT;
1148 if (!tty_flag) { 1148 if (tty_flag) {
1149 window *= 2; 1149 window >>= 1;
1150 packetmax *=2; 1150 packetmax >>= 1;
1151 } 1151 }
1152 c = channel_new( 1152 c = channel_new(
1153 "session", SSH_CHANNEL_OPENING, in, out, err, 1153 "session", SSH_CHANNEL_OPENING, in, out, err,