[wireshark] Fix decoding of ipacc MDCX messages

- Rename BIND to CRCX
- Rename CONNECT to MDCX
- Add break to properly decode the MDCX RSL packets
This commit is contained in:
Holger Hans Peter Freyther 2009-11-18 21:31:15 +01:00
parent 25b1e25dd4
commit b9bda7bebd
1 changed files with 12 additions and 11 deletions

View File

@ -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);