summaryrefslogtreecommitdiffstats
path: root/Doc/library/ssl.rst
diff options
context:
space:
mode:
authorjimmy <jamesfe@users.noreply.github.com>2017-12-13 12:37:51 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2017-12-13 12:37:51 (GMT)
commit4f29f3c84b74de8c208980a14bc56bffa6363121 (patch)
treebe089c6046969041d883bae52c78773483f1cc89 /Doc/library/ssl.rst
parent91106cd9ff2f321c0f60fbaa09fd46c80aa5c266 (diff)
downloadcpython-4f29f3c84b74de8c208980a14bc56bffa6363121.zip
cpython-4f29f3c84b74de8c208980a14bc56bffa6363121.tar.gz
cpython-4f29f3c84b74de8c208980a14bc56bffa6363121.tar.bz2
trivial: link updates in documentation (#2765)
Diffstat (limited to 'Doc/library/ssl.rst')
-rw-r--r--Doc/library/ssl.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 6122af1..b40d958 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -1374,7 +1374,7 @@ to speed up repeated connections from the same clients.
The *capath* string, if present, is
the path to a directory containing several CA certificates in PEM format,
following an `OpenSSL specific layout
- <https://www.openssl.org/docs/ssl/SSL_CTX_load_verify_locations.html>`_.
+ <https://www.openssl.org/docs/man1.1.0/ssl/SSL_CTX_load_verify_locations.html>`_.
The *cadata* object, if present, is either an ASCII string of one or more
PEM-encoded certificates or a :term:`bytes-like object` of DER-encoded
@@ -1664,7 +1664,7 @@ to speed up repeated connections from the same clients.
Get statistics about the SSL sessions created or managed by this context.
A dictionary is returned which maps the names of each `piece of information
- <https://www.openssl.org/docs/ssl/SSL_CTX_sess_number.html>`_ to their
+ <https://www.openssl.org/docs/man1.1.0/ssl/SSL_CTX_sess_number.html>`_ to their
numeric values. For example, here is the total number of hits and misses
in the session cache since the context was created::