This documentation is not the
Latest Release
.
A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
mgt-headers.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2006 INRIA
4
* Copyright (c) 2009 MIRKO BANCHI
5
*
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License version 2 as
8
* published by the Free Software Foundation;
9
*
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
14
*
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
*
19
* Authors: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
20
* Mirko Banchi <mk.banchi@gmail.com>
21
*/
22
23
#ifndef MGT_HEADERS_H
24
#define MGT_HEADERS_H
25
26
#include <stdint.h>
27
28
#include "ns3/header.h"
29
#include "
status-code.h
"
30
#include "
capability-information.h
"
31
#include "
supported-rates.h
"
32
#include "
ssid.h
"
33
#include "
ht-capabilities.h
"
34
#include "
vht-capabilities.h
"
35
36
namespace
ns3
{
37
42
class
MgtAssocRequestHeader
:
public
Header
43
{
44
public
:
45
MgtAssocRequestHeader
();
46
~MgtAssocRequestHeader
();
47
53
void
SetSsid
(
Ssid
ssid
);
59
void
SetSupportedRates
(
SupportedRates
rates);
65
void
SetListenInterval
(uint16_t interval);
71
void
SetCapabilities
(
CapabilityInformation
capabilities);
77
void
SetHtCapabilities
(
HtCapabilities
htcapabilities);
83
void
SetVhtCapabilities
(
VhtCapabilities
vhtcapabilities);
89
CapabilityInformation
GetCapabilities
(
void
)
const
;
95
HtCapabilities
GetHtCapabilities
(
void
)
const
;
101
VhtCapabilities
GetVhtCapabilities
(
void
)
const
;
107
Ssid
GetSsid
(
void
)
const
;
113
SupportedRates
GetSupportedRates
(
void
)
const
;
119
uint16_t
GetListenInterval
(
void
)
const
;
120
125
static
TypeId
GetTypeId
(
void
);
126
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
127
virtual
void
Print
(std::ostream &os)
const
;
128
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
129
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
130
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
131
132
133
private
:
134
Ssid
m_ssid
;
135
SupportedRates
m_rates
;
136
CapabilityInformation
m_capability
;
137
HtCapabilities
m_htCapability
;
138
VhtCapabilities
m_vhtCapability
;
139
uint16_t
m_listenInterval
;
140
};
141
142
147
class
MgtAssocResponseHeader
:
public
Header
148
{
149
public
:
150
MgtAssocResponseHeader
();
151
~MgtAssocResponseHeader
();
152
158
StatusCode
GetStatusCode
(
void
);
164
SupportedRates
GetSupportedRates
(
void
);
170
CapabilityInformation
GetCapabilities
(
void
)
const
;
176
void
SetCapabilities
(
CapabilityInformation
capabilities);
182
HtCapabilities
GetHtCapabilities
(
void
)
const
;
188
void
SetVhtCapabilities
(
VhtCapabilities
vhtcapabilities);
194
VhtCapabilities
GetVhtCapabilities
(
void
)
const
;
200
void
SetHtCapabilities
(
HtCapabilities
htcapabilities);
206
void
SetSupportedRates
(
SupportedRates
rates);
212
void
SetStatusCode
(
StatusCode
code);
213
218
static
TypeId
GetTypeId
(
void
);
219
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
220
virtual
void
Print
(std::ostream &os)
const
;
221
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
222
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
223
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
224
225
private
:
226
SupportedRates
m_rates
;
227
CapabilityInformation
m_capability
;
228
StatusCode
m_code
;
229
uint16_t
m_aid
;
230
HtCapabilities
m_htCapability
;
231
VhtCapabilities
m_vhtCapability
;
232
};
233
234
239
class
MgtProbeRequestHeader
:
public
Header
240
{
241
public
:
242
~MgtProbeRequestHeader
();
243
249
void
SetSsid
(
Ssid
ssid
);
255
void
SetSupportedRates
(
SupportedRates
rates);
261
Ssid
GetSsid
(
void
)
const
;
267
SupportedRates
GetSupportedRates
(
void
)
const
;
273
HtCapabilities
GetHtCapabilities
(
void
)
const
;
279
void
SetVhtCapabilities
(
VhtCapabilities
vhtcapabilities);
285
VhtCapabilities
GetVhtCapabilities
(
void
)
const
;
286
292
void
SetHtCapabilities
(
HtCapabilities
htcapabilities);
293
298
static
TypeId
GetTypeId
(
void
);
299
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
300
virtual
void
Print
(std::ostream &os)
const
;
301
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
302
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
303
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
304
305
306
private
:
307
Ssid
m_ssid
;
308
SupportedRates
m_rates
;
309
HtCapabilities
m_htCapability
;
310
VhtCapabilities
m_vhtCapability
;
311
};
312
313
318
class
MgtProbeResponseHeader
:
public
Header
319
{
320
public
:
321
MgtProbeResponseHeader
();
322
~MgtProbeResponseHeader
();
323
329
Ssid
GetSsid
(
void
)
const
;
335
uint64_t
GetBeaconIntervalUs
(
void
)
const
;
341
SupportedRates
GetSupportedRates
(
void
)
const
;
347
CapabilityInformation
GetCapabilities
(
void
)
const
;
353
HtCapabilities
GetHtCapabilities
(
void
)
const
;
359
VhtCapabilities
GetVhtCapabilities
(
void
)
const
;
365
void
SetCapabilities
(
CapabilityInformation
capabilities);
371
void
SetHtCapabilities
(
HtCapabilities
htcapabilities);
377
void
SetVhtCapabilities
(
VhtCapabilities
vhtcapabilities);
383
void
SetSsid
(
Ssid
ssid
);
389
void
SetBeaconIntervalUs
(uint64_t us);
395
void
SetSupportedRates
(
SupportedRates
rates);
401
uint64_t
GetTimestamp
();
402
407
static
TypeId
GetTypeId
(
void
);
408
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
409
virtual
void
Print
(std::ostream &os)
const
;
410
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
411
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
412
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
413
414
private
:
415
uint64_t
m_timestamp
;
416
Ssid
m_ssid
;
417
uint64_t
m_beaconInterval
;
418
SupportedRates
m_rates
;
419
CapabilityInformation
m_capability
;
420
HtCapabilities
m_htCapability
;
421
VhtCapabilities
m_vhtCapability
;
422
};
423
424
429
class
MgtBeaconHeader
:
public
MgtProbeResponseHeader
430
{
431
public
:
437
static
TypeId
GetTypeId
(
void
);
438
};
439
440
441
/****************************
442
* Action frames
443
*****************************/
444
452
class
WifiActionHeader
:
public
Header
453
{
454
public
:
455
WifiActionHeader
();
456
~WifiActionHeader
();
457
458
/*
459
* Compatible with table 8-38 IEEE 802.11, Part11, (Year 2012)
460
* Category values - see 802.11-2012 Table 8-38
461
*/
462
463
enum
CategoryValue
//table 8-38 staring from IEEE 802.11, Part11, (Year 2012)
464
{
465
BLOCK_ACK
= 3,
466
MESH
= 13,
//Category: Mesh
467
MULTIHOP
= 14,
//not used so far
468
SELF_PROTECTED
= 15,
//Category: Self Protected
469
//Since vendor specific action has no stationary Action value,the parse process is not here.
470
//Refer to vendor-specific-action in wave module.
471
VENDOR_SPECIFIC_ACTION
= 127,
472
};
473
474
enum
SelfProtectedActionValue
//Category: 15 (Self Protected)
475
{
476
PEER_LINK_OPEN
= 1,
//Mesh Peering Open
477
PEER_LINK_CONFIRM
= 2,
//Mesh Peering Confirm
478
PEER_LINK_CLOSE
= 3,
//Mesh Peering Close
479
GROUP_KEY_INFORM
= 4,
//Mesh Group Key Inform
480
GROUP_KEY_ACK
= 5,
//Mesh Group Key Acknowledge
481
};
482
483
enum
MultihopActionValue
484
{
485
PROXY_UPDATE
= 0,
//not used so far
486
PROXY_UPDATE_CONFIRMATION
= 1,
//not used so far
487
};
488
489
enum
MeshActionValue
490
{
491
LINK_METRIC_REPORT
= 0,
//Action Value:0 in Category 13: Mesh
492
PATH_SELECTION
= 1,
//Action Value:1 in Category 13: Mesh
493
PORTAL_ANNOUNCEMENT
= 2,
//Action Value:2 in Category 13: Mesh
494
CONGESTION_CONTROL_NOTIFICATION
= 3,
//Action Value:3 in Category 13: Mesh
495
MDA_SETUP_REQUEST
= 4,
//Action Value:4 in Category 13: Mesh MCCA-Setup-Request (not used so far)
496
MDA_SETUP_REPLY
= 5,
//Action Value:5 in Category 13: Mesh MCCA-Setup-Reply (not used so far)
497
MDAOP_ADVERTISMENT_REQUEST
= 6,
//Action Value:6 in Category 13: Mesh MCCA-Advertisement-Request (not used so far)
498
MDAOP_ADVERTISMENTS
= 7,
//Action Value:7 in Category 13: Mesh (not used so far)
499
MDAOP_SET_TEARDOWN
= 8,
//Action Value:8 in Category 13: Mesh (not used so far)
500
TBTT_ADJUSTMENT_REQUEST
= 9,
//Action Value:9 in Category 13: Mesh (not used so far)
501
TBTT_ADJUSTMENT_RESPONSE
= 10,
//Action Value:10 in Category 13: Mesh (not used so far)
502
};
503
508
enum
BlockAckActionValue
509
{
510
BLOCK_ACK_ADDBA_REQUEST
= 0,
511
BLOCK_ACK_ADDBA_RESPONSE
= 1,
512
BLOCK_ACK_DELBA
= 2
513
};
514
515
519
typedef
union
520
{
521
enum
MeshActionValue
meshAction;
522
enum
MultihopActionValue
multihopAction;
523
enum
SelfProtectedActionValue
selfProtectedAction;
524
enum
BlockAckActionValue
blockAck;
525
}
ActionValue
;
532
void
SetAction
(
enum
CategoryValue
type,
ActionValue
action);
533
539
CategoryValue
GetCategory
();
545
ActionValue
GetAction
();
546
551
static
TypeId
GetTypeId
(
void
);
552
virtual
TypeId
GetInstanceTypeId
()
const
;
553
virtual
void
Print
(std::ostream &os)
const
;
554
virtual
uint32_t
GetSerializedSize
()
const
;
555
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
556
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start
);
557
558
559
private
:
560
std::string
CategoryValueToString
(
CategoryValue
value)
const
;
561
std::string
SelfProtectedActionValueToString
(
SelfProtectedActionValue
value)
const
;
562
uint8_t
m_category
;
563
uint8_t
m_actionValue
;
564
};
565
566
571
class
MgtAddBaRequestHeader
:
public
Header
572
{
573
public
:
574
MgtAddBaRequestHeader
();
575
580
static
TypeId
GetTypeId
(
void
);
581
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
582
virtual
void
Print
(std::ostream &os)
const
;
583
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
584
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
585
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
586
590
void
SetDelayedBlockAck
();
594
void
SetImmediateBlockAck
();
600
void
SetTid
(uint8_t tid);
606
void
SetTimeout
(uint16_t
timeout
);
612
void
SetBufferSize
(uint16_t size);
618
void
SetStartingSequence
(uint16_t seq);
624
void
SetAmsduSupport
(
bool
supported);
625
631
uint16_t
GetStartingSequence
(
void
)
const
;
637
uint8_t
GetTid
(
void
)
const
;
643
bool
IsImmediateBlockAck
(
void
)
const
;
649
uint16_t
GetTimeout
(
void
)
const
;
655
uint16_t
GetBufferSize
(
void
)
const
;
661
bool
IsAmsduSupported
(
void
)
const
;
662
663
private
:
669
uint16_t
GetParameterSet
(
void
)
const
;
675
void
SetParameterSet
(uint16_t params);
681
uint16_t
GetStartingSequenceControl
(
void
)
const
;
687
void
SetStartingSequenceControl
(uint16_t seqControl);
688
689
uint8_t
m_dialogToken
;
/* Not used for now */
690
uint8_t
m_amsduSupport
;
691
uint8_t
m_policy
;
692
uint8_t
m_tid
;
693
uint16_t
m_bufferSize
;
694
uint16_t
m_timeoutValue
;
695
uint16_t
m_startingSeq
;
696
};
697
698
703
class
MgtAddBaResponseHeader
:
public
Header
704
{
705
public
:
706
MgtAddBaResponseHeader
();
707
712
static
TypeId
GetTypeId
(
void
);
713
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
714
virtual
void
Print
(std::ostream &os)
const
;
715
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
716
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
717
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
718
722
void
SetDelayedBlockAck
();
726
void
SetImmediateBlockAck
();
732
void
SetTid
(uint8_t tid);
738
void
SetTimeout
(uint16_t
timeout
);
744
void
SetBufferSize
(uint16_t size);
750
void
SetStatusCode
(
StatusCode
code);
756
void
SetAmsduSupport
(
bool
supported);
757
763
StatusCode
GetStatusCode
(
void
)
const
;
769
uint8_t
GetTid
(
void
)
const
;
775
bool
IsImmediateBlockAck
(
void
)
const
;
781
uint16_t
GetTimeout
(
void
)
const
;
787
uint16_t
GetBufferSize
(
void
)
const
;
793
bool
IsAmsduSupported
(
void
)
const
;
794
795
796
private
:
802
uint16_t
GetParameterSet
(
void
)
const
;
808
void
SetParameterSet
(uint16_t params);
809
810
uint8_t
m_dialogToken
;
/* Not used for now */
811
StatusCode
m_code
;
812
uint8_t
m_amsduSupport
;
813
uint8_t
m_policy
;
814
uint8_t
m_tid
;
815
uint16_t
m_bufferSize
;
816
uint16_t
m_timeoutValue
;
817
};
818
819
824
class
MgtDelBaHeader
:
public
Header
825
{
826
public
:
827
MgtDelBaHeader
();
828
833
static
TypeId
GetTypeId
(
void
);
834
// Inherited
835
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
836
virtual
void
Print
(std::ostream &os)
const
;
837
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
838
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
839
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
840
847
bool
IsByOriginator
(
void
)
const
;
853
uint8_t
GetTid
(
void
)
const
;
859
void
SetTid
(uint8_t);
863
void
SetByOriginator
(
void
);
867
void
SetByRecipient
(
void
);
868
869
private
:
875
uint16_t
GetParameterSet
(
void
)
const
;
881
void
SetParameterSet
(uint16_t params);
882
883
uint16_t
m_initiator
;
884
uint16_t
m_tid
;
885
uint16_t
m_reasonCode
;
/* Not used for now. Always set to 1: "Unspecified reason" */
886
};
887
888
}
//namespace ns3
889
890
#endif
/* MGT_HEADERS_H */
ns3::Header
Protocol header serialization and deserialization.
Definition:
header.h:42
ns3::MgtAddBaResponseHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:1115
ns3::MgtAddBaRequestHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:979
ns3::MgtProbeRequestHeader::GetSupportedRates
SupportedRates GetSupportedRates(void) const
Return the supported rates.
Definition:
mgt-headers.cc:83
ns3::MgtAddBaResponseHeader::GetBufferSize
uint16_t GetBufferSize(void) const
Return the buffer size.
Definition:
mgt-headers.cc:1237
ns3::MgtAssocResponseHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:616
ns3::MgtAddBaResponseHeader::m_code
StatusCode m_code
Status code.
Definition:
mgt-headers.h:811
ns3::MgtDelBaHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
mgt-headers.cc:1303
ns3::MgtProbeResponseHeader::GetSupportedRates
SupportedRates GetSupportedRates(void) const
Return the supported rates.
Definition:
mgt-headers.cc:183
ns3::MgtAssocRequestHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:444
ns3::MgtAssocRequestHeader
Implement the header for management frames of type association request.
Definition:
mgt-headers.h:42
ns3::MgtAssocRequestHeader::SetCapabilities
void SetCapabilities(CapabilityInformation capabilities)
Set the Capability information.
Definition:
mgt-headers.cc:379
ns3::MgtAddBaResponseHeader::m_policy
uint8_t m_policy
Block ACK policy.
Definition:
mgt-headers.h:813
ns3::WifiActionHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:893
ns3::MgtProbeRequestHeader::GetVhtCapabilities
VhtCapabilities GetVhtCapabilities(void) const
Return the VHT capabilities.
Definition:
mgt-headers.cc:77
ns3::MgtAssocResponseHeader::GetCapabilities
CapabilityInformation GetCapabilities(void) const
Return the Capability information.
Definition:
mgt-headers.cc:546
ns3::MgtProbeResponseHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:254
ns3::MgtProbeResponseHeader::GetSsid
Ssid GetSsid(void) const
Return the Service Set Identifier (SSID).
Definition:
mgt-headers.cc:171
ns3::WifiActionHeader::SELF_PROTECTED
Definition:
mgt-headers.h:468
ns3::MgtAssocResponseHeader::m_rates
SupportedRates m_rates
List of supported rates.
Definition:
mgt-headers.h:226
ns3::WifiActionHeader::CategoryValue
CategoryValue
Definition:
mgt-headers.h:463
ns3::MgtAssocRequestHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:433
ns3::MgtAddBaRequestHeader::m_timeoutValue
uint16_t m_timeoutValue
Timeout.
Definition:
mgt-headers.h:694
ns3::WifiActionHeader
See IEEE 802.11 chapter 7.3.1.11 Header format: | category: 1 | action value: 1 |.
Definition:
mgt-headers.h:452
ns3::MgtAddBaRequestHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:953
ns3::MgtProbeRequestHeader::m_htCapability
HtCapabilities m_htCapability
HT capabilities.
Definition:
mgt-headers.h:309
ns3::MgtProbeResponseHeader::GetBeaconIntervalUs
uint64_t GetBeaconIntervalUs(void) const
Return the beacon interval in microseconds unit.
Definition:
mgt-headers.cc:177
ns3::MgtAssocRequestHeader::m_rates
SupportedRates m_rates
List of supported rates.
Definition:
mgt-headers.h:135
ns3::MgtProbeRequestHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:101
ns3::MgtAddBaRequestHeader::SetImmediateBlockAck
void SetImmediateBlockAck()
Enable immediate Block ACK.
Definition:
mgt-headers.cc:996
ns3::MgtProbeResponseHeader::m_rates
SupportedRates m_rates
List of supported rates.
Definition:
mgt-headers.h:418
ns3::MgtAddBaRequestHeader::m_dialogToken
uint8_t m_dialogToken
Definition:
mgt-headers.h:689
visualizer.core.start
def start()
Definition:
core.py:1482
ns3::MgtAssocResponseHeader::m_capability
CapabilityInformation m_capability
Capability information.
Definition:
mgt-headers.h:227
ns3::MgtProbeResponseHeader::m_capability
CapabilityInformation m_capability
Capability information.
Definition:
mgt-headers.h:419
ns3::MgtAddBaRequestHeader::SetBufferSize
void SetBufferSize(uint16_t size)
Set buffer size.
Definition:
mgt-headers.cc:1015
ns3::WifiActionHeader::MESH
Definition:
mgt-headers.h:466
ns3::MgtAddBaRequestHeader
Implement the header for management frames of type add block ack request.
Definition:
mgt-headers.h:571
ns3::MgtAddBaResponseHeader::IsImmediateBlockAck
bool IsImmediateBlockAck(void) const
Return whether the Block ACK policy is immediate Block ACK.
Definition:
mgt-headers.cc:1225
ns3::MgtAssocRequestHeader::m_htCapability
HtCapabilities m_htCapability
HT capabilities.
Definition:
mgt-headers.h:137
status-code.h
ns3::MgtProbeRequestHeader::m_vhtCapability
VhtCapabilities m_vhtCapability
VHT capabilities.
Definition:
mgt-headers.h:310
ns3::MgtAssocRequestHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
mgt-headers.cc:450
ns3::HtCapabilities
The HT Capabilities Information ElementThis class knows how to serialise and deserialise the HT Capab...
Definition:
ht-capabilities.h:46
ns3::MgtAddBaRequestHeader::MgtAddBaRequestHeader
MgtAddBaRequestHeader()
Definition:
mgt-headers.cc:928
ns3::WifiActionHeader::PORTAL_ANNOUNCEMENT
Definition:
mgt-headers.h:493
ns3::MgtAssocRequestHeader::SetHtCapabilities
void SetHtCapabilities(HtCapabilities htcapabilities)
Set the HT capabilities.
Definition:
mgt-headers.cc:391
ns3::MgtProbeResponseHeader::SetCapabilities
void SetCapabilities(CapabilityInformation capabilities)
Set the Capability information.
Definition:
mgt-headers.cc:189
ns3::MgtAssocRequestHeader::SetSsid
void SetSsid(Ssid ssid)
Set the Service Set Identifier (SSID).
Definition:
mgt-headers.cc:361
ns3::MgtAddBaResponseHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:1132
ns3::MgtAddBaRequestHeader::m_startingSeq
uint16_t m_startingSeq
Starting sequence number.
Definition:
mgt-headers.h:695
ns3::WifiActionHeader::SetAction
void SetAction(enum CategoryValue type, ActionValue action)
Set action for this Action header.
Definition:
mgt-headers.cc:655
ns3::WifiActionHeader::CategoryValueToString
std::string CategoryValueToString(CategoryValue value) const
Definition:
mgt-headers.cc:836
ns3::MgtAddBaRequestHeader::GetBufferSize
uint16_t GetBufferSize(void) const
Return the buffer size.
Definition:
mgt-headers.cc:1057
ns3::MgtAssocResponseHeader::GetVhtCapabilities
VhtCapabilities GetVhtCapabilities(void) const
Return the VHT capabilities.
Definition:
mgt-headers.cc:564
ns3::MgtAddBaResponseHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:1126
ns3::WifiActionHeader::GetCategory
CategoryValue GetCategory()
Return the category value.
Definition:
mgt-headers.cc:689
ns3::WifiActionHeader::~WifiActionHeader
~WifiActionHeader()
Definition:
mgt-headers.cc:650
ns3::MgtAddBaResponseHeader::SetDelayedBlockAck
void SetDelayedBlockAck()
Enable delayed Block ACK.
Definition:
mgt-headers.cc:1170
timeout
ns3::Time timeout
Definition:
openflow-switch.cc:52
ns3::MgtDelBaHeader::SetTid
void SetTid(uint8_t)
Set Traffic ID (TID).
Definition:
mgt-headers.cc:1355
ns3::MgtAddBaResponseHeader::SetStatusCode
void SetStatusCode(StatusCode code)
Set the status code.
Definition:
mgt-headers.cc:1201
ns3::WifiActionHeader::BlockAckActionValue
BlockAckActionValue
Block ACK action field values See 802.11 Table 8-202.
Definition:
mgt-headers.h:508
ns3::SupportedRates
The Supported Rates Information ElementThis class knows how to serialise and deserialise the Supporte...
Definition:
supported-rates.h:104
ns3::MgtAssocRequestHeader::m_capability
CapabilityInformation m_capability
Capability information.
Definition:
mgt-headers.h:136
ns3::MgtAddBaRequestHeader::m_bufferSize
uint16_t m_bufferSize
Buffer size.
Definition:
mgt-headers.h:693
ns3::MgtProbeRequestHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:112
ns3::MgtAddBaResponseHeader::SetTimeout
void SetTimeout(uint16_t timeout)
Set timeout.
Definition:
mgt-headers.cc:1189
ns3::MgtProbeRequestHeader::GetSsid
Ssid GetSsid(void) const
Return the Service Set Identifier (SSID).
Definition:
mgt-headers.cc:47
ns3::CapabilityInformation
Capability information.
Definition:
capability-information.h:34
ns3::MgtProbeRequestHeader::SetSupportedRates
void SetSupportedRates(SupportedRates rates)
Set the supported rates.
Definition:
mgt-headers.cc:53
ns3::MgtAddBaRequestHeader::SetAmsduSupport
void SetAmsduSupport(bool supported)
Enable or disable A-MSDU support.
Definition:
mgt-headers.cc:1033
ns3::MgtAssocRequestHeader::GetSsid
Ssid GetSsid(void) const
Return the Service Set Identifier (SSID).
Definition:
mgt-headers.cc:415
ns3::Buffer::Iterator
iterator in a Buffer instance
Definition:
buffer.h:98
ns3::MgtDelBaHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:1292
ns3::MgtAssocRequestHeader::SetSupportedRates
void SetSupportedRates(SupportedRates rates)
Set the supported rates.
Definition:
mgt-headers.cc:367
ns3::MgtAddBaResponseHeader::IsAmsduSupported
bool IsAmsduSupported(void) const
Return whether A-MSDU capability is supported.
Definition:
mgt-headers.cc:1243
ns3::MgtAddBaRequestHeader::GetStartingSequenceControl
uint16_t GetStartingSequenceControl(void) const
Return the raw sequence control.
Definition:
mgt-headers.cc:1075
ns3::MgtDelBaHeader::m_reasonCode
uint16_t m_reasonCode
Definition:
mgt-headers.h:885
ns3::MgtAddBaResponseHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:1149
ns3::MgtAddBaResponseHeader::SetTid
void SetTid(uint8_t tid)
Set Traffic ID (TID).
Definition:
mgt-headers.cc:1182
ns3::MgtProbeResponseHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:276
ns3::MgtProbeResponseHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:285
ns3::MgtProbeResponseHeader::GetVhtCapabilities
VhtCapabilities GetVhtCapabilities(void) const
Return the VHT capabilities.
Definition:
mgt-headers.cc:219
ns3::MgtAssocRequestHeader::GetSupportedRates
SupportedRates GetSupportedRates(void) const
Return the supported rates.
Definition:
mgt-headers.cc:421
ns3::MgtAssocRequestHeader::SetListenInterval
void SetListenInterval(uint16_t interval)
Set the listen interval.
Definition:
mgt-headers.cc:373
ns3::WifiActionHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:819
ns3::MgtAddBaResponseHeader::m_amsduSupport
uint8_t m_amsduSupport
Flag if A-MSDU is supported.
Definition:
mgt-headers.h:812
ns3::MgtAddBaRequestHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:947
ns3::WifiActionHeader::PEER_LINK_OPEN
Definition:
mgt-headers.h:476
supported-rates.h
ns3::MgtDelBaHeader::m_initiator
uint16_t m_initiator
Definition:
mgt-headers.h:883
ns3::WifiActionHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:830
ns3::WifiActionHeader::MultihopActionValue
MultihopActionValue
Definition:
mgt-headers.h:483
ns3::MgtAddBaRequestHeader::SetParameterSet
void SetParameterSet(uint16_t params)
Set the parameter set from the given raw value.
Definition:
mgt-headers.cc:1092
ns3::WifiActionHeader::MDA_SETUP_REQUEST
Definition:
mgt-headers.h:495
ns3::MgtDelBaHeader::MgtDelBaHeader
MgtDelBaHeader()
Definition:
mgt-headers.cc:1275
ns3::MgtAddBaRequestHeader::m_tid
uint8_t m_tid
Traffic ID.
Definition:
mgt-headers.h:692
ns3::WifiActionHeader::BLOCK_ACK
Definition:
mgt-headers.h:465
ns3::MgtProbeRequestHeader::m_rates
SupportedRates m_rates
List of supported rates.
Definition:
mgt-headers.h:308
ns3::MgtAssocRequestHeader::GetCapabilities
CapabilityInformation GetCapabilities(void) const
Return the Capability information.
Definition:
mgt-headers.cc:385
ns3::WifiActionHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Definition:
mgt-headers.cc:900
ns3::VhtCapabilities
The IEEE 802.11ac VHT Capabilities.
Definition:
vht-capabilities.h:37
ns3::MgtAddBaRequestHeader::SetStartingSequenceControl
void SetStartingSequenceControl(uint16_t seqControl)
Set sequence control with the given raw value.
Definition:
mgt-headers.cc:1027
ns3::MgtAddBaResponseHeader::SetImmediateBlockAck
void SetImmediateBlockAck()
Enable immediate Block ACK.
Definition:
mgt-headers.cc:1176
ns3::WifiActionHeader::GROUP_KEY_INFORM
Definition:
mgt-headers.h:479
ns3::MgtAddBaRequestHeader::SetTid
void SetTid(uint8_t tid)
Set Traffic ID (TID).
Definition:
mgt-headers.cc:1002
ns3::MgtAssocRequestHeader::GetListenInterval
uint16_t GetListenInterval(void) const
Return the listen interval.
Definition:
mgt-headers.cc:427
ns3::MgtAddBaResponseHeader::SetParameterSet
void SetParameterSet(uint16_t params)
Set the parameter set from the given raw value.
Definition:
mgt-headers.cc:1260
ns3::WifiActionHeader::MDAOP_SET_TEARDOWN
Definition:
mgt-headers.h:499
ns3::MgtProbeRequestHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:118
ns3::MgtProbeRequestHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:138
ns3::WifiActionHeader::MULTIHOP
Definition:
mgt-headers.h:467
ns3::MgtAddBaRequestHeader::m_amsduSupport
uint8_t m_amsduSupport
Flag if A-MSDU is supported.
Definition:
mgt-headers.h:690
ns3::WifiActionHeader::BLOCK_ACK_ADDBA_RESPONSE
Definition:
mgt-headers.h:511
ns3::MgtAddBaRequestHeader::SetStartingSequence
void SetStartingSequence(uint16_t seq)
Set the starting sequence number.
Definition:
mgt-headers.cc:1021
ns3::MgtAddBaRequestHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:969
ns3::MgtAssocRequestHeader::~MgtAssocRequestHeader
~MgtAssocRequestHeader()
Definition:
mgt-headers.cc:356
ns3::MgtAssocRequestHeader::MgtAssocRequestHeader
MgtAssocRequestHeader()
Definition:
mgt-headers.cc:351
ns3::MgtAddBaRequestHeader::GetTid
uint8_t GetTid(void) const
Return the Traffic ID (TID).
Definition:
mgt-headers.cc:1039
ns3::MgtAssocResponseHeader::SetVhtCapabilities
void SetVhtCapabilities(VhtCapabilities vhtcapabilities)
Set the VHT capabilities.
Definition:
mgt-headers.cc:558
ns3::WifiActionHeader::LINK_METRIC_REPORT
Definition:
mgt-headers.h:491
ns3::WifiActionHeader::MDA_SETUP_REPLY
Definition:
mgt-headers.h:496
ns3::MgtAssocResponseHeader::GetSupportedRates
SupportedRates GetSupportedRates(void)
Return the supported rates.
Definition:
mgt-headers.cc:522
ns3::MgtProbeResponseHeader::m_timestamp
uint64_t m_timestamp
Timestamp.
Definition:
mgt-headers.h:415
ns3::MgtProbeRequestHeader::SetHtCapabilities
void SetHtCapabilities(HtCapabilities htcapabilities)
Set the HT capabilities.
Definition:
mgt-headers.cc:59
ns3::MgtAssocRequestHeader::m_listenInterval
uint16_t m_listenInterval
Definition:
mgt-headers.h:139
ns3::MgtAssocResponseHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:587
ns3::MgtProbeResponseHeader::GetTimestamp
uint64_t GetTimestamp()
Return the time stamp.
Definition:
mgt-headers.cc:165
ns3::MgtAddBaRequestHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
mgt-headers.cc:958
ns3::MgtDelBaHeader::SetByOriginator
void SetByOriginator(void)
Set the initiator bit in the DELBA.
Definition:
mgt-headers.cc:1343
ns3::StatusCode
Status code for association response.
Definition:
status-code.h:33
ns3::MgtProbeResponseHeader::SetSsid
void SetSsid(Ssid ssid)
Set the Service Set Identifier (SSID).
Definition:
mgt-headers.cc:225
ns3::WifiActionHeader::SelfProtectedActionValueToString
std::string SelfProtectedActionValueToString(SelfProtectedActionValue value) const
Definition:
mgt-headers.cc:862
ns3::MgtProbeResponseHeader::~MgtProbeResponseHeader
~MgtProbeResponseHeader()
Definition:
mgt-headers.cc:160
ns3::MgtAssocRequestHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:464
ns3::WifiActionHeader::PROXY_UPDATE
Definition:
mgt-headers.h:485
ns3::MgtDelBaHeader::SetByRecipient
void SetByRecipient(void)
Un-set the initiator bit in the DELBA.
Definition:
mgt-headers.cc:1349
ns3::MgtAddBaRequestHeader::IsAmsduSupported
bool IsAmsduSupported(void) const
Return whether A-MSDU capability is supported.
Definition:
mgt-headers.cc:1063
ns3::MgtDelBaHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:1281
ns3::MgtAssocRequestHeader::GetVhtCapabilities
VhtCapabilities GetVhtCapabilities(void) const
Return the VHT capabilities.
Definition:
mgt-headers.cc:409
ns3::MgtProbeResponseHeader::m_vhtCapability
VhtCapabilities m_vhtCapability
VHT capabilities.
Definition:
mgt-headers.h:421
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::MgtAddBaResponseHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
mgt-headers.cc:1138
ns3::MgtProbeResponseHeader::SetBeaconIntervalUs
void SetBeaconIntervalUs(uint64_t us)
Set the beacon interval in microseconds unit.
Definition:
mgt-headers.cc:231
ns3::WifiActionHeader::TBTT_ADJUSTMENT_RESPONSE
Definition:
mgt-headers.h:501
ns3::MgtProbeResponseHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:243
capability-information.h
ns3::MgtAddBaResponseHeader::SetBufferSize
void SetBufferSize(uint16_t size)
Set buffer size.
Definition:
mgt-headers.cc:1195
ns3::MgtDelBaHeader::GetTid
uint8_t GetTid(void) const
Return the Traffic ID (TID).
Definition:
mgt-headers.cc:1335
ns3::MgtDelBaHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:1312
ns3::WifiActionHeader::VENDOR_SPECIFIC_ACTION
Definition:
mgt-headers.h:471
ns3::WifiActionHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:913
ns3::WifiActionHeader::PATH_SELECTION
Definition:
mgt-headers.h:492
ns3::MgtProbeResponseHeader::GetHtCapabilities
HtCapabilities GetHtCapabilities(void) const
Return the HT capabilities.
Definition:
mgt-headers.cc:207
ns3::MgtAddBaResponseHeader::GetStatusCode
StatusCode GetStatusCode(void) const
Return the status code.
Definition:
mgt-headers.cc:1213
ns3::MgtProbeRequestHeader::GetHtCapabilities
HtCapabilities GetHtCapabilities(void) const
Return the HT capabilities.
Definition:
mgt-headers.cc:65
ns3::WifiActionHeader::MDAOP_ADVERTISMENTS
Definition:
mgt-headers.h:498
ns3::MgtDelBaHeader::IsByOriginator
bool IsByOriginator(void) const
Check if the initiator bit in the DELBA is setted.
Definition:
mgt-headers.cc:1329
ns3::MgtAssocRequestHeader::SetVhtCapabilities
void SetVhtCapabilities(VhtCapabilities vhtcapabilities)
Set the VHT capabilities.
Definition:
mgt-headers.cc:403
third.ssid
tuple ssid
Definition:
third.py:93
ns3::MgtAssocRequestHeader::m_vhtCapability
VhtCapabilities m_vhtCapability
VHT capabilities.
Definition:
mgt-headers.h:138
ns3::MgtProbeResponseHeader::m_htCapability
HtCapabilities m_htCapability
HT capabilities.
Definition:
mgt-headers.h:420
ns3::MgtProbeResponseHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:309
ns3::MgtAddBaResponseHeader::MgtAddBaResponseHeader
MgtAddBaResponseHeader()
Definition:
mgt-headers.cc:1107
ns3::MgtBeaconHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:334
ns3::MgtAddBaResponseHeader::m_tid
uint8_t m_tid
Traffic ID.
Definition:
mgt-headers.h:814
ns3::MgtAssocResponseHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:607
ns3::MgtAddBaResponseHeader::GetTimeout
uint16_t GetTimeout(void) const
Return the timeout.
Definition:
mgt-headers.cc:1231
ns3::MgtAddBaResponseHeader::GetTid
uint8_t GetTid(void) const
Return the Traffic ID (TID).
Definition:
mgt-headers.cc:1219
ns3::WifiActionHeader::m_actionValue
uint8_t m_actionValue
Action value.
Definition:
mgt-headers.h:563
ns3::Ssid
The IEEE 802.11 SSID Information Element.
Definition:
ssid.h:38
ns3::MgtProbeRequestHeader
Implement the header for management frames of type probe request.
Definition:
mgt-headers.h:239
ns3::MgtProbeResponseHeader::SetVhtCapabilities
void SetVhtCapabilities(VhtCapabilities vhtcapabilities)
Set the VHT capabilities.
Definition:
mgt-headers.cc:213
ns3::MgtAddBaRequestHeader::IsImmediateBlockAck
bool IsImmediateBlockAck(void) const
Return whether the Block ACK policy is immediate Block ACK.
Definition:
mgt-headers.cc:1045
ns3::MgtAssocResponseHeader
Implement the header for management frames of type association response.
Definition:
mgt-headers.h:147
ns3::WifiActionHeader::WifiActionHeader
WifiActionHeader()
Definition:
mgt-headers.cc:646
ns3::MgtAddBaResponseHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:1159
ns3::MgtAssocResponseHeader::m_code
StatusCode m_code
Status code.
Definition:
mgt-headers.h:228
ns3::MgtAddBaRequestHeader::GetStartingSequence
uint16_t GetStartingSequence(void) const
Return the starting sequence number.
Definition:
mgt-headers.cc:1069
ns3::MgtAssocResponseHeader::SetCapabilities
void SetCapabilities(CapabilityInformation capabilities)
Set the Capability information.
Definition:
mgt-headers.cc:540
ns3::MgtDelBaHeader::m_tid
uint16_t m_tid
Traffic ID.
Definition:
mgt-headers.h:884
ns3::WifiActionHeader::GROUP_KEY_ACK
Definition:
mgt-headers.h:480
ns3::MgtAddBaRequestHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:936
ns3::WifiActionHeader::PEER_LINK_CLOSE
Definition:
mgt-headers.h:478
ns3::WifiActionHeader::BLOCK_ACK_DELBA
Definition:
mgt-headers.h:512
ns3::MgtAssocResponseHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:576
ns3::MgtAssocResponseHeader::SetSupportedRates
void SetSupportedRates(SupportedRates rates)
Set the supported rates.
Definition:
mgt-headers.cc:534
ns3::MgtAddBaResponseHeader::m_dialogToken
uint8_t m_dialogToken
Definition:
mgt-headers.h:810
ns3::MgtDelBaHeader::GetParameterSet
uint16_t GetParameterSet(void) const
Return the raw parameter set.
Definition:
mgt-headers.cc:1362
ns3::MgtAddBaResponseHeader
Implement the header for management frames of type add block ack response.
Definition:
mgt-headers.h:703
ns3::MgtDelBaHeader
Implement the header for management frames of type del block ack.
Definition:
mgt-headers.h:824
ns3::MgtAssocResponseHeader::~MgtAssocResponseHeader
~MgtAssocResponseHeader()
Definition:
mgt-headers.cc:511
ns3::WifiActionHeader::ActionValue
typedef for union of different ActionValues
Definition:
mgt-headers.h:519
ns3::MgtProbeResponseHeader::MgtProbeResponseHeader
MgtProbeResponseHeader()
Definition:
mgt-headers.cc:156
ns3::WifiActionHeader::BLOCK_ACK_ADDBA_REQUEST
Definition:
mgt-headers.h:510
ns3::MgtAddBaRequestHeader::m_policy
uint8_t m_policy
Block ACK policy.
Definition:
mgt-headers.h:691
ssid.h
ns3::MgtAssocResponseHeader::m_htCapability
HtCapabilities m_htCapability
HT capabilities.
Definition:
mgt-headers.h:230
ns3::WifiActionHeader::PEER_LINK_CONFIRM
Definition:
mgt-headers.h:477
ns3::MgtProbeResponseHeader::SetSupportedRates
void SetSupportedRates(SupportedRates rates)
Set the supported rates.
Definition:
mgt-headers.cc:237
ns3::MgtProbeRequestHeader::m_ssid
Ssid m_ssid
Service Set ID (SSID)
Definition:
mgt-headers.h:307
ns3::MgtAssocResponseHeader::MgtAssocResponseHeader
MgtAssocResponseHeader()
Definition:
mgt-headers.cc:506
ns3::MgtAssocResponseHeader::SetHtCapabilities
void SetHtCapabilities(HtCapabilities htcapabilities)
Set the HT capabilities.
Definition:
mgt-headers.cc:552
ns3::MgtAssocResponseHeader::m_aid
uint16_t m_aid
Definition:
mgt-headers.h:229
ns3::MgtProbeResponseHeader::GetCapabilities
CapabilityInformation GetCapabilities(void) const
Return the Capability information.
Definition:
mgt-headers.cc:195
ns3::MgtProbeRequestHeader::SetSsid
void SetSsid(Ssid ssid)
Set the Service Set Identifier (SSID).
Definition:
mgt-headers.cc:41
ns3::MgtAssocResponseHeader::SetStatusCode
void SetStatusCode(StatusCode code)
Set the status code.
Definition:
mgt-headers.cc:528
ns3::MgtDelBaHeader::SetParameterSet
void SetParameterSet(uint16_t params)
Set the parameter set from the given raw value.
Definition:
mgt-headers.cc:1371
ns3::MgtAddBaResponseHeader::SetAmsduSupport
void SetAmsduSupport(bool supported)
Enable or disable A-MSDU support.
Definition:
mgt-headers.cc:1207
ns3::WifiActionHeader::MeshActionValue
MeshActionValue
Definition:
mgt-headers.h:489
ns3::WifiActionHeader::m_category
uint8_t m_category
Category of the action.
Definition:
mgt-headers.h:562
ns3::MgtAddBaRequestHeader::SetDelayedBlockAck
void SetDelayedBlockAck()
Enable delayed Block ACK.
Definition:
mgt-headers.cc:990
ns3::MgtAssocRequestHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:486
ns3::MgtAddBaRequestHeader::SetTimeout
void SetTimeout(uint16_t timeout)
Set timeout.
Definition:
mgt-headers.cc:1009
ns3::MgtProbeResponseHeader
Implement the header for management frames of type probe response.
Definition:
mgt-headers.h:318
vht-capabilities.h
ns3::MgtAssocResponseHeader::m_vhtCapability
VhtCapabilities m_vhtCapability
VHT capabilities.
Definition:
mgt-headers.h:231
ns3::MgtAddBaRequestHeader::GetParameterSet
uint16_t GetParameterSet(void) const
Return the raw parameter set.
Definition:
mgt-headers.cc:1081
ns3::WifiActionHeader::TBTT_ADJUSTMENT_REQUEST
Definition:
mgt-headers.h:500
ns3::WifiActionHeader::GetAction
ActionValue GetAction()
Return the action value.
Definition:
mgt-headers.cc:710
ns3::MgtAddBaResponseHeader::m_bufferSize
uint16_t m_bufferSize
Buffer size.
Definition:
mgt-headers.h:815
ns3::MgtAddBaResponseHeader::GetParameterSet
uint16_t GetParameterSet(void) const
Return the raw parameter set.
Definition:
mgt-headers.cc:1249
ns3::MgtProbeResponseHeader::m_beaconInterval
uint64_t m_beaconInterval
Beacon interval.
Definition:
mgt-headers.h:417
ns3::MgtProbeRequestHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
mgt-headers.cc:89
ns3::MgtAddBaResponseHeader::m_timeoutValue
uint16_t m_timeoutValue
Timeout.
Definition:
mgt-headers.h:816
ns3::MgtAssocRequestHeader::m_ssid
Ssid m_ssid
Service Set ID (SSID)
Definition:
mgt-headers.h:134
ns3::MgtAssocRequestHeader::GetHtCapabilities
HtCapabilities GetHtCapabilities(void) const
Return the HT capabilities.
Definition:
mgt-headers.cc:397
ns3::MgtProbeResponseHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
mgt-headers.cc:260
ht-capabilities.h
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:58
ns3::MgtProbeRequestHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:127
ns3::MgtProbeResponseHeader::SetHtCapabilities
void SetHtCapabilities(HtCapabilities htcapabilities)
Set the HT capabilities.
Definition:
mgt-headers.cc:201
ns3::MgtBeaconHeader
Implement the header for management frames of type beacon.
Definition:
mgt-headers.h:429
ns3::WifiActionHeader::MDAOP_ADVERTISMENT_REQUEST
Definition:
mgt-headers.h:497
ns3::MgtAssocResponseHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:629
ns3::MgtAssocResponseHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
mgt-headers.cc:593
ns3::MgtAssocResponseHeader::GetStatusCode
StatusCode GetStatusCode(void)
Return the status code.
Definition:
mgt-headers.cc:516
ns3::WifiActionHeader::CONGESTION_CONTROL_NOTIFICATION
Definition:
mgt-headers.h:494
ns3::MgtProbeResponseHeader::m_ssid
Ssid m_ssid
Service set ID (SSID)
Definition:
mgt-headers.h:416
ns3::MgtProbeRequestHeader::SetVhtCapabilities
void SetVhtCapabilities(VhtCapabilities vhtcapabilities)
Set the VHT capabilities.
Definition:
mgt-headers.cc:71
ns3::WifiActionHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:906
ns3::MgtDelBaHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:1320
ns3::WifiActionHeader::SelfProtectedActionValue
SelfProtectedActionValue
Definition:
mgt-headers.h:474
ns3::MgtAddBaRequestHeader::GetTimeout
uint16_t GetTimeout(void) const
Return the timeout.
Definition:
mgt-headers.cc:1051
ns3::MgtAssocResponseHeader::GetHtCapabilities
HtCapabilities GetHtCapabilities(void) const
Return the HT capabilities.
Definition:
mgt-headers.cc:570
ns3::MgtDelBaHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:1298
ns3::WifiActionHeader::PROXY_UPDATE_CONFIRMATION
Definition:
mgt-headers.h:486
ns3::MgtAssocRequestHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:473
ns3::MgtProbeRequestHeader::~MgtProbeRequestHeader
~MgtProbeRequestHeader()
Definition:
mgt-headers.cc:36
src
wifi
model
mgt-headers.h
Generated on Wed Nov 11 2015 20:00:52 for ns-3 by
1.8.9.1