A Discrete-Event Network Simulator
API
ht-operation.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 Sébastien Deronne
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Author: Sébastien Deronne <sebastien.deronne@gmail.com>
18 */
19
20#ifndef HT_OPERATION_H
21#define HT_OPERATION_H
22
23#include "ns3/wifi-information-element.h"
24
29#define MAX_SUPPORTED_MCS (77)
30
31namespace ns3
32{
33
36{
41};
42
51{
52 public:
54
55 // Implementations of pure virtual methods of WifiInformationElement
56 WifiInformationElementId ElementId() const override;
57
63 void SetPrimaryChannel(uint8_t ctrl);
69 void SetInformationSubset1(uint8_t ctrl);
75 void SetInformationSubset2(uint16_t ctrl);
81 void SetInformationSubset3(uint16_t ctrl);
90 void SetBasicMcsSet(uint64_t ctrl1, uint64_t ctrl2);
91
97 void SetSecondaryChannelOffset(uint8_t secondaryChannelOffset);
103 void SetStaChannelWidth(uint8_t staChannelWidth);
109 void SetRifsMode(uint8_t rifsMode);
110
116 void SetHtProtection(uint8_t htProtection);
122 void SetNonGfHtStasPresent(uint8_t nonGfHtStasPresent);
128 void SetObssNonHtStasPresent(uint8_t obssNonHtStasPresent);
129
135 void SetDualBeacon(uint8_t dualBeacon);
141 void SetDualCtsProtection(uint8_t dualCtsProtection);
147 void SetStbcBeacon(uint8_t stbcBeacon);
153 void SetLSigTxopProtectionFullSupport(uint8_t lSigTxopProtectionFullSupport);
159 void SetPcoActive(uint8_t pcoActive);
165 void SetPhase(uint8_t pcoPhase);
166
172 void SetRxMcsBitmask(uint8_t index);
178 void SetRxHighestSupportedDataRate(uint16_t maxSupportedRate);
184 void SetTxMcsSetDefined(uint8_t txMcsSetDefined);
190 void SetTxRxMcsSetUnequal(uint8_t txRxMcsSetUnequal);
196 void SetTxMaxNSpatialStreams(uint8_t maxTxSpatialStreams);
202 void SetTxUnequalModulation(uint8_t txUnequalModulation);
203
209 uint8_t GetPrimaryChannel() const;
215 uint8_t GetInformationSubset1() const;
221 uint16_t GetInformationSubset2() const;
227 uint16_t GetInformationSubset3() const;
233 uint64_t GetBasicMcsSet1() const;
239 uint64_t GetBasicMcsSet2() const;
240
246 uint8_t GetSecondaryChannelOffset() const;
252 uint8_t GetStaChannelWidth() const;
258 uint8_t GetRifsMode() const;
259
265 uint8_t GetHtProtection() const;
271 uint8_t GetNonGfHtStasPresent() const;
277 uint8_t GetObssNonHtStasPresent() const;
278
284 uint8_t GetDualBeacon() const;
290 uint8_t GetDualCtsProtection() const;
296 uint8_t GetStbcBeacon() const;
302 uint8_t GetLSigTxopProtectionFullSupport() const;
308 uint8_t GetPcoActive() const;
314 uint8_t GetPhase() const;
315
323 bool IsSupportedMcs(uint8_t mcs) const;
329 uint16_t GetRxHighestSupportedDataRate() const;
335 uint8_t GetTxMcsSetDefined() const;
341 uint8_t GetTxRxMcsSetUnequal() const;
347 uint8_t GetTxMaxNSpatialStreams() const;
353 uint8_t GetTxUnequalModulation() const;
354
355 private:
356 uint16_t GetInformationFieldSize() const override;
358 uint16_t DeserializeInformationField(Buffer::Iterator start, uint16_t length) override;
359
361
362 // HT Information Subset 1
365 uint8_t m_rifsMode;
367
368 // HT Information Subset 2
374
375 // HT Information Subset 3
377 uint8_t m_dualBeacon;
379 uint8_t m_stbcBeacon;
381 uint8_t m_pcoActive;
382 uint8_t m_pcoPhase;
384
385 // Basic MCS Set field
395};
396
405std::ostream& operator<<(std::ostream& os, const HtOperation& htOperation);
406
407} // namespace ns3
408
409#endif /* HT_OPERATION_H */
iterator in a Buffer instance
Definition: buffer.h:100
The HT Operation Information Element.
Definition: ht-operation.h:51
uint8_t GetTxRxMcsSetUnequal() const
Return transmit / receive MCS set unequal.
void SetObssNonHtStasPresent(uint8_t obssNonHtStasPresent)
Set the OBSS non HT STAs present.
uint8_t m_reservedInformationSubset1
reserved information subset 1
Definition: ht-operation.h:366
uint8_t GetDualBeacon() const
Return dual beacon.
void SetRifsMode(uint8_t rifsMode)
Set the RIFS mode.
Definition: ht-operation.cc:90
uint8_t GetRifsMode() const
Return the RIFS mode.
uint8_t m_obssNonHtStasPresent
OBSS NON HT STAs present.
Definition: ht-operation.h:372
void SetBasicMcsSet(uint64_t ctrl1, uint64_t ctrl2)
Set the Basic MCS Set field in the HT Operation information element.
uint8_t GetLSigTxopProtectionFullSupport() const
Return LSIG TXOP protection full support.
void SetSecondaryChannelOffset(uint8_t secondaryChannelOffset)
Set the secondary channel offset.
Definition: ht-operation.cc:78
uint8_t GetInformationSubset1() const
Return the Information Subset 1 field in the HT Operation information element.
uint8_t m_reservedInformationSubset3_1
reserved information subset 3-1
Definition: ht-operation.h:376
uint8_t m_stbcBeacon
STBC beacon.
Definition: ht-operation.h:379
uint16_t DeserializeInformationField(Buffer::Iterator start, uint16_t length) override
Deserialize information (i.e., the body of the IE, not including the Element ID and length octets)
void SetInformationSubset2(uint16_t ctrl)
Set the Information Subset 2 field in the HT Operation information element.
uint64_t GetBasicMcsSet1() const
Return the first 64 bytes of the Basic MCS Set field in the HT Operation information element.
uint16_t GetInformationFieldSize() const override
Length of serialized information (i.e., the length of the body of the IE, not including the Element I...
Definition: ht-operation.cc:66
uint8_t m_reservedInformationSubset3_2
reserved information subset 3-2
Definition: ht-operation.h:383
void SetPcoActive(uint8_t pcoActive)
Set the PCO active.
void SetTxUnequalModulation(uint8_t txUnequalModulation)
Set the transmit unequal modulation.
uint8_t m_rifsMode
RIFS mode.
Definition: ht-operation.h:365
uint8_t m_secondaryChannelOffset
secondary channel offset
Definition: ht-operation.h:363
uint8_t m_rxMcsBitmask[MAX_SUPPORTED_MCS]
receive MCS bitmask
Definition: ht-operation.h:394
uint16_t m_rxHighestSupportedDataRate
receive highest supported data rate
Definition: ht-operation.h:387
void SetInformationSubset3(uint16_t ctrl)
Set the Information Subset 3 field in the HT Operation information element.
void SetHtProtection(uint8_t htProtection)
Set the HT protection.
Definition: ht-operation.cc:96
uint8_t GetTxMcsSetDefined() const
Return transmit MCS set defined.
uint8_t m_staChannelWidth
STA channel width.
Definition: ht-operation.h:364
uint8_t GetPrimaryChannel() const
Return the Primary Channel field in the HT Operation information element.
void SetTxMaxNSpatialStreams(uint8_t maxTxSpatialStreams)
Set the transmit maximum number spatial streams.
void SerializeInformationField(Buffer::Iterator start) const override
Serialize information (i.e., the body of the IE, not including the Element ID and length octets)
uint8_t m_txUnequalModulation
transmit unequal modulation
Definition: ht-operation.h:392
uint16_t GetRxHighestSupportedDataRate() const
Return receive highest supported data rate.
void SetTxRxMcsSetUnequal(uint8_t txRxMcsSetUnequal)
Set the transmit / receive MCS set unequal.
uint8_t m_reservedMcsSet1
reserved MCS set 1
Definition: ht-operation.h:386
uint8_t m_txMaxNSpatialStreams
transmit maximum number spatial streams
Definition: ht-operation.h:391
WifiInformationElementId ElementId() const override
Get the wifi information element ID.
Definition: ht-operation.cc:60
uint8_t GetPcoActive() const
Return PCO active.
uint16_t GetInformationSubset3() const
Return the Information Subset 3 field in the HT Operation information element.
uint8_t GetStbcBeacon() const
Return STBC beacon.
uint8_t m_reservedInformationSubset2_1
reserved information subset 2-1
Definition: ht-operation.h:371
void SetDualBeacon(uint8_t dualBeacon)
Set the dual beacon.
uint8_t m_dualBeacon
dual beacon
Definition: ht-operation.h:377
uint8_t m_txMcsSetDefined
transmit MCS set defined
Definition: ht-operation.h:389
void SetNonGfHtStasPresent(uint8_t nonGfHtStasPresent)
Set the non GF HT STAs present.
uint64_t GetBasicMcsSet2() const
Return the last 64 bytes of the Basic MCS Set field in the HT Operation information element.
uint8_t m_dualCtsProtection
dual CTS protection
Definition: ht-operation.h:378
uint8_t m_lSigTxopProtectionFullSupport
L-SIG TXOP protection full support.
Definition: ht-operation.h:380
void SetTxMcsSetDefined(uint8_t txMcsSetDefined)
Set the transmit MCS set defined.
uint8_t GetHtProtection() const
Return the HT protection.
uint8_t m_reservedInformationSubset2_2
reserved information subset 2-2
Definition: ht-operation.h:373
uint8_t GetDualCtsProtection() const
Return dual CTS protection.
uint8_t m_reservedMcsSet2
reserved MCS set2
Definition: ht-operation.h:388
uint8_t GetStaChannelWidth() const
Return the STA channel width.
void SetLSigTxopProtectionFullSupport(uint8_t lSigTxopProtectionFullSupport)
Set the LSIG TXOP protection full support.
void SetStaChannelWidth(uint8_t staChannelWidth)
Set the STA channel width.
Definition: ht-operation.cc:84
uint8_t GetSecondaryChannelOffset() const
Return the secondary channel offset.
void SetInformationSubset1(uint8_t ctrl)
Set the Information Subset 1 field in the HT Operation information element.
uint16_t GetInformationSubset2() const
Return the Information Subset 2 field in the HT Operation information element.
void SetRxHighestSupportedDataRate(uint16_t maxSupportedRate)
Set the receive highest supported data rate.
uint8_t m_pcoActive
PCO active.
Definition: ht-operation.h:381
uint8_t GetTxUnequalModulation() const
Return transmit unequal modulation.
void SetRxMcsBitmask(uint8_t index)
Set the receive MCS bitmask.
uint32_t m_reservedMcsSet3
reserved MCS set 3
Definition: ht-operation.h:393
void SetPrimaryChannel(uint8_t ctrl)
Set the Primary Channel field in the HT Operation information element.
Definition: ht-operation.cc:72
uint8_t GetObssNonHtStasPresent() const
Return the OBSS non HT STAs present.
void SetDualCtsProtection(uint8_t dualCtsProtection)
Set the dual CTS protection.
uint8_t m_htProtection
HT protection.
Definition: ht-operation.h:369
void SetPhase(uint8_t pcoPhase)
Set the PCO phase.
bool IsSupportedMcs(uint8_t mcs) const
Return MCS is supported.
uint8_t m_txRxMcsSetUnequal
transmit / receive MCS set unequal
Definition: ht-operation.h:390
uint8_t GetTxMaxNSpatialStreams() const
Return transmit maximum number spatial streams.
uint8_t GetPhase() const
Return phase.
uint8_t GetNonGfHtStasPresent() const
Return the non GF HT STAs present.
uint8_t m_pcoPhase
PCO phase.
Definition: ht-operation.h:382
uint8_t m_primaryChannel
primary channel
Definition: ht-operation.h:360
void SetStbcBeacon(uint8_t stbcBeacon)
Set the STBC beacon.
uint8_t m_nonGfHtStasPresent
non GF HT STAs present
Definition: ht-operation.h:370
Information element, as defined in 802.11-2007 standard.
#define MAX_SUPPORTED_MCS
This defines the maximum number of supported MCSs that a STA is allowed to have.
Definition: ht-operation.h:29
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::ostream & operator<<(std::ostream &os, const Angles &a)
Definition: angles.cc:129
HtProtectionType
HtProtectionType enumeration.
Definition: ht-operation.h:36
@ NON_MEMBER_PROTECTION
Definition: ht-operation.h:38
@ NO_PROTECTION
Definition: ht-operation.h:37
@ TWENTY_MHZ_PROTECTION
Definition: ht-operation.h:39
@ MIXED_MODE_PROTECTION
Definition: ht-operation.h:40
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.
def start()
Definition: core.py:1861