aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2017-10-19 10:35:02 +0200
committerMichael Mann <mmann78@netscape.net>2017-10-19 11:33:14 +0000
commit15c4382f1706512fc5f4695b7d30ec4a195f2ced (patch)
tree257d8c86bc50b57ab65f767b50be94fd7bfff6aa /epan
parentd291d1a4239ed744c65b64d62aebaae88ceed552 (diff)
FP Mux: disable heuristic dissector by default
Without any specific pattern, it is too weak and catch a lot of unrelated UDP packets. Change-Id: Iacac5ae65de59da1d46a06184517834edd91eb18 Reviewed-on: https://code.wireshark.org/review/23984 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-fp_mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-fp_mux.c b/epan/dissectors/packet-fp_mux.c
index 31bb26f792..6be6b726f4 100644
--- a/epan/dissectors/packet-fp_mux.c
+++ b/epan/dissectors/packet-fp_mux.c
@@ -382,7 +382,7 @@ void
proto_reg_handoff_fp_mux(void)
{
dissector_add_uint_range_with_preference("udp.port", "", fp_mux_handle);
- heur_dissector_add("udp", heur_dissect_fp_mux, "FP Mux over UDP", "fp_mux_udp", proto_fp_mux, HEURISTIC_ENABLE);
+ heur_dissector_add("udp", heur_dissect_fp_mux, "FP Mux over UDP", "fp_mux_udp", proto_fp_mux, HEURISTIC_DISABLE);
}