Expand a comment.

Change-Id: I9d749c43727291768a36adc0c1956f73a5374f91
Reviewed-on: https://code.wireshark.org/review/13283
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2016-01-13 23:51:41 -08:00
parent 8572c6abe7
commit 9a19c14062
1 changed files with 10 additions and 1 deletions

View File

@ -982,7 +982,16 @@ dissect_reassembled_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
}
else if (pntoh16(octet) == 0x00)
{
/* assume vc muxed bridged ethernet */
/*
* Assume VC multiplexed bridged Ethernet.
* Whether there's an FCS is an option negotiated
* over the VC, so we call the "do heuristic checks
* to see if there's an FCS" version of the Ethernet
* dissector.
*
* See RFC 2684 section 6.2 "VC Multiplexing of Bridged
* Protocols".
*/
proto_tree_add_item(tree, hf_atm_padding, tvb, 0, 2, ENC_NA);
next_tvb = tvb_new_subset_remaining(tvb, 2);
call_dissector(eth_handle, next_tvb, pinfo, tree);