From Chris Wulff:

Minor bugfixes to packet-msrp.c and packet-mrp-mvrp.c

Major updates to packet-ieee17221.c

Changes to ieee17221.c update dissector from draft revision 18 / 19 code to
draft revision 21.

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7779

svn path=/trunk/; revision=45419
This commit is contained in:
Anders Broman 2012-10-09 08:49:40 +00:00
parent eb618abad9
commit de222a1b5a
3 changed files with 2625 additions and 1863 deletions

File diff suppressed because it is too large Load Diff

View File

@ -562,11 +562,11 @@ dissect_msrp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
/* Add Domain components to First Value tree */
proto_tree_add_item(first_value_tree, hf_msrp_sr_class_id, tvb,
MSRP_FIRST_VALUE_GROUP_OFFSET + msg_offset, 1, ENC_BIG_ENDIAN);
MSRP_FIRST_VALUE_GROUP_OFFSET + msg_offset + vect_offset, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(first_value_tree, hf_msrp_sr_class_priority, tvb,
MSRP_FIRST_VALUE_GROUP_OFFSET + msg_offset + 1, 1, ENC_BIG_ENDIAN);
MSRP_FIRST_VALUE_GROUP_OFFSET + msg_offset + vect_offset + 1, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(first_value_tree, hf_msrp_sr_class_vid, tvb,
MSRP_FIRST_VALUE_GROUP_OFFSET + msg_offset + 2, 2, ENC_BIG_ENDIAN);
MSRP_FIRST_VALUE_GROUP_OFFSET + msg_offset + vect_offset + 2, 2, ENC_BIG_ENDIAN);
/* Decode three packed events. */
offset = dissect_msrp_three_packed_event(vect_attr_tree, tvb,

View File

@ -318,7 +318,7 @@ dissect_mvrp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
/* Add VLAN components to First Value tree */
proto_tree_add_item(first_value_tree, hf_mvrp_vid, tvb,
MVRP_FIRST_VALUE_GROUP_OFFSET + msg_offset, 2, ENC_BIG_ENDIAN);
MVRP_FIRST_VALUE_GROUP_OFFSET + msg_offset + vect_offset, 2, ENC_BIG_ENDIAN);
/* Decode three packed events. */
offset = dissect_mvrp_three_packed_event(vect_attr_tree, tvb,