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>
This commit is contained in:
Pascal Quantin 2017-10-19 10:35:02 +02:00 committed by Michael Mann
parent d291d1a423
commit 15c4382f17
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}