A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
extended-capabilities.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2017
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 * Authors: Sébastien Deronne <sebastien.deronne@gmail.com>
18 */
19
20#ifndef EXTENDED_CAPABILITIES_H
21#define EXTENDED_CAPABILITIES_H
22
24
25namespace ns3
26{
27
28/**
29 * \brief The Extended Capabilities Information Element
30 * \ingroup wifi
31 *
32 * This class knows how to serialise and deserialise the Extended Capabilities 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 void Print(std::ostream& os) const override;
45 /**
46 * Set the HT Supported flag.
47 *
48 * \param htSupported flag whether HT is supported
49 */
50 void SetHtSupported(uint8_t htSupported);
51 /**
52 * Set the VHT Supported flag.
53 *
54 * \param vhtSupported flag whether VHT is supported
55 */
56 void SetVhtSupported(uint8_t vhtSupported);
57
58 /**
59 * Set the first byte in the Extended Capabilities information element.
60 *
61 * \param ctrl the first byte in the Extended Capabilities information element
62 */
63 void SetExtendedCapabilitiesByte1(uint8_t ctrl);
64 /**
65 * Set the second byte in the Extended Capabilities information element.
66 *
67 * \param ctrl the second byte in the Extended Capabilities information element
68 */
69 void SetExtendedCapabilitiesByte2(uint8_t ctrl);
70 /**
71 * Set the third byte in the Extended Capabilities information element.
72 *
73 * \param ctrl the third byte in the Extended Capabilities information element
74 */
75 void SetExtendedCapabilitiesByte3(uint8_t ctrl);
76 /**
77 * Set the fourth byte in the Extended Capabilities information element.
78 *
79 * \param ctrl the fourth byte in the Extended Capabilities information element
80 */
81 void SetExtendedCapabilitiesByte4(uint8_t ctrl);
82 /**
83 * Set the fifth byte in the Extended Capabilities information element.
84 *
85 * \param ctrl the fifth byte in the Extended Capabilities information element
86 */
87 void SetExtendedCapabilitiesByte5(uint8_t ctrl);
88 /**
89 * Set the sixth byte in the Extended Capabilities information element.
90 *
91 * \param ctrl the sixth byte in the Extended Capabilities information element
92 */
93 void SetExtendedCapabilitiesByte6(uint8_t ctrl);
94 /**
95 * Set the seventh byte in the Extended Capabilities information element.
96 *
97 * \param ctrl the seventh byte in the Extended Capabilities information element
98 */
99 void SetExtendedCapabilitiesByte7(uint8_t ctrl);
100 /**
101 * Set the eighth byte in the Extended Capabilities information element.
102 *
103 * \param ctrl the eighth byte in the Extended Capabilities information element
104 */
105 void SetExtendedCapabilitiesByte8(uint8_t ctrl);
106
107 /**
108 * Return the first byte in the Extended Capabilities information element.
109 *
110 * \return the first byte in the Extended Capabilities information element
111 */
112 uint8_t GetExtendedCapabilitiesByte1() const;
113 /**
114 * Return the second byte in the Extended Capabilities information element.
115 *
116 * \return the second byte in the Extended Capabilities information element
117 */
118 uint8_t GetExtendedCapabilitiesByte2() const;
119 /**
120 * Return the third byte in the Extended Capabilities information element.
121 *
122 * \return the third byte in the Extended Capabilities information element
123 */
124 uint8_t GetExtendedCapabilitiesByte3() const;
125 /**
126 * Return the fourth byte in the Extended Capabilities information element.
127 *
128 * \return the fourth byte in the Extended Capabilities information element
129 */
130 uint8_t GetExtendedCapabilitiesByte4() const;
131 /**
132 * Return the fifth byte in the Extended Capabilities information element.
133 *
134 * \return the fifth byte in the Extended Capabilities information element
135 */
136 uint8_t GetExtendedCapabilitiesByte5() const;
137 /**
138 * Return the sixth byte in the Extended Capabilities information element.
139 *
140 * \return the sixth byte in the Extended Capabilities information element
141 */
142 uint8_t GetExtendedCapabilitiesByte6() const;
143 /**
144 * Return the seventh byte in the Extended Capabilities information element.
145 *
146 * \return the seventh byte in the Extended Capabilities information element
147 */
148 uint8_t GetExtendedCapabilitiesByte7() const;
149 /**
150 * Return the eighth byte in the Extended Capabilities information element.
151 *
152 * \return the eighth byte in the Extended Capabilities information element
153 */
154 uint8_t GetExtendedCapabilitiesByte8() const;
155
156 private:
157 // fields if HT supported
158 uint8_t m_20_40_bssCoexistenceManagementSupport; ///< 20/40 BSS Coexistence Management Support
159 uint8_t m_extendedChannelSwitching; ///< Extended Channel Switching
160 uint8_t m_psmpCapability; ///< PSMP Capability
161 uint8_t m_spsmpSupport; ///< S-PSMP Support
162
163 // fields if VHT supported
164 uint8_t m_event; ///< Event
165 uint8_t m_diagnostics; ///< Diagnostics
166 uint8_t m_multicastDiagnostics; ///< Multicast Diagnostics
167 uint8_t m_locationTracking; ///< Location Tracking
168 uint8_t m_fms; ///< FMS
169 uint8_t m_proxyArpService; ///< Proxy ARP Service
170 uint8_t m_collocatedInterferenceReporting; ///< Collocated Interference Reporting
171 uint8_t m_civicLocation; ///< Civic Location
172 uint8_t m_geospatialLocation; ///< Geospatial Location
173
174 uint8_t m_tfs; ///< TFS
175 uint8_t m_wnmSleepMode; ///< WNM Sleep Mode
176 uint8_t m_timBroadcast; ///< TIM Broadcast
177 uint8_t m_bssTransition; ///< BSS Transition
178 uint8_t m_qosTrafficCapability; ///< QoS Traffic Capability
179 uint8_t m_acStationCount; ///< AC Station Count
180 uint8_t m_multipleBssid; ///< Multiple BSSID
181 uint8_t m_timingMeasurement; ///< Timing Measurement
182
183 uint8_t m_channelUsage; ///< Channel Usage
184 uint8_t m_ssidList; ///< SSID List
185 uint8_t m_dms; ///< DMS
186 uint8_t m_utcTsfOffset; ///< UTC TSF Offset
187 uint8_t m_tpuBufferStaSupport; ///< TPU Buffer STA Support
188 uint8_t m_tdlsPeerPsmSupport; ///< TDLS Peer PSM Support
189 uint8_t m_tdlsChannelSwitching; ///< TDLS Channel Switching
190 uint8_t m_interworking; ///< Interworking
191
192 uint8_t m_qosMap; ///< QoS Map
193 uint8_t m_ebr; ///< EBR
194 uint8_t m_sspnInterface; ///< SSPN Interface
195 uint8_t m_msgcfCapability; ///< MSGCF Capability
196 uint8_t m_tdlsSupport; ///< TDLS Support
197 uint8_t m_tdlsProhibited; ///< TDLS Prohibited
198 uint8_t m_tdlsChannelSwitchingProhibited; ///< TDLS Channel Switching Prohibited
199
200 uint8_t m_rejectUnadmittedFrame; ///< Reject Unadmitted Frame
201 uint8_t m_serviceIntervalGranularity; ///< Service Interval Granularity
202 uint8_t m_identifierLocation; ///< Identifier Location
203 uint8_t m_uapsdCoexistence; ///< U-APSD Coexistence
204 uint8_t m_wnmNotification; ///< WNM Notification
205 uint8_t m_qabCapability; ///< QAB Capability
206
207 uint8_t m_utf8Ssid; ///< UTF-8 SSID
208 uint8_t m_qmfActivated; ///< QMFActivated
209 uint8_t m_qmfReconfigurationActivated; ///< QMFReconfigurationActivated
210 uint8_t m_robustAvStreaming; ///< Robust AV Streaming
211 uint8_t m_advancedGcr; ///< Advanced GCR
212 uint8_t m_meshGcr; ///< Mesh GCR
213 uint8_t m_scs; ///< SCS
214 uint8_t m_qloadReport; ///< QLoad Report
215
216 uint8_t m_alternateEdca; ///< Alternate EDCA
217 uint8_t m_unprotectedTxopNegotiation; ///< Unprotected TXOP Negotiation
218 uint8_t m_protectedTxopNegotiation; ///< Protected TXOP Negotiation
219 uint8_t m_protectedQloadReport; ///< Protected QLoad Report
220 uint8_t m_tdlsWiderBandwidth; ///< TDLS Wider Bandwidth
221 uint8_t m_operatingModeNotification; ///< Operating Mode Notification
222 uint8_t m_maxNumberOfMsdusInAmsdu; ///< Max Number Of MSDUs In A-MSDU
223
224 uint8_t m_htSupported; ///< Flag to indicate HT is supported in order to decide whether this
225 ///< element should be added to the frame or not
226 uint8_t m_vhtSupported; ///< Flag to indicate VHT is supported in order to decide whether this
227 ///< element should be added to the frame or not
228};
229
230} // namespace ns3
231
232#endif /* EXTENDED_CAPABILITIES_H */
iterator in a Buffer instance
Definition: buffer.h:100
The Extended Capabilities Information Element.
uint8_t m_tdlsWiderBandwidth
TDLS Wider Bandwidth.
uint8_t GetExtendedCapabilitiesByte7() const
Return the seventh byte in the Extended Capabilities 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 GetExtendedCapabilitiesByte8() const
Return the eighth byte in the Extended Capabilities 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 m_wnmNotification
WNM Notification.
uint8_t GetExtendedCapabilitiesByte1() const
Return the first byte in the Extended Capabilities information element.
uint8_t m_utcTsfOffset
UTC TSF Offset.
uint8_t GetExtendedCapabilitiesByte3() const
Return the third byte in the Extended Capabilities information element.
uint8_t m_unprotectedTxopNegotiation
Unprotected TXOP Negotiation.
void SetHtSupported(uint8_t htSupported)
Set the HT Supported flag.
uint8_t m_identifierLocation
Identifier Location.
void SetExtendedCapabilitiesByte3(uint8_t ctrl)
Set the third byte in the Extended Capabilities information element.
void SetVhtSupported(uint8_t vhtSupported)
Set the VHT Supported flag.
uint8_t m_diagnostics
Diagnostics.
uint8_t m_multicastDiagnostics
Multicast Diagnostics.
uint8_t m_alternateEdca
Alternate EDCA.
uint8_t m_vhtSupported
Flag to indicate VHT is supported in order to decide whether this element should be added to the fram...
uint8_t m_qmfActivated
QMFActivated.
uint8_t m_operatingModeNotification
Operating Mode Notification.
uint8_t m_extendedChannelSwitching
Extended Channel Switching.
void SetExtendedCapabilitiesByte8(uint8_t ctrl)
Set the eighth byte in the Extended Capabilities information element.
uint8_t m_wnmSleepMode
WNM Sleep Mode.
uint16_t GetInformationFieldSize() const override
Length of serialized information (i.e., the length of the body of the IE, not including the Element I...
void SetExtendedCapabilitiesByte1(uint8_t ctrl)
Set the first byte in the Extended Capabilities information element.
uint8_t m_proxyArpService
Proxy ARP Service.
uint8_t m_acStationCount
AC Station Count.
uint8_t m_msgcfCapability
MSGCF Capability.
uint8_t m_geospatialLocation
Geospatial Location.
uint8_t m_serviceIntervalGranularity
Service Interval Granularity.
void SetExtendedCapabilitiesByte2(uint8_t ctrl)
Set the second byte in the Extended Capabilities information element.
uint8_t m_qosTrafficCapability
QoS Traffic Capability.
WifiInformationElementId ElementId() const override
Get the wifi information element ID.
uint8_t m_timingMeasurement
Timing Measurement.
uint8_t m_tdlsProhibited
TDLS Prohibited.
uint8_t m_channelUsage
Channel Usage.
uint8_t GetExtendedCapabilitiesByte4() const
Return the fourth byte in the Extended Capabilities information element.
uint8_t m_qloadReport
QLoad Report.
uint8_t m_bssTransition
BSS Transition.
uint8_t m_multipleBssid
Multiple BSSID.
uint8_t m_tdlsPeerPsmSupport
TDLS Peer PSM Support.
uint8_t m_interworking
Interworking.
uint8_t m_tdlsChannelSwitching
TDLS Channel Switching.
uint8_t m_timBroadcast
TIM Broadcast.
uint8_t m_protectedQloadReport
Protected QLoad Report.
uint8_t GetExtendedCapabilitiesByte5() const
Return the fifth byte in the Extended Capabilities information element.
void SetExtendedCapabilitiesByte6(uint8_t ctrl)
Set the sixth byte in the Extended Capabilities information element.
uint8_t m_tdlsChannelSwitchingProhibited
TDLS Channel Switching Prohibited.
uint8_t m_advancedGcr
Advanced GCR.
uint8_t m_locationTracking
Location Tracking.
void SetExtendedCapabilitiesByte4(uint8_t ctrl)
Set the fourth byte in the Extended Capabilities information element.
uint8_t m_htSupported
Flag to indicate HT is supported in order to decide whether this element should be added to the frame...
uint8_t GetExtendedCapabilitiesByte6() const
Return the sixth byte in the Extended Capabilities information element.
void SetExtendedCapabilitiesByte7(uint8_t ctrl)
Set the seventh byte in the Extended Capabilities information element.
uint8_t m_tdlsSupport
TDLS Support.
uint8_t m_psmpCapability
PSMP Capability.
uint8_t GetExtendedCapabilitiesByte2() const
Return the second byte in the Extended Capabilities information element.
uint8_t m_tpuBufferStaSupport
TPU Buffer STA Support.
uint8_t m_qmfReconfigurationActivated
QMFReconfigurationActivated.
uint8_t m_qabCapability
QAB Capability.
void SetExtendedCapabilitiesByte5(uint8_t ctrl)
Set the fifth byte in the Extended Capabilities information element.
void Print(std::ostream &os) const override
Generate human-readable form of IE.
uint8_t m_protectedTxopNegotiation
Protected TXOP Negotiation.
uint8_t m_rejectUnadmittedFrame
Reject Unadmitted Frame.
uint8_t m_sspnInterface
SSPN Interface.
uint8_t m_robustAvStreaming
Robust AV Streaming.
uint8_t m_spsmpSupport
S-PSMP Support.
uint8_t m_collocatedInterferenceReporting
Collocated Interference Reporting.
uint8_t m_maxNumberOfMsdusInAmsdu
Max Number Of MSDUs In A-MSDU.
uint8_t m_20_40_bssCoexistenceManagementSupport
20/40 BSS Coexistence Management Support
uint8_t m_civicLocation
Civic Location.
uint8_t m_uapsdCoexistence
U-APSD Coexistence.
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.