A Discrete-Event Network Simulator
API
vht-operation.h
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2016 Sébastien Deronne
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Sébastien Deronne <sebastien.deronne@gmail.com>
19  */
20 
21 #ifndef VHT_OPERATION_H
22 #define VHT_OPERATION_H
23 
25 
26 namespace ns3 {
27 
38 {
39 public:
40  VhtOperation ();
46  void SetVhtSupported (uint8_t vhtsupported);
47 
53  void SetChannelWidth (uint8_t channelWidth);
59  void SetChannelCenterFrequencySegment0 (uint8_t channelCenterFrequencySegment0);
65  void SetChannelCenterFrequencySegment1 (uint8_t channelCenterFrequencySegment1);
71  void SetBasicVhtMcsAndNssSet (uint16_t basicVhtMcsAndNssSet);
79  void SetMaxVhtMcsPerNss (uint8_t nss, uint8_t maxVhtMcs);
80 
86  uint8_t GetChannelWidth (void) const;
92  uint8_t GetChannelCenterFrequencySegment0 (void) const;
98  uint8_t GetChannelCenterFrequencySegment1 (void) const;
104  uint16_t GetBasicVhtMcsAndNssSet (void) const;
105 
117  uint8_t GetInformationFieldSize () const;
131  uint8_t DeserializeInformationField (Buffer::Iterator start, uint8_t length);
148  uint16_t GetSerializedSize () const;
149 
150 
151 private:
152  //VHT Operation Information
153  uint8_t m_channelWidth;
156 
157  //Basic VHT-MCSS and NSS Set
159 
161  uint8_t m_vhtSupported;
162 };
163 
172 std::ostream &operator << (std::ostream &os, const VhtOperation &VhtOperation);
181 std::istream &operator >> (std::istream &is, VhtOperation &VhtOperation);
182 
184 
185 } //namespace ns3
186 
187 #endif /* VHT_OPERATION_H */
std::istream & operator>>(std::istream &is, Angles &a)
initialize a struct Angles from input
Definition: angles.cc:48
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 GetChannelCenterFrequencySegment0(void) const
Return the Channel Center Frequency Segment 0 field in the VHT Operation information element...
uint16_t GetBasicVhtMcsAndNssSet(void) const
Return the Basic VHT-MCS And Nss field in the VHT Operation information element.
uint8_t GetChannelCenterFrequencySegment1(void) const
Return the Channel Center Frequency Segment 1 field in the VHT Operation information element...
def start()
Definition: core.py:1790
The VHT Operation Information ElementThis class knows how to serialise and deserialise the VHT Operat...
Definition: vht-operation.h:37
uint8_t m_channelWidth
channel width
WifiInformationElementId ElementId() const
Return the element ID.
iterator in a Buffer instance
Definition: buffer.h:98
void SetVhtSupported(uint8_t vhtsupported)
Set the VHT supported information element.
Information element, as defined in 802.11-2007 standardThe IEEE 802.11 standard includes the notion o...
uint8_t m_channelCenterFrequencySegment0
channel center frequency segment 0
Buffer::Iterator Serialize(Buffer::Iterator start) const
This information element is a bit special in that it is only included if the STA is an HT STA...
uint8_t m_vhtSupported
This is used to decide whether this element should be added to the frame or not.
void SerializeInformationField(Buffer::Iterator start) const
Serialize the information field.
void SetChannelCenterFrequencySegment1(uint8_t channelCenterFrequencySegment1)
Set the Channel Center Frequency Segment 1 field in the VHT Operation information element...
std::ostream & operator<<(std::ostream &os, const Angles &a)
print a struct Angles to output
Definition: angles.cc:42
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void SetChannelCenterFrequencySegment0(uint8_t channelCenterFrequencySegment0)
Set the Channel Center Frequency Segment 0 field in the VHT Operation information element...
uint16_t m_basicVhtMcsAndNssSet
basic VHT MCS NSS set
uint8_t DeserializeInformationField(Buffer::Iterator start, uint8_t length)
Deserialize the information field.
void SetBasicVhtMcsAndNssSet(uint16_t basicVhtMcsAndNssSet)
Set the Basic VHT-MCS and NSS field in the VHT Operation information element.
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.
uint8_t GetChannelWidth(void) const
Return the Channel Width field in the VHT Operation information element.
uint8_t m_channelCenterFrequencySegment1
channel center frequency segment 0
uint8_t GetInformationFieldSize() const
Return the information field size.
uint16_t GetSerializedSize() const
Return the serialized size of this HT Operations IE.
#define ATTRIBUTE_HELPER_HEADER(type)
Declare the attribute value, accessor and checkers for class type.
void SetChannelWidth(uint8_t channelWidth)
Set the Channel Width field in the VHT Operation information element.