A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
vht-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 VHT_OPERATION_H
21#define VHT_OPERATION_H
22
23#include "ns3/wifi-information-element.h"
24
25namespace ns3
26{
27
28/**
29 * \brief The VHT Operation Information Element
30 * \ingroup wifi
31 *
32 * This class knows how to serialise and deserialise
33 * the VHT Operation Information Element
34 */
36{
37 public:
39
40 // Implementations of pure virtual methods of WifiInformationElement
41 WifiInformationElementId ElementId() const override;
42 void Print(std::ostream& os) const override;
43
44 /**
45 * Set the Channel Width field in the VHT Operation information element.
46 *
47 * \param channelWidth the Channel Width field in the VHT Operation information element
48 */
49 void SetChannelWidth(uint8_t channelWidth);
50 /**
51 * Set the Channel Center Frequency Segment 0 field in the VHT Operation information element.
52 *
53 * \param channelCenterFrequencySegment0 the Channel Center Frequency Segment 0 field in the VHT
54 * Operation information element
55 */
56 void SetChannelCenterFrequencySegment0(uint8_t channelCenterFrequencySegment0);
57 /**
58 * Set the Channel Center Frequency Segment 1 field in the VHT Operation information element.
59 *
60 * \param channelCenterFrequencySegment1 the Channel Center Frequency Segment 1 field in the VHT
61 * Operation information element
62 */
63 void SetChannelCenterFrequencySegment1(uint8_t channelCenterFrequencySegment1);
64 /**
65 * Set the Basic VHT-MCS and NSS field in the VHT Operation information element.
66 *
67 * \param basicVhtMcsAndNssSet the Basic VHT-MCS and NSS field in the VHT Operation information
68 * element
69 */
70 void SetBasicVhtMcsAndNssSet(uint16_t basicVhtMcsAndNssSet);
71 /**
72 * Set the Basic VHT-MCS and NSS field in the VHT Operation information element
73 * by specifying the tuple (nss, maxMcs).
74 *
75 * \param nss the NSS
76 * \param maxVhtMcs the maximum supported VHT-MCS value corresponding to that NSS
77 */
78 void SetMaxVhtMcsPerNss(uint8_t nss, uint8_t maxVhtMcs);
79
80 /**
81 * Return the Channel Width field in the VHT Operation information element.
82 *
83 * \return the Channel Width field in the VHT Operation information element
84 */
85 uint8_t GetChannelWidth() const;
86 /**
87 * Return the Channel Center Frequency Segment 0 field in the VHT Operation information element.
88 *
89 * \return the Channel Center Frequency Segment 0 field in the VHT Operation information element
90 */
92 /**
93 * Return the Channel Center Frequency Segment 1 field in the VHT Operation information element.
94 *
95 * \return the Channel Center Frequency Segment 1 field in the VHT Operation information element
96 */
98 /**
99 * Return the Basic VHT-MCS And Nss field in the VHT Operation information element.
100 *
101 * \return the Basic VHT-MCS And Nss field in the VHT Operation information element
102 */
103 uint16_t GetBasicVhtMcsAndNssSet() const;
104
105 private:
106 uint16_t GetInformationFieldSize() const override;
107 void SerializeInformationField(Buffer::Iterator start) const override;
108 uint16_t DeserializeInformationField(Buffer::Iterator start, uint16_t length) override;
109
110 // VHT Operation Information
111 uint8_t m_channelWidth; ///< channel width
112 uint8_t m_channelCenterFrequencySegment0; ///< channel center frequency segment 0
113 uint8_t m_channelCenterFrequencySegment1; ///< channel center frequency segment 1
114
115 // Basic VHT-MCS and NSS Set
116 uint16_t m_basicVhtMcsAndNssSet; ///< basic VHT MCS NSS set
117};
118
119} // namespace ns3
120
121#endif /* VHT_OPERATION_H */
iterator in a Buffer instance
Definition: buffer.h:100
The VHT Operation Information Element.
Definition: vht-operation.h:36
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.
Information element, as defined in 802.11-2007 standard.
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.