aboutsummaryrefslogtreecommitdiffstats
path: root/wireshark/rsl-ipaccess.patch
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2009-11-18 21:31:15 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-11-19 09:40:03 +0100
commitb9bda7bebd922c1ac67d048f054f396ada06d12b (patch)
treee69a9b05b59d53af46ef9d997e7c9ec32724140a /wireshark/rsl-ipaccess.patch
parent25b1e25dd400dda565c59a05c9abcbf08c162080 (diff)
[wireshark] Fix decoding of ipacc MDCX messages
- Rename BIND to CRCX - Rename CONNECT to MDCX - Add break to properly decode the MDCX RSL packets
Diffstat (limited to 'wireshark/rsl-ipaccess.patch')
-rw-r--r--wireshark/rsl-ipaccess.patch23
1 files changed, 12 insertions, 11 deletions
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);