aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fp_mux.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2017-10-18 21:15:15 +0200
committerAnders Broman <a.broman58@gmail.com>2017-10-18 21:15:32 +0000
commitb580bbfdd275e6151e2d67d8a03da6c9dae0b36b (patch)
treedfaf01482e84f8cda46bb53e5a45843fff9f9105 /epan/dissectors/packet-fp_mux.c
parente5755a62130246e6f5e5163f766579084a58f2dc (diff)
FP Mux: do not register UDP port 44955 by default
It is not registered by IANA Change-Id: Iff462ee0a2366ae72681b34e4e7e107c8c479822 Reviewed-on: https://code.wireshark.org/review/23976 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-fp_mux.c')
-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 751b8f0b2f..a73cc3b67d 100644
--- a/epan/dissectors/packet-fp_mux.c
+++ b/epan/dissectors/packet-fp_mux.c
@@ -375,7 +375,7 @@ proto_register_fp_mux(void)
void
proto_reg_handoff_fp_mux(void)
{
- dissector_add_uint_range_with_preference("udp.port", "44955", fp_mux_handle);
+ 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);
}