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 serialize and deserialize 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 void Print(std::ostream& os) const override;
34
35 /**
36 * Set the Barker_Preamble_Mode field in the ErpInformation information element.
37 *
38 * @param barkerPreambleMode the Barker_Preamble_Mode field in the ErpInformation information
39 * element
40 */
41 void SetBarkerPreambleMode(uint8_t barkerPreambleMode);
42 /**
43 * Set the Use_Protection field in the ErpInformation information element.
44 *
45 * @param useProtection the Use_Protection field in the ErpInformation information element
46 */
47 void SetUseProtection(uint8_t useProtection);
48 /**
49 * Set the Non_Erp_Present field in the ErpInformation information element.
50 *
51 * @param nonErpPresent the Non_Erp_Present field in the ErpInformation information element
52 */
53 void SetNonErpPresent(uint8_t nonErpPresent);
54
55 /**
56 * Return the Barker_Preamble_Mode field in the ErpInformation information element.
57 *
58 * @return the Barker_Preamble_Mode field in the ErpInformation information element
59 */
60 uint8_t GetBarkerPreambleMode() const;
61 /**
62 * Return the Use_Protection field in the ErpInformation information element.
63 *
64 * @return the Use_Protection field in the ErpInformation information element
65 */
66 uint8_t GetUseProtection() const;
67 /**
68 * Return the Non_Erp_Present field in the ErpInformation information element.
69 *
70 * @return the Non_Erp_Present field in the ErpInformation information element
71 */
72 uint8_t GetNonErpPresent() const;
73
74 private:
75 uint8_t m_erpInformation; ///< ERP information
76};
77
78} // namespace ns3
79
80#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 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)
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.
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.