(self)
| 4366 | self.assertIs(stats['compression'], None) |
| 4367 | |
| 4368 | def test_legacy_server_connect(self): |
| 4369 | client_context, server_context, hostname = testing_context() |
| 4370 | client_context.options |= ssl.OP_LEGACY_SERVER_CONNECT |
| 4371 | server_params_test(client_context, server_context, |
| 4372 | chatty=True, connectionchatty=True, |
| 4373 | sni_name=hostname) |
| 4374 | |
| 4375 | def test_no_legacy_server_connect(self): |
| 4376 | client_context, server_context, hostname = testing_context() |
nothing calls this directly
no test coverage detected