From ba444861ed0ef1d5c3a9d20e9a8c6207b48aa55a Mon Sep 17 00:00:00 2001 From: Daniel Lamando Date: Sun, 6 Aug 2023 00:38:48 +0200 Subject: [PATCH] Revert intentional bug I didn't intend to commit --- lib/spdy-transport/connection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/spdy-transport/connection.ts b/lib/spdy-transport/connection.ts index cd5ef62..fe884bc 100644 --- a/lib/spdy-transport/connection.ts +++ b/lib/spdy-transport/connection.ts @@ -247,7 +247,7 @@ export class Connection extends EventEmitter { const tees = {inbound: directions.inbound.tee(), outbound: directions.outbound.tee()}; directions = {inbound: tees.inbound[0], outbound: tees.outbound[0]}; // TODO: 6121 for SPDY or whatever port wireshark checks for HTTP2, or just frame properly - const text2pcap = new Deno.Command('test2pcap', { + const text2pcap = new Deno.Command('text2pcap', { args: ['-D', '-T', '6121,10000', '-t', 'ISO', '-', pcapOutPath], stdin: 'piped', stdout: 'inherit',