TLS negotation between mitmproxy and a server is about to start. An addon is expected to initialize data.ssl_conn. (by default, this is done by `mitmproxy.addons.tlsconfig`)
| 193 | |
| 194 | @dataclass |
| 195 | class TlsStartServerHook(StartHook): |
| 196 | """ |
| 197 | TLS negotation between mitmproxy and a server is about to start. |
| 198 | |
| 199 | An addon is expected to initialize data.ssl_conn. |
| 200 | (by default, this is done by `mitmproxy.addons.tlsconfig`) |
| 201 | """ |
| 202 | |
| 203 | data: TlsData |
| 204 | |
| 205 | |
| 206 | @dataclass |
no outgoing calls
searching dependent graphs…