summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--paramiko/channel.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/paramiko/channel.py b/paramiko/channel.py
index df6b1cf6..90761d43 100644
--- a/paramiko/channel.py
+++ b/paramiko/channel.py
@@ -44,6 +44,8 @@ from paramiko import pipe
# http://www.ietf.org/rfc/rfc4254.txt
MIN_PACKET_SIZE = 2 ** 15
+# Max windows size according to http://www.ietf.org/rfc/rfc4254.txt
+MAX_WINDOW_SIZE = 2**32 -1
class Channel (object):
"""