(flow: HTTPFlow)
| 1015 | req_headers_hook_1 = http.HttpRequestHeadersHook(flow1) |
| 1016 | |
| 1017 | def kill(flow: HTTPFlow): |
| 1018 | # Can't use flow.kill() here because that currently still depends on a reply object. |
| 1019 | flow.error = Error(Error.KILLED_MESSAGE) |
| 1020 | |
| 1021 | server = Placeholder(Server) |
| 1022 | data_req1 = Placeholder(bytes) |
nothing calls this directly
no test coverage detected
searching dependent graphs…