Mitmproxy has received a TLS ClientHello message. This hook decides whether a server connection is needed to negotiate TLS with the client (data.establish_server_tls_first)
| 169 | |
| 170 | @dataclass |
| 171 | class TlsClienthelloHook(StartHook): |
| 172 | """ |
| 173 | Mitmproxy has received a TLS ClientHello message. |
| 174 | |
| 175 | This hook decides whether a server connection is needed |
| 176 | to negotiate TLS with the client (data.establish_server_tls_first) |
| 177 | """ |
| 178 | |
| 179 | data: ClientHelloData |
| 180 | |
| 181 | |
| 182 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…