A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
vht-operation.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 Sébastien Deronne
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 * Author: Sébastien Deronne <sebastien.deronne@gmail.com>
7 */
8
9#include "vht-operation.h"
10
11namespace ns3
12{
13
15 : m_channelWidth(0),
16 m_channelCenterFrequencySegment0(0),
17 m_channelCenterFrequencySegment1(0),
18 m_basicVhtMcsAndNssSet(0)
19{
20}
21
24{
25 return IE_VHT_OPERATION;
26}
27
28void
29VhtOperation::Print(std::ostream& os) const
30{
31 os << "VHT Operation=" << +GetChannelWidth() << "|" << +GetChannelCenterFrequencySegment0()
33}
34
35uint16_t
37{
38 return 5;
39}
40
41void
42VhtOperation::SetChannelWidth(uint8_t channelWidth)
43{
44 m_channelWidth = channelWidth;
45}
46
47void
48VhtOperation::SetChannelCenterFrequencySegment0(uint8_t channelCenterFrequencySegment0)
49{
50 m_channelCenterFrequencySegment0 = channelCenterFrequencySegment0;
51}
52
53void
54VhtOperation::SetChannelCenterFrequencySegment1(uint8_t channelCenterFrequencySegment1)
55{
56 m_channelCenterFrequencySegment1 = channelCenterFrequencySegment1;
57}
58
59void
60VhtOperation::SetMaxVhtMcsPerNss(uint8_t nss, uint8_t maxVhtMcs)
61{
62 NS_ASSERT((maxVhtMcs == 0 || (maxVhtMcs >= 7 && maxVhtMcs <= 9)) && (nss >= 1 && nss <= 8));
63 if (maxVhtMcs != 0)
64 {
65 m_basicVhtMcsAndNssSet |= (((maxVhtMcs - 7) & 0x03) << ((nss - 1) * 2));
66 }
67 else
68 {
69 m_basicVhtMcsAndNssSet |= (3 << ((nss - 1) * 2));
70 }
71}
72
73void
74VhtOperation::SetBasicVhtMcsAndNssSet(uint16_t basicVhtMcsAndNssSet)
75{
76 m_basicVhtMcsAndNssSet = basicVhtMcsAndNssSet;
77}
78
79uint8_t
84
85uint8_t
90
91uint8_t
96
97uint16_t
102
103void
105{
106 // write the corresponding value for each bit
107 start.WriteU8(GetChannelWidth());
108 start.WriteU8(GetChannelCenterFrequencySegment0());
109 start.WriteU8(GetChannelCenterFrequencySegment1());
110 start.WriteU16(GetBasicVhtMcsAndNssSet());
111}
112
113uint16_t
115{
116 Buffer::Iterator i = start;
117 uint8_t channelWidth = i.ReadU8();
118 uint8_t channelCenterFrequencySegment0 = i.ReadU8();
119 uint8_t channelCenterFrequencySegment1 = i.ReadU8();
120 uint16_t basicVhtMcsAndNssSet = i.ReadU16();
121 SetChannelWidth(channelWidth);
122 SetChannelCenterFrequencySegment0(channelCenterFrequencySegment0);
123 SetChannelCenterFrequencySegment1(channelCenterFrequencySegment1);
124 SetBasicVhtMcsAndNssSet(basicVhtMcsAndNssSet);
125 return length;
126}
127
128} // namespace ns3
iterator in a Buffer instance
Definition buffer.h:89
uint16_t ReadU16()
Definition buffer.h:1024
uint16_t m_basicVhtMcsAndNssSet
basic VHT MCS NSS set
uint8_t m_channelWidth
channel width
uint8_t GetChannelCenterFrequencySegment1() const
Return the Channel Center Frequency Segment 1 field in the VHT Operation information element.
void Print(std::ostream &os) const override
Generate human-readable form of IE.
void SerializeInformationField(Buffer::Iterator start) const override
Serialize information (i.e., the body of the IE, not including the Element ID and length octets)
void SetMaxVhtMcsPerNss(uint8_t nss, uint8_t maxVhtMcs)
Set the Basic VHT-MCS and NSS field in the VHT Operation information element by specifying the tuple ...
uint8_t m_channelCenterFrequencySegment1
channel center frequency segment 1
uint16_t GetBasicVhtMcsAndNssSet() const
Return the Basic VHT-MCS And Nss field in the VHT Operation information element.
uint8_t m_channelCenterFrequencySegment0
channel center frequency segment 0
uint8_t GetChannelWidth() const
Return the Channel Width field in the VHT Operation information element.
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 SetBasicVhtMcsAndNssSet(uint16_t basicVhtMcsAndNssSet)
Set the Basic VHT-MCS and NSS field in the VHT Operation information element.
WifiInformationElementId ElementId() const override
Get the wifi information element ID.
void SetChannelWidth(uint8_t channelWidth)
Set the Channel Width field in the VHT 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...
void SetChannelCenterFrequencySegment1(uint8_t channelCenterFrequencySegment1)
Set the Channel Center Frequency Segment 1 field in the VHT Operation information element.
uint8_t GetChannelCenterFrequencySegment0() const
Return the Channel Center Frequency Segment 0 field in the VHT Operation information element.
void SetChannelCenterFrequencySegment0(uint8_t channelCenterFrequencySegment0)
Set the Channel Center Frequency Segment 0 field in the VHT Operation information element.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
Definition assert.h:55
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.
#define IE_VHT_OPERATION