Namespace inet
EtherFrameWithLLC
packetEthernet frame with 802.3 LLC header.
Header length: src(6)+dest(6)+length(2)+ssap(1)+dsap(1)+control(1) + FCS(4) = 21 bytes
Extends
Name | Type | Description |
---|---|---|
EtherFrame | (unknown -- not in documented files) |
Fields
Name | Type | Description |
---|---|---|
byteLength | ||
dsap | int | |
ssap | int | |
control | int |
Source code
// // Ethernet frame with 802.3 LLC header. // // Header length: src(6)+dest(6)+length(2)+ssap(1)+dsap(1)+control(1) + FCS(4) = 21 bytes // packet EtherFrameWithLLC extends EtherFrame { byteLength = ETHER_MAC_FRAME_BYTES + ETHER_LLC_HEADER_LENGTH; int dsap; int ssap; int control; }File: src/inet/linklayer/ethernet/EtherFrame.msg