(
self, rawsock, protocol, sslcontext, waiter=None,
*, server_side=False, server_hostname=None,
extra=None, server=None,
ssl_handshake_timeout=constants.SSL_HANDSHAKE_TIMEOUT,
ssl_shutdown_timeout=constants.SSL_SHUTDOWN_TIMEOUT,
context=None,
)
| 73 | extra, server, context=context) |
| 74 | |
| 75 | def _make_ssl_transport( |
| 76 | self, rawsock, protocol, sslcontext, waiter=None, |
| 77 | *, server_side=False, server_hostname=None, |
| 78 | extra=None, server=None, |
| 79 | ssl_handshake_timeout=constants.SSL_HANDSHAKE_TIMEOUT, |
| 80 | ssl_shutdown_timeout=constants.SSL_SHUTDOWN_TIMEOUT, |
| 81 | context=None, |
| 82 | ): |
| 83 | self._ensure_fd_no_transport(rawsock) |
| 84 | ssl_protocol = sslproto.SSLProtocol( |
| 85 | self, protocol, sslcontext, waiter, |
| 86 | server_side, server_hostname, |
| 87 | ssl_handshake_timeout=ssl_handshake_timeout, |
| 88 | ssl_shutdown_timeout=ssl_shutdown_timeout, |
| 89 | ) |
| 90 | _SelectorSocketTransport(self, rawsock, ssl_protocol, |
| 91 | extra=extra, server=server, context=context) |
| 92 | return ssl_protocol._app_transport |
| 93 | |
| 94 | def _make_datagram_transport(self, sock, protocol, |
| 95 | address=None, waiter=None, extra=None): |
no test coverage detected