(self, protocol_factory, sock,
sslcontext=None, server=None, backlog=100,
ssl_handshake_timeout=constants.SSL_HANDSHAKE_TIMEOUT,
ssl_shutdown_timeout=constants.SSL_SHUTDOWN_TIMEOUT, context=None)
| 158 | exc_info=True) |
| 159 | |
| 160 | def _start_serving(self, protocol_factory, sock, |
| 161 | sslcontext=None, server=None, backlog=100, |
| 162 | ssl_handshake_timeout=constants.SSL_HANDSHAKE_TIMEOUT, |
| 163 | ssl_shutdown_timeout=constants.SSL_SHUTDOWN_TIMEOUT, context=None): |
| 164 | self._add_reader(sock.fileno(), self._accept_connection, |
| 165 | protocol_factory, sock, sslcontext, server, backlog, |
| 166 | ssl_handshake_timeout, ssl_shutdown_timeout, context) |
| 167 | |
| 168 | def _accept_connection( |
| 169 | self, protocol_factory, sock, |
nothing calls this directly
no test coverage detected