From e57c4baab58e63c11548918801cf4639110029c0 Mon Sep 17 00:00:00 2001 From: Robey Pointer Date: Sun, 30 Oct 2005 21:13:36 +0000 Subject: [PATCH] [project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-74] raise the max packet size so that the max sftp packet will fit --- paramiko/transport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paramiko/transport.py b/paramiko/transport.py index 232fdaa..9f095cb 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -244,7 +244,7 @@ class Transport (threading.Thread): self.channels_seen = { } # (id -> True) self.channel_counter = 1 self.window_size = 65536 - self.max_packet_size = 32768 + self.max_packet_size = 34816 self.saved_exception = None self.clear_to_send = threading.Event() self.clear_to_send_lock = threading.Lock()