RecipientBlockAckAgreementPolicy

Package: inet.linklayer.ieee80211.mac.blockack

RecipientBlockAckAgreementPolicy

simple module

C++ definition

Implements the default recipient block ACK agreement policy.

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends

Name Type Description
SimpleModule simple module

Base module for all INET simple modules.

Parameters

Name Type Default value Description
displayStringTextFormat string ""

Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information

delayedAckPolicySupported bool false
aMsduSupported bool true
maximumAllowedBufferSize int 64
blockAckTimeoutValue double 0s

0 means that it depends on the originator

Properties

Name Value Description
class RecipientBlockAckAgreementPolicy
display i=block/control

Source code

//
// Implements the default recipient block ACK agreement policy.
//
simple RecipientBlockAckAgreementPolicy extends SimpleModule like IRecipientBlockAckAgreementPolicy
{
    parameters:
        @class(RecipientBlockAckAgreementPolicy);
        bool delayedAckPolicySupported = default(false);
        bool aMsduSupported = default(true);
        int maximumAllowedBufferSize = default(64);
        double blockAckTimeoutValue @unit(s) = default(0s); // 0 means that it depends on the originator
        @display("i=block/control");
}

File: src/inet/linklayer/ieee80211/mac/blockack/RecipientBlockAckAgreementPolicy.ned