mirror of
https://github.com/python/cpython.git
synced 2025-11-03 11:23:31 +00:00
Improve set_servername_callback docstring.
This commit is contained in:
parent
a596338bb8
commit
edbc18e9d0
1 changed files with 3 additions and 3 deletions
|
|
@ -2503,13 +2503,13 @@ error:
|
||||||
|
|
||||||
PyDoc_STRVAR(PySSL_set_servername_callback_doc,
|
PyDoc_STRVAR(PySSL_set_servername_callback_doc,
|
||||||
"set_servername_callback(method)\n\
|
"set_servername_callback(method)\n\
|
||||||
\
|
\n\
|
||||||
This sets a callback that will be called when a server name is provided by\n\
|
This sets a callback that will be called when a server name is provided by\n\
|
||||||
the SSL/TLS client in the SNI extension.\n\
|
the SSL/TLS client in the SNI extension.\n\
|
||||||
\
|
\n\
|
||||||
If the argument is None then the callback is disabled. The method is called\n\
|
If the argument is None then the callback is disabled. The method is called\n\
|
||||||
with the SSLSocket, the server name as a string, and the SSLContext object.\n\
|
with the SSLSocket, the server name as a string, and the SSLContext object.\n\
|
||||||
See RFC 6066 for details of the SNI");
|
See RFC 6066 for details of the SNI extension.");
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
set_servername_callback(PySSLContext *self, PyObject *args)
|
set_servername_callback(PySSLContext *self, PyObject *args)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue