Files
ports/net/tcpflow/patches/patch-src_tcpflow_cpp
jca 07167a02aa Don't generate report.xml when running tcpflow -c
Patch proposed upstream to restore the default behavior of the previous
version we had in tree.  From maintainer Kirill A. Korinsky
2024-06-10 18:51:59 +00:00

13 lines
427 B
Plaintext

https://github.com/simsong/tcpflow/pull/260
Index: src/tcpflow.cpp
--- src/tcpflow.cpp.orig
+++ src/tcpflow.cpp
@@ -632,6 +632,7 @@ int main(int argc, char *argv[])
demux.opt.suppress_header = 1; DEBUG(10) ("packet header dump suppressed");
break;
case 'c':
+ opt_enable_report = false;
demux.opt.console_output = true; DEBUG(10) ("printing packets to console only");
break;
case '0':