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
commit09491c6d45999056ff5dfda8282e92cce5e4781b (patch)
treef8f6feca88ce575ebc182b90baa2a3e6c8cffa8c
parentf0e8c64727367713a12a30213ce48504ee0ba3d8 (diff)
parenta3dd7a2ed992f2c5316d3fb246eb901b25317622 (diff)
downloadparamiko-09491c6d45999056ff5dfda8282e92cce5e4781b.tar.gz
Merge branch '2.3' into 2.4
-rw-r--r--paramiko/transport.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py
index f72eebaf..1c06888e 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -332,10 +332,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