Signed-off-by: Karin Nilsson <[email protected]> --- epan/dissectors/packet-tipc.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/epan/dissectors/packet-tipc.c b/epan/dissectors/packet-tipc.c index 949cdf3..864d789 100644 --- a/epan/dissectors/packet-tipc.c +++ b/epan/dissectors/packet-tipc.c @@ -28,7 +28,7 @@ * Protocol ref: * http://tipc.sourceforge.net/ */ - +#define TIPC_UDP_DEFAULT_PORT 54711 #ifdef HAVE_CONFIG_H # include "config.h" @@ -2954,6 +2954,7 @@ proto_reg_handoff_tipc(void) data_handle = find_dissector("data"); dissector_add_uint("ethertype", ETHERTYPE_TIPC, tipc_handle); + dissector_add_uint("udp.port", TIPC_UDP_DEFAULT_PORT, tipc_handle); inited = TRUE; } else { -- 1.7.5.4 ___________________________________________________________________________ Sent via: Wireshark-dev mailing list <[email protected]> Archives: http://www.wireshark.org/lists/wireshark-dev Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev mailto:[email protected]?subject=unsubscribe
