aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-wlccp.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-wlccp.c')
-rw-r--r--epan/dissectors/packet-wlccp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-wlccp.c b/epan/dissectors/packet-wlccp.c
index 0a0ac2b669..b9bc260cf8 100644
--- a/epan/dissectors/packet-wlccp.c
+++ b/epan/dissectors/packet-wlccp.c
@@ -69,7 +69,7 @@ void proto_reg_handoff_wlccp(void);
/* The UDP port that WLCCP is expected to ride on */
/* WLCCP also uses an LLC OUI type and an ethertype */
-#define WLCCP_UDP_PORT 2887
+#define WLCCP_UDP_PORT 2887 /* Not IANA registered */
/* SAP is 2-bit version and 6-bit Type */
@@ -4114,7 +4114,7 @@ proto_reg_handoff_wlccp(void)
wlccp_handle = create_dissector_handle(dissect_wlccp, proto_wlccp);
dissector_add_uint("ethertype", ETHERTYPE_WLCCP, wlccp_handle);
- dissector_add_uint("udp.port", WLCCP_UDP_PORT, wlccp_handle);
+ dissector_add_uint_with_preference("udp.port", WLCCP_UDP_PORT, wlccp_handle);
dissector_add_uint("llc.wlccp_pid", 0x0000, wlccp_handle);
}