aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/packet-babel.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-babel.c b/epan/dissectors/packet-babel.c
index 362f211f14..84a83d9e94 100644
--- a/epan/dissectors/packet-babel.c
+++ b/epan/dissectors/packet-babel.c
@@ -57,7 +57,8 @@ static int hf_babel_message_hopcount = -1;
static gint ett_subtree = -1;
-#define UDP_PORT_BABEL 6697
+#define UDP_PORT_BABEL 6696
+#define UDP_PORT_BABEL_OLD 6697
#define MESSAGE_PAD1 0
#define MESSAGE_PADN 1
@@ -510,4 +511,5 @@ proto_reg_handoff_babel(void)
babel_handle = new_create_dissector_handle(dissect_babel, proto_babel);
dissector_add_uint("udp.port", UDP_PORT_BABEL, babel_handle);
+ dissector_add_uint("udp.port", UDP_PORT_BABEL_OLD, babel_handle);
}