NED File src/inet/linklayer/ieee80211/mac/blockack/OriginatorBlockAckAgreementPolicy.ned
Name | Type | Description |
---|---|---|
OriginatorBlockAckAgreementPolicy | simple module |
Implements the default originator block ACK agreement policy |
Source code
// // Copyright (C) 2016 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.linklayer.ieee80211.mac.blockack; import inet.linklayer.ieee80211.mac.contract.IOriginatorBlockAckAgreementPolicy; // // Implements the default originator block ACK agreement policy // simple OriginatorBlockAckAgreementPolicy like IOriginatorBlockAckAgreementPolicy { parameters: string originatorAckPolicyModule; 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"); }