Kaydet (Commit) aea8d2e8 authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

Use correct parameter name

üst e2e03139
...@@ -508,7 +508,7 @@ end, and use :func:`wrap_socket` to create a server-side SSL context for it:: ...@@ -508,7 +508,7 @@ end, and use :func:`wrap_socket` to create a server-side SSL context for it::
server_side=True, server_side=True,
certfile="mycertfile", certfile="mycertfile",
keyfile="mykeyfile", keyfile="mykeyfile",
ssl_protocol=ssl.PROTOCOL_TLSv1) ssl_version=ssl.PROTOCOL_TLSv1)
deal_with_client(connstream) deal_with_client(connstream)
Then you'd read data from the ``connstream`` and do something with it till you are finished with the client (or the client is finished with you):: Then you'd read data from the ``connstream`` and do something with it till you are finished with the client (or the client is finished with you)::
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment