A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
erp-information.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 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 ERP_INFORMATION_H
21#define ERP_INFORMATION_H
22
23#include "ns3/wifi-information-element.h"
24
25namespace ns3
26{
27
28/**
29 * \brief The ErpInformation Information Element
30 * \ingroup wifi
31 *
32 * This class knows how to serialise and deserialise the ErpInformation Information Element.
33 */
35{
36 public:
38
39 // Implementations of pure virtual methods of WifiInformationElement
40 WifiInformationElementId ElementId() const override;
41 uint16_t GetInformationFieldSize() const override;
42 void SerializeInformationField(Buffer::Iterator start) const override;
43 uint16_t DeserializeInformationField(Buffer::Iterator start, uint16_t length) override;
44
45 /**
46 * Set the Barker_Preamble_Mode field in the ErpInformation information element.
47 *
48 * \param barkerPreambleMode the Barker_Preamble_Mode field in the ErpInformation information
49 * element
50 */
51 void SetBarkerPreambleMode(uint8_t barkerPreambleMode);
52 /**
53 * Set the Use_Protection field in the ErpInformation information element.
54 *
55 * \param useProtection the Use_Protection field in the ErpInformation information element
56 */
57 void SetUseProtection(uint8_t useProtection);
58 /**
59 * Set the Non_Erp_Present field in the ErpInformation information element.
60 *
61 * \param nonErpPresent the Non_Erp_Present field in the ErpInformation information element
62 */
63 void SetNonErpPresent(uint8_t nonErpPresent);
64
65 /**
66 * Return the Barker_Preamble_Mode field in the ErpInformation information element.
67 *
68 * \return the Barker_Preamble_Mode field in the ErpInformation information element
69 */
70 uint8_t GetBarkerPreambleMode() const;
71 /**
72 * Return the Use_Protection field in the ErpInformation information element.
73 *
74 * \return the Use_Protection field in the ErpInformation information element
75 */
76 uint8_t GetUseProtection() const;
77 /**
78 * Return the Non_Erp_Present field in the ErpInformation information element.
79 *
80 * \return the Non_Erp_Present field in the ErpInformation information element
81 */
82 uint8_t GetNonErpPresent() const;
83
84 private:
85 uint8_t m_erpInformation; ///< ERP information
86};
87
88/**
89 * output stream output operator
90 *
91 * \param os output stream
92 * \param erpInformation the ERP Information
93 *
94 * \returns output stream
95 */
96std::ostream& operator<<(std::ostream& os, const ErpInformation& erpInformation);
97
98} // namespace ns3
99
100#endif /* ERP_INFORMATION_H */
iterator in a Buffer instance
Definition: buffer.h:100
The ErpInformation Information Element.
uint8_t m_erpInformation
ERP information.
void SetBarkerPreambleMode(uint8_t barkerPreambleMode)
Set the Barker_Preamble_Mode field in the ErpInformation information element.
WifiInformationElementId ElementId() const override
Get the wifi information element ID.
uint8_t GetNonErpPresent() const
Return the Non_Erp_Present field in the ErpInformation 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)
uint8_t GetBarkerPreambleMode() const
Return the Barker_Preamble_Mode field in the ErpInformation information element.
void SetUseProtection(uint8_t useProtection)
Set the Use_Protection field in the ErpInformation information element.
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 GetUseProtection() const
Return the Use_Protection field in the ErpInformation information element.
void SetNonErpPresent(uint8_t nonErpPresent)
Set the Non_Erp_Present field in the ErpInformation 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...
Information element, as defined in 802.11-2007 standard.
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:159
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.