Wrapped socket and whether the connection is verified after the TLS handshake
| 889 | |
| 890 | |
| 891 | class _WrappedAndVerifiedSocket(typing.NamedTuple): |
| 892 | """ |
| 893 | Wrapped socket and whether the connection is |
| 894 | verified after the TLS handshake |
| 895 | """ |
| 896 | |
| 897 | socket: ssl.SSLSocket | SSLTransport |
| 898 | is_verified: bool |
| 899 | |
| 900 | |
| 901 | def _ssl_wrap_socket_and_match_hostname( |
no outgoing calls
no test coverage detected