A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
Loading...
Searching...
No Matches
non-inheritance.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2023 Universita' degli Studi di Napoli Federico II
3
*
4
* SPDX-License-Identifier: GPL-2.0-only
5
*
6
* Author: Stefano Avallone <stavallo@unina.it>
7
*/
8
9
#ifndef NON_INHERITANCE_H
10
#define NON_INHERITANCE_H
11
12
#include "
wifi-information-element.h
"
13
14
#include <set>
15
16
namespace
ns3
17
{
18
19
/**
20
* \ingroup wifi
21
*
22
* The IEEE 802.11 Non-Inheritance Information Element
23
*/
24
class
NonInheritance
:
public
WifiInformationElement
25
{
26
public
:
27
WifiInformationElementId
ElementId
()
const override
;
28
WifiInformationElementId
ElementIdExt
()
const override
;
29
void
Print
(std::ostream& os)
const override
;
30
31
/**
32
* Add the Information Element specified by the given Element ID and Element ID Extension.
33
*
34
* \param elemId the given Element ID
35
* \param elemIdExt the given Element ID Extension
36
*/
37
void
Add
(uint8_t elemId, uint8_t elemIdExt = 0);
38
39
/**
40
* \param elemId the given Element ID
41
* \param elemIdExt the given Element ID Extension
42
* \return whether the Information Element specified by the given Element ID and
43
* Element ID Extension is present
44
*/
45
bool
IsPresent
(uint8_t elemId, uint8_t elemIdExt = 0)
const
;
46
47
std::set<uint8_t>
m_elemIdList
;
//!< list of unique Element ID values (in increasing order)
48
std::set<uint8_t>
m_elemIdExtList
;
//!< list of unique Element ID Extension values
49
50
private
:
51
uint16_t
GetInformationFieldSize
()
const override
;
52
void
SerializeInformationField
(
Buffer::Iterator
start)
const override
;
53
uint16_t
DeserializeInformationField
(
Buffer::Iterator
start, uint16_t length)
override
;
54
};
55
56
}
// namespace ns3
57
58
#endif
/* NON_INHERITANCE_H */
ns3::Buffer::Iterator
iterator in a Buffer instance
Definition
buffer.h:89
ns3::NonInheritance
The IEEE 802.11 Non-Inheritance Information Element.
Definition
non-inheritance.h:25
ns3::NonInheritance::DeserializeInformationField
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)
Definition
non-inheritance.cc:66
ns3::NonInheritance::m_elemIdList
std::set< uint8_t > m_elemIdList
list of unique Element ID values (in increasing order)
Definition
non-inheritance.h:47
ns3::NonInheritance::IsPresent
bool IsPresent(uint8_t elemId, uint8_t elemIdExt=0) const
Definition
non-inheritance.cc:89
ns3::NonInheritance::Add
void Add(uint8_t elemId, uint8_t elemIdExt=0)
Add the Information Element specified by the given Element ID and Element ID Extension.
Definition
non-inheritance.cc:83
ns3::NonInheritance::Print
void Print(std::ostream &os) const override
Generate human-readable form of IE.
Definition
non-inheritance.cc:30
ns3::NonInheritance::GetInformationFieldSize
uint16_t GetInformationFieldSize() const override
Length of serialized information (i.e., the length of the body of the IE, not including the Element I...
Definition
non-inheritance.cc:42
ns3::NonInheritance::SerializeInformationField
void SerializeInformationField(Buffer::Iterator start) const override
Serialize information (i.e., the body of the IE, not including the Element ID and length octets)
Definition
non-inheritance.cc:51
ns3::NonInheritance::ElementIdExt
WifiInformationElementId ElementIdExt() const override
Get the wifi information element ID extension.
Definition
non-inheritance.cc:24
ns3::NonInheritance::ElementId
WifiInformationElementId ElementId() const override
Get the wifi information element ID.
Definition
non-inheritance.cc:18
ns3::NonInheritance::m_elemIdExtList
std::set< uint8_t > m_elemIdExtList
list of unique Element ID Extension values
Definition
non-inheritance.h:48
ns3::WifiInformationElement
Information element, as defined in 802.11-2007 standard.
Definition
wifi-information-element.h:278
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::WifiInformationElementId
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.
Definition
wifi-information-element.h:34
wifi-information-element.h
src
wifi
model
non-inheritance.h
Generated on Fri Nov 8 2024 13:59:07 for ns-3 by
1.11.0