diff options
author | Robey Pointer <robey@lag.net> | 2005-10-30 21:13:36 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2005-10-30 21:13:36 +0000 |
commit | e57c4baab58e63c11548918801cf4639110029c0 (patch) | |
tree | 605b21967a35d6dc6b271a8a1141fc24509f9881 | |
parent | a355cf43d99d8a46e22ca6406d30c93f3a3e5def (diff) |
[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
-rw-r--r-- | paramiko/transport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py index 232fdaad..9f095cbd 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() |