(self, connection, **kwargs)
| 943 | |
| 944 | class TestIOStreamSSL(TestIOStreamMixin): |
| 945 | def _make_server_iostream(self, connection, **kwargs): |
| 946 | ssl_ctx = ssl_options_to_context(_server_ssl_options(), server_side=True) |
| 947 | connection = ssl_ctx.wrap_socket( |
| 948 | connection, |
| 949 | server_side=True, |
| 950 | do_handshake_on_connect=False, |
| 951 | ) |
| 952 | return SSLIOStream(connection, **kwargs) |
| 953 | |
| 954 | def _make_client_iostream(self, connection, **kwargs): |
| 955 | return SSLIOStream( |
nothing calls this directly
no test coverage detected