aboutsummaryrefslogtreecommitdiff
path: root/libbpf-tools/tcpstates.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbpf-tools/tcpstates.c')
-rw-r--r--libbpf-tools/tcpstates.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libbpf-tools/tcpstates.c b/libbpf-tools/tcpstates.c
index 3e0bd353..8f5d6a35 100644
--- a/libbpf-tools/tcpstates.c
+++ b/libbpf-tools/tcpstates.c
@@ -65,14 +65,14 @@ const char argp_program_doc[] =
" tcpstates -D 80 # only trace remote port 80\n";
static const struct argp_option opts[] = {
- { "verbose", 'v', NULL, 0, "Verbose debug output" },
- { "timestamp", 'T', NULL, 0, "Include timestamp on output" },
- { "ipv4", '4', NULL, 0, "Trace IPv4 family only" },
- { "ipv6", '6', NULL, 0, "Trace IPv6 family only" },
- { "wide", 'w', NULL, 0, "Wide column output (fits IPv6 addresses)" },
- { "localport", 'L', "LPORT", 0, "Comma-separated list of local ports to trace." },
- { "remoteport", 'D', "DPORT", 0, "Comma-separated list of remote ports to trace." },
- { NULL, 'h', NULL, OPTION_HIDDEN, "Show the full help" },
+ { "verbose", 'v', NULL, 0, "Verbose debug output", 0 },
+ { "timestamp", 'T', NULL, 0, "Include timestamp on output", 0 },
+ { "ipv4", '4', NULL, 0, "Trace IPv4 family only", 0 },
+ { "ipv6", '6', NULL, 0, "Trace IPv6 family only", 0 },
+ { "wide", 'w', NULL, 0, "Wide column output (fits IPv6 addresses)", 0 },
+ { "localport", 'L', "LPORT", 0, "Comma-separated list of local ports to trace.", 0 },
+ { "remoteport", 'D', "DPORT", 0, "Comma-separated list of remote ports to trace.", 0 },
+ { NULL, 'h', NULL, OPTION_HIDDEN, "Show the full help", 0 },
{},
};