TLS negotation between mitmproxy and a client is about to start. An addon is expected to initialize data.ssl_conn. (by default, this is done by `mitmproxy.addons.tlsconfig`)
| 181 | |
| 182 | @dataclass |
| 183 | class TlsStartClientHook(StartHook): |
| 184 | """ |
| 185 | TLS negotation between mitmproxy and a client is about to start. |
| 186 | |
| 187 | An addon is expected to initialize data.ssl_conn. |
| 188 | (by default, this is done by `mitmproxy.addons.tlsconfig`) |
| 189 | """ |
| 190 | |
| 191 | data: TlsData |
| 192 | |
| 193 | |
| 194 | @dataclass |
no outgoing calls
searching dependent graphs…