(sock, conf)
| 283 | |
| 284 | |
| 285 | def ssl_wrap_socket(sock, conf): |
| 286 | return ssl_context(conf).wrap_socket(sock, |
| 287 | server_side=True, |
| 288 | suppress_ragged_eofs=conf.suppress_ragged_eofs, |
| 289 | do_handshake_on_connect=conf.do_handshake_on_connect) |
| 290 | |
| 291 | |
| 292 | def get_negotiated_protocol(ssl_socket): |
nothing calls this directly
no test coverage detected