summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2019-06-21 18:15:31 -0400
committerJeff Forcier <jeff@bitprophet.org>2019-06-21 18:15:31 -0400
commit23547135499736e5952ebf99c9a6761a73962df4 (patch)
tree501f2138c2e3ec727d073b4e5094d7fb03ad0e46
parent51dbcb393ffe915c34c452afdc892f07a4696153 (diff)
parent09491c6d45999056ff5dfda8282e92cce5e4781b (diff)
downloadparamiko-23547135499736e5952ebf99c9a6761a73962df4.tar.gz
Merge branch '2.4' into 2.5
-rw-r--r--paramiko/transport.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py
index 25213b4a..bd145c1e 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -346,10 +346,18 @@ class Transport(threading.Thread, ClosingContextManager):
:param int default_max_packet_size:
sets the default max packet size on the transport. (defaults to
32768)
+ :param bool gss_kex:
+ Whether to enable GSSAPI key exchange when GSSAPI is in play.
+ Default: ``False``.
+ :param bool gss_deleg_creds:
+ Whether to enable GSSAPI credential delegation when GSSAPI is in
+ play. Default: ``True``.
.. versionchanged:: 1.15
Added the ``default_window_size`` and ``default_max_packet_size``
arguments.
+ .. versionchanged:: 1.15
+ Added the ``gss_kex`` and ``gss_deleg_creds`` kwargs.
"""
self.active = False
self.hostname = None