Ieee80211Delba

Namespace inet::ieee80211

Ieee80211Delba

packet

8.5.5.4 DELBA frame format

Extends

Name Type Description
Ieee80211ActionFrame (unknown -- not in documented files)

Fields

Name Type Description
category

byteLength TODO

blockAckAction int

representing DELBA

initiator bool

DELBA Parameter Set It is set to 1 to indicate the originator and is set to 0 to indicate the recipient. The Initiator subfield indicates if the originator or the recipient of the data is sending this frame.

tid int

The TID subfield indicates the TSID or the UP for which the Block Ack has been originally set up.

reasonCode int

This Reason Code field is used to indicate the reason that an unsolicited notification management frame of type Disassociation, Deauthentication, DELTS, DELBA, DLS Teardown, or Mesh Peering Close was generated.

Source code

//
// 8.5.5.4 DELBA frame format
//
packet Ieee80211Delba extends Ieee80211ActionFrame
{
    // byteLength TODO
    category = 3;
    int blockAckAction = 2; // representing DELBA

    // DELBA Parameter Set
    // It is set to 1 to indicate the originator and is set to 0 to indicate the recipient.
    // The Initiator subfield indicates if the originator or the recipient of the data is sending this frame.
    bool initiator;

    // The TID subfield indicates the TSID or the UP for which the Block Ack has been originally set up.
    int tid;

    // This Reason Code field is used to indicate the reason that an unsolicited notification management frame of
    // type Disassociation, Deauthentication, DELTS, DELBA, DLS Teardown, or Mesh Peering Close was
    // generated.
    int reasonCode;
}



File: src/inet/linklayer/ieee80211/mac/Ieee80211Frame.msg