Ethernet frame with 802.3 LLC header.
Header length: src(6)+dest(6)+length(2)+ssap(1)+dsap(1)+control(1) = 17 bytes
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.
EtherFrame (packet) |
Common base class for classes representing Ethernet II and 802.3 frame types, containing their common header fields. |
Name | Type | Description |
---|---|---|
ssap | int | |
control | int | |
dest | MACAddress | |
src | MACAddress |
MessageId id; -- uncomment for tracing frames |
dsap | int |
// // Ethernet frame with 802.3 LLC header. // // Header length: src(6)+dest(6)+length(2)+ssap(1)+dsap(1)+control(1) = 17 bytes // packet EtherFrameWithLLC extends EtherFrame { int ssap; int dsap; int control; }