Message EtherFrameWithLLC

File: NetworkInterfaces/Ethernet/EtherFrame.msg

C++ definition: click here

Ethernet frame with 802.3 LLC header.

Header length: src(6)+dest(6)+length(2)+ssap(1)+dsap(1)+control(1) = 17 bytes

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

EtherFrame

Common base class for classes representing Ethernet II and 802.3 frame types, containing their common header fields.

Fields:

Name Type Description
ssap int
dsap int
control int

Source code:

message EtherFrameWithLLC extends EtherFrame
{
    fields:
        int ssap;
        int dsap;
        int control;
};