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 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 * Author: Sébastien Deronne <sebastien.deronne@gmail.com>
7 */
8
9#ifndef ERP_INFORMATION_H
10#define ERP_INFORMATION_H
11
12#include "ns3/wifi-information-element.h"
13
14namespace ns3
15{
16
17/**
18 * \brief The ErpInformation Information Element
19 * \ingroup wifi
20 *
21 * This class knows how to serialise and deserialise the ErpInformation Information Element.
22 */
24{
25 public:
27
28 // Implementations of pure virtual methods of WifiInformationElement
29 WifiInformationElementId ElementId() const override;
30 uint16_t GetInformationFieldSize() const override;
31 void SerializeInformationField(Buffer::Iterator start) const override;
32 uint16_t DeserializeInformationField(Buffer::Iterator start, uint16_t length) override;
33
34 /**
35 * Set the Barker_Preamble_Mode field in the ErpInformation information element.
36 *
37 * \param barkerPreambleMode the Barker_Preamble_Mode field in the ErpInformation information
38 * element
39 */
40 void SetBarkerPreambleMode(uint8_t barkerPreambleMode);
41 /**
42 * Set the Use_Protection field in the ErpInformation information element.
43 *
44 * \param useProtection the Use_Protection field in the ErpInformation information element
45 */
46 void SetUseProtection(uint8_t useProtection);
47 /**
48 * Set the Non_Erp_Present field in the ErpInformation information element.
49 *
50 * \param nonErpPresent the Non_Erp_Present field in the ErpInformation information element
51 */
52 void SetNonErpPresent(uint8_t nonErpPresent);
53
54 /**
55 * Return the Barker_Preamble_Mode field in the ErpInformation information element.
56 *
57 * \return the Barker_Preamble_Mode field in the ErpInformation information element
58 */
59 uint8_t GetBarkerPreambleMode() const;
60 /**
61 * Return the Use_Protection field in the ErpInformation information element.
62 *
63 * \return the Use_Protection field in the ErpInformation information element
64 */
65 uint8_t GetUseProtection() const;
66 /**
67 * Return the Non_Erp_Present field in the ErpInformation information element.
68 *
69 * \return the Non_Erp_Present field in the ErpInformation information element
70 */
71 uint8_t GetNonErpPresent() const;
72
73 private:
74 uint8_t m_erpInformation; ///< ERP information
75};
76
77/**
78 * output stream output operator
79 *
80 * \param os output stream
81 * \param erpInformation the ERP Information
82 *
83 * \returns output stream
84 */
85std::ostream& operator<<(std::ostream& os, const ErpInformation& erpInformation);
86
87} // namespace ns3
88
89#endif /* ERP_INFORMATION_H */
iterator in a Buffer instance
Definition buffer.h:89
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:148
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.