summaryrefslogtreecommitdiffstats
path: root/Lib/ssl.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-11 00:25:36 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-11 00:25:36 (GMT)
commit5c89b4ec55bc7ebe799da296e01544a5bcdc4250 (patch)
treed220d323f041f4d173d9b799c8fc2c021b05d349 /Lib/ssl.py
parentdf3abec2c98b84c3ec516857cb84bf3be9e0b773 (diff)
downloadcpython-5c89b4ec55bc7ebe799da296e01544a5bcdc4250.zip
cpython-5c89b4ec55bc7ebe799da296e01544a5bcdc4250.tar.gz
cpython-5c89b4ec55bc7ebe799da296e01544a5bcdc4250.tar.bz2
Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket().
Original patch by Jeff McNeil.
Diffstat (limited to 'Lib/ssl.py')
-rw-r--r--Lib/ssl.py15
1 files changed, 5 insertions, 10 deletions
diff --git a/Lib/ssl.py b/Lib/ssl.py
index 8137231..e901b64 100644
--- a/Lib/ssl.py
+++ b/Lib/ssl.py
@@ -491,16 +491,11 @@ class SSLSocket(socket):
SSL channel, and the address of the remote client."""
newsock, addr = socket.accept(self)
- return (SSLSocket(sock=newsock,
- keyfile=self.keyfile, certfile=self.certfile,
- server_side=True,
- cert_reqs=self.cert_reqs,
- ssl_version=self.ssl_version,
- ca_certs=self.ca_certs,
- ciphers=self.ciphers,
- do_handshake_on_connect=
- self.do_handshake_on_connect),
- addr)
+ newsock = self.context.wrap_socket(newsock,
+ do_handshake_on_connect=self.do_handshake_on_connect,
+ suppress_ragged_eofs=self.suppress_ragged_eofs,
+ server_side=True)
+ return newsock, addr
def __del__(self):
# sys.stderr.write("__del__ on %s\n" % repr(self))