MCPcopy
hub / github.com/mitmproxy/mitmproxy / _Flow

Interface _Flow

web/src/js/flow.ts:4–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2Type definitions for flows. Sync with mitmproxy/tools/web/app.py.
3 */
4interface _Flow {
5 id: string;
6 intercepted: boolean;
7 is_replay: "request" | "response" | undefined;
8 type: string;
9 modified: boolean;
10 marked: string;
11 comment: string;
12 timestamp_created: number;
13 client_conn: Client;
14 server_conn?: Server;
15 error?: Error;
16}
17
18export type Flow = HTTPFlow | TCPFlow | UDPFlow | DNSFlow;
19

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…