From b9bda7bebd922c1ac67d048f054f396ada06d12b Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Wed, 18 Nov 2009 21:31:15 +0100 Subject: [wireshark] Fix decoding of ipacc MDCX messages - Rename BIND to CRCX - Rename CONNECT to MDCX - Add break to properly decode the MDCX RSL packets --- wireshark/rsl-ipaccess.patch | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'wireshark') diff --git a/wireshark/rsl-ipaccess.patch b/wireshark/rsl-ipaccess.patch index c4b1f6133..36c09c57b 100644 --- a/wireshark/rsl-ipaccess.patch +++ b/wireshark/rsl-ipaccess.patch @@ -136,20 +136,20 @@ Index: wireshark/epan/dissectors/packet-rsl.c + { 0x60, "ip.access MEASurement PREPROCessing DeFauLT" }, + { 0x61, "ip.access HANDOover CANDidate ENQuiry" }, + { 0x62, "ip.access HANDOover CANDidate RESPonse" }, -+ { 0x70, "ip.access BIND" }, -+ { 0x71, "ip.access BIND ACK" }, -+ { 0x72, "ip.access BIND NACK" }, -+ { 0x73, "ip.access CONNECT" }, -+ { 0x74, "ip.access CONNECT ACK" }, -+ { 0x75, "ip.access CONNECT NACK" }, -+ { 0x76, "ip.access DISCONNECT INDication" }, -+ { 0x77, "ip.access DISCONNECT" }, -+ { 0x78, "ip.access DISCONNECT ACK" }, -+ { 0x79, "ip.access DISCONNECT NACK" }, ++ { 0x70, "ip.access CRCX" }, ++ { 0x71, "ip.access CRCX ACK" }, ++ { 0x72, "ip.access CRCX NACK" }, ++ { 0x73, "ip.access MDCX" }, ++ { 0x74, "ip.access MDCX ACK" }, ++ { 0x75, "ip.access MDCX NACK" }, ++ { 0x76, "ip.access DLCX INDication" }, ++ { 0x77, "ip.access DLCX" }, ++ { 0x78, "ip.access DLCX ACK" }, ++ { 0x79, "ip.access DLCX NACK" }, { 0, NULL } }; -@@ -372,10 +468,10 @@ +@@ -372,10 +468,10 @@ static const value_string rsl_msg_type_vals[] = { #define RSL_IE_MESSAGE_ID 28 #define RSL_IE_SYS_INFO_TYPE 30 @@ -427,6 +427,7 @@ Index: wireshark/epan/dissectors/packet-rsl.c + case RSL_IE_IPAC_CONN_ID: + proto_tree_add_item(ie_tree, hf_rsl_conn_id, tvb, + offset, len, FALSE); ++ break; + case RSL_IE_IPAC_CONN_STAT: + proto_tree_add_item(ie_tree, hf_rsl_cstat_tx_pkts, tvb, + offset, 4, FALSE); -- cgit v1.2.3