summaryrefslogtreecommitdiff
path: root/paramiko/transport.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2019-06-21 18:15:27 -0400
committerJeff Forcier <jeff@bitprophet.org>2019-06-21 18:15:27 -0400
commitd52dd92f3eef2a706167074ea19bdbba6da21be8 (patch)
treeefc283158341f56571559faa48930be38751b0f0 /paramiko/transport.py
parent84a47dc076ce9bf97dec04929dab73cac7a841fe (diff)
downloadparamiko-d52dd92f3eef2a706167074ea19bdbba6da21be8.tar.gz
GSSAPI related kwargs were never docstring-documented -_-
Diffstat (limited to 'paramiko/transport.py')
-rw-r--r--paramiko/transport.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py
index 9517d4a9..4ec22f9c 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -326,10 +326,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