Class Ieee802Ctrl

File: NetworkInterfaces/Contract/Ieee802Ctrl.msg

C++ definition: click here

Control structure for communication between LLC and higher layers

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.

Fields:

Name Type Description
src MACAddress

src MAC address (can be left empty when sending)

dest MACAddress

dest MAC address

etherType int

used with EthernetIIFrame

ssap int

used with IEEE 802 LLC (see EtherFrameWithLLC)

dsap int

used with IEEE 802 LLC (see EtherFrameWithLLC)

pauseUnits int

used with IEEE802CTRL_SENDPAUSE

inputPort int

convenience field, used between IPv6 and IPv6ND

Source code:

class Ieee802Ctrl
{
    fields:
        MACAddress src;  // src MAC address (can be left empty when sending)
        MACAddress dest; // dest MAC address
        int etherType;   // used with EthernetIIFrame
        int ssap;        // used with IEEE 802 LLC (see EtherFrameWithLLC)
        int dsap;        // used with IEEE 802 LLC (see EtherFrameWithLLC)
        int pauseUnits;  // used with IEEE802CTRL_SENDPAUSE
        int inputPort;   // convenience field, used between IPv6 and IPv6ND
};