Message Ieee80211TwoAddressFrame

File: NetworkInterfaces/Ieee80211/Mac/Ieee80211Frame.msg

C++ definition: click here

Format of a 802.11 frame with address1 and address2 present

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.

Ieee80211TwoAddressFrame Ieee80211RTSFrame Ieee80211DataOrMgmtFrame Ieee80211OneAddressFrame

Extends:

Ieee80211OneAddressFrame

Format of a 802.11 frame with address1 present, like ACK and CTS

Known subclasses:

Ieee80211RTSFrame

Format of the 802.11 RTS frame

Ieee80211DataOrMgmtFrame

Common base class for 802.11 data and management frames

Fields:

Name Type Description
byteLength
transmitterAddress MACAddress

aka address2

Source code:

message Ieee80211TwoAddressFrame extends Ieee80211OneAddressFrame
{
    fields:
        byteLength = 20;
        MACAddress transmitterAddress; // aka address2
};