MCPcopy
hub / github.com/mitmproxy/mitmproxy / HTTPFlow

Interface HTTPFlow

web/src/js/flow.ts:20–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18export type Flow = HTTPFlow | TCPFlow | UDPFlow | DNSFlow;
19
20export interface HTTPFlow extends _Flow {
21 type: "http";
22 request: HTTPRequest;
23 response?: HTTPResponse;
24 websocket?: WebSocketData;
25}
26
27export interface TCPFlow extends _Flow {
28 type: "tcp";

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…