summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-09-13 09:39:06 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-09-13 09:39:35 -0700
commitddeee38fc1a4ed32320f99bf4fe92f9e2c4a5b53 (patch)
tree00f22bb4a0005f068c8ec236a9495e5536b0e409
parentfe05754f004ce78d03ebbee5e68425e1959944ca (diff)
versionchanged for gss_trust_dns
-rw-r--r--paramiko/client.py2
-rw-r--r--paramiko/transport.py3
2 files changed, 5 insertions, 0 deletions
diff --git a/paramiko/client.py b/paramiko/client.py
index 998e0166..8978c30d 100644
--- a/paramiko/client.py
+++ b/paramiko/client.py
@@ -313,6 +313,8 @@ class SSHClient (ClosingContextManager):
.. versionchanged:: 1.15
Added the ``banner_timeout``, ``gss_auth``, ``gss_kex``,
``gss_deleg_creds`` and ``gss_host`` arguments.
+ .. versionchanged:: 2.3
+ Added the ``gss_trust_dns`` argument.
"""
if not sock:
errors = {}
diff --git a/paramiko/transport.py b/paramiko/transport.py
index df698300..34320918 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -1137,6 +1137,9 @@ class Transport(threading.Thread, ClosingContextManager):
:raises: `.SSHException` -- if the SSH2 negotiation fails, the host key
supplied by the server is incorrect, or authentication fails.
+
+ .. versionchanged:: 2.3
+ Added the ``gss_trust_dns`` argument.
"""
if hostkey is not None:
self._preferred_keys = [hostkey.get_name()]