diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2024-10-21 18:26:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-21 18:26:28 +0200 |
commit | a55d8d95bcb935fea48a6da751bf7c94eed123cb (patch) | |
tree | cdf46cc9c5a73b73501c09073beb25ec64dfee04 | |
parent | 9c0e4c5450ed09b2a65d97dc27969979f5a2f48a (diff) |
ndpiReader: fix command line options used by wireshark (#2605)
-rw-r--r-- | example/ndpiReader.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index 00b312a68..0de290724 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -699,9 +699,9 @@ static void help(u_int long_help) { " -M | Memory allocation stats on data-path (only by the library).\n" " | It works only on single-thread configuration\n" " --openvp_heuristics | Enable OpenVPN heuristics.\n" - " | It is a shortcut to --cfg=openvpn.heuristics,0x01\n" + " | It is a shortcut to --cfg=openvpn,dpi.heuristics,0x01\n" " --tls_heuristics | Enable TLS heuristics.\n" - " | It is a shortcut to --cfg=tls.heuristics,0x07\n" + " | It is a shortcut to --cfg=tls,dpi.heuristics,0x07\n" " --cfg=proto,param,value | Configure the specific attribute of this protocol\n" , human_readeable_string_len, @@ -922,7 +922,7 @@ void extcap_config() { ndpi_free(protos); argidx++; - printf("arg {number=%d}{call=--openvp_heuristics}{display=Enable Obfuscated OpenVPN heuristics}" + printf("arg {number=%d}{call=--openvpn_heuristics}{display=Enable Obfuscated OpenVPN heuristics}" "{tooltip=Enable Obfuscated OpenVPN heuristics}{type=boolflag}{group=Options}\n", argidx++); printf("arg {number=%d}{call=--tls_heuristics}{display=Enable Obfuscated TLS heuristics}" "{tooltip=Enable Obfuscated TLS heuristics}{type=boolflag}{group=Options}\n", argidx++); |