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 "
ht-operations.h
"
35
#include "
vht-capabilities.h
"
36
#include "
erp-information.h
"
37
38
namespace
ns3
{
39
44
class
MgtAssocRequestHeader
:
public
Header
45
{
46
public
:
47
MgtAssocRequestHeader
();
48
~MgtAssocRequestHeader
();
49
55
void
SetSsid
(
Ssid
ssid
);
61
void
SetSupportedRates
(
SupportedRates
rates);
67
void
SetListenInterval
(uint16_t interval);
73
void
SetCapabilities
(
CapabilityInformation
capabilities);
79
void
SetHtCapabilities
(
HtCapabilities
htcapabilities);
85
void
SetVhtCapabilities
(
VhtCapabilities
vhtcapabilities);
91
CapabilityInformation
GetCapabilities
(
void
)
const
;
97
HtCapabilities
GetHtCapabilities
(
void
)
const
;
103
VhtCapabilities
GetVhtCapabilities
(
void
)
const
;
109
Ssid
GetSsid
(
void
)
const
;
115
SupportedRates
GetSupportedRates
(
void
)
const
;
121
uint16_t
GetListenInterval
(
void
)
const
;
122
127
static
TypeId
GetTypeId
(
void
);
128
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
129
virtual
void
Print
(std::ostream &os)
const
;
130
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
131
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
132
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
133
134
135
private
:
136
Ssid
m_ssid
;
137
SupportedRates
m_rates
;
138
CapabilityInformation
m_capability
;
139
HtCapabilities
m_htCapability
;
140
VhtCapabilities
m_vhtCapability
;
141
uint16_t
m_listenInterval
;
142
};
143
144
149
class
MgtAssocResponseHeader
:
public
Header
150
{
151
public
:
152
MgtAssocResponseHeader
();
153
~MgtAssocResponseHeader
();
154
160
StatusCode
GetStatusCode
(
void
);
166
SupportedRates
GetSupportedRates
(
void
);
172
CapabilityInformation
GetCapabilities
(
void
)
const
;
178
void
SetCapabilities
(
CapabilityInformation
capabilities);
184
HtCapabilities
GetHtCapabilities
(
void
)
const
;
190
HtOperations
GetHtOperations
(
void
)
const
;
196
ErpInformation
GetErpInformation
(
void
)
const
;
202
void
SetVhtCapabilities
(
VhtCapabilities
vhtcapabilities);
208
VhtCapabilities
GetVhtCapabilities
(
void
)
const
;
214
void
SetHtCapabilities
(
HtCapabilities
htcapabilities);
220
void
SetHtOperations
(
HtOperations
htoperations);
226
void
SetSupportedRates
(
SupportedRates
rates);
232
void
SetStatusCode
(
StatusCode
code);
238
void
SetErpInformation
(
ErpInformation
erpInformation);
239
244
static
TypeId
GetTypeId
(
void
);
245
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
246
virtual
void
Print
(std::ostream &os)
const
;
247
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
248
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
249
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
250
251
252
private
:
253
SupportedRates
m_rates
;
254
CapabilityInformation
m_capability
;
255
StatusCode
m_code
;
256
uint16_t
m_aid
;
257
HtCapabilities
m_htCapability
;
258
HtOperations
m_htOperations
;
259
VhtCapabilities
m_vhtCapability
;
260
ErpInformation
m_erpInformation
;
261
};
262
263
268
class
MgtProbeRequestHeader
:
public
Header
269
{
270
public
:
271
~MgtProbeRequestHeader
();
272
278
void
SetSsid
(
Ssid
ssid
);
284
void
SetSupportedRates
(
SupportedRates
rates);
290
Ssid
GetSsid
(
void
)
const
;
296
SupportedRates
GetSupportedRates
(
void
)
const
;
302
void
SetHtCapabilities
(
HtCapabilities
htcapabilities);
308
HtCapabilities
GetHtCapabilities
(
void
)
const
;
314
void
SetVhtCapabilities
(
VhtCapabilities
vhtcapabilities);
320
VhtCapabilities
GetVhtCapabilities
(
void
)
const
;
321
326
static
TypeId
GetTypeId
(
void
);
327
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
328
virtual
void
Print
(std::ostream &os)
const
;
329
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
330
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
331
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
332
333
334
private
:
335
Ssid
m_ssid
;
336
SupportedRates
m_rates
;
337
HtCapabilities
m_htCapability
;
338
VhtCapabilities
m_vhtCapability
;
339
};
340
341
346
class
MgtProbeResponseHeader
:
public
Header
347
{
348
public
:
349
MgtProbeResponseHeader
();
350
~MgtProbeResponseHeader
();
351
357
Ssid
GetSsid
(
void
)
const
;
363
uint64_t
GetBeaconIntervalUs
(
void
)
const
;
369
SupportedRates
GetSupportedRates
(
void
)
const
;
375
CapabilityInformation
GetCapabilities
(
void
)
const
;
381
HtCapabilities
GetHtCapabilities
(
void
)
const
;
387
HtOperations
GetHtOperations
(
void
)
const
;
393
VhtCapabilities
GetVhtCapabilities
(
void
)
const
;
399
ErpInformation
GetErpInformation
(
void
)
const
;
405
void
SetCapabilities
(
CapabilityInformation
capabilities);
411
void
SetHtCapabilities
(
HtCapabilities
htcapabilities);
417
void
SetHtOperations
(
HtOperations
htoperations);
423
void
SetVhtCapabilities
(
VhtCapabilities
vhtcapabilities);
429
void
SetSsid
(
Ssid
ssid
);
435
void
SetBeaconIntervalUs
(uint64_t us);
441
void
SetSupportedRates
(
SupportedRates
rates);
447
void
SetErpInformation
(
ErpInformation
erpInformation);
453
uint64_t
GetTimestamp
();
454
459
static
TypeId
GetTypeId
(
void
);
460
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
461
virtual
void
Print
(std::ostream &os)
const
;
462
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
463
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
464
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
465
466
467
private
:
468
uint64_t
m_timestamp
;
469
Ssid
m_ssid
;
470
uint64_t
m_beaconInterval
;
471
SupportedRates
m_rates
;
472
CapabilityInformation
m_capability
;
473
HtCapabilities
m_htCapability
;
474
HtOperations
m_htOperations
;
475
VhtCapabilities
m_vhtCapability
;
476
ErpInformation
m_erpInformation
;
477
};
478
479
484
class
MgtBeaconHeader
:
public
MgtProbeResponseHeader
485
{
486
public
:
492
static
TypeId
GetTypeId
(
void
);
493
};
494
495
496
/****************************
497
* Action frames
498
*****************************/
499
507
class
WifiActionHeader
:
public
Header
508
{
509
public
:
510
WifiActionHeader
();
511
~WifiActionHeader
();
512
513
/*
514
* Compatible with table 8-38 IEEE 802.11, Part11, (Year 2012)
515
* Category values - see 802.11-2012 Table 8-38
516
*/
517
518
enum
CategoryValue
//table 8-38 staring from IEEE 802.11, Part11, (Year 2012)
519
{
520
BLOCK_ACK
= 3,
521
MESH
= 13,
//Category: Mesh
522
MULTIHOP
= 14,
//not used so far
523
SELF_PROTECTED
= 15,
//Category: Self Protected
524
//Since vendor specific action has no stationary Action value,the parse process is not here.
525
//Refer to vendor-specific-action in wave module.
526
VENDOR_SPECIFIC_ACTION
= 127,
527
};
528
529
enum
SelfProtectedActionValue
//Category: 15 (Self Protected)
530
{
531
PEER_LINK_OPEN
= 1,
//Mesh Peering Open
532
PEER_LINK_CONFIRM
= 2,
//Mesh Peering Confirm
533
PEER_LINK_CLOSE
= 3,
//Mesh Peering Close
534
GROUP_KEY_INFORM
= 4,
//Mesh Group Key Inform
535
GROUP_KEY_ACK
= 5,
//Mesh Group Key Acknowledge
536
};
537
538
enum
MultihopActionValue
539
{
540
PROXY_UPDATE
= 0,
//not used so far
541
PROXY_UPDATE_CONFIRMATION
= 1,
//not used so far
542
};
543
544
enum
MeshActionValue
545
{
546
LINK_METRIC_REPORT
= 0,
//Action Value:0 in Category 13: Mesh
547
PATH_SELECTION
= 1,
//Action Value:1 in Category 13: Mesh
548
PORTAL_ANNOUNCEMENT
= 2,
//Action Value:2 in Category 13: Mesh
549
CONGESTION_CONTROL_NOTIFICATION
= 3,
//Action Value:3 in Category 13: Mesh
550
MDA_SETUP_REQUEST
= 4,
//Action Value:4 in Category 13: Mesh MCCA-Setup-Request (not used so far)
551
MDA_SETUP_REPLY
= 5,
//Action Value:5 in Category 13: Mesh MCCA-Setup-Reply (not used so far)
552
MDAOP_ADVERTISMENT_REQUEST
= 6,
//Action Value:6 in Category 13: Mesh MCCA-Advertisement-Request (not used so far)
553
MDAOP_ADVERTISMENTS
= 7,
//Action Value:7 in Category 13: Mesh (not used so far)
554
MDAOP_SET_TEARDOWN
= 8,
//Action Value:8 in Category 13: Mesh (not used so far)
555
TBTT_ADJUSTMENT_REQUEST
= 9,
//Action Value:9 in Category 13: Mesh (not used so far)
556
TBTT_ADJUSTMENT_RESPONSE
= 10,
//Action Value:10 in Category 13: Mesh (not used so far)
557
};
558
563
enum
BlockAckActionValue
564
{
565
BLOCK_ACK_ADDBA_REQUEST
= 0,
566
BLOCK_ACK_ADDBA_RESPONSE
= 1,
567
BLOCK_ACK_DELBA
= 2
568
};
569
570
574
typedef
union
575
{
576
enum
MeshActionValue
meshAction;
577
enum
MultihopActionValue
multihopAction;
578
enum
SelfProtectedActionValue
selfProtectedAction;
579
enum
BlockAckActionValue
blockAck;
580
}
ActionValue
;
587
void
SetAction
(
enum
CategoryValue
type,
ActionValue
action);
588
594
CategoryValue
GetCategory
();
600
ActionValue
GetAction
();
601
606
static
TypeId
GetTypeId
(
void
);
607
virtual
TypeId
GetInstanceTypeId
()
const
;
608
virtual
void
Print
(std::ostream &os)
const
;
609
virtual
uint32_t
GetSerializedSize
()
const
;
610
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
611
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start
);
612
613
614
private
:
615
std::string
CategoryValueToString
(
CategoryValue
value)
const
;
616
std::string
SelfProtectedActionValueToString
(
SelfProtectedActionValue
value)
const
;
617
uint8_t
m_category
;
618
uint8_t
m_actionValue
;
619
};
620
621
626
class
MgtAddBaRequestHeader
:
public
Header
627
{
628
public
:
629
MgtAddBaRequestHeader
();
630
635
static
TypeId
GetTypeId
(
void
);
636
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
637
virtual
void
Print
(std::ostream &os)
const
;
638
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
639
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
640
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
641
645
void
SetDelayedBlockAck
();
649
void
SetImmediateBlockAck
();
655
void
SetTid
(uint8_t tid);
661
void
SetTimeout
(uint16_t
timeout
);
667
void
SetBufferSize
(uint16_t size);
673
void
SetStartingSequence
(uint16_t seq);
679
void
SetAmsduSupport
(
bool
supported);
680
686
uint16_t
GetStartingSequence
(
void
)
const
;
692
uint8_t
GetTid
(
void
)
const
;
698
bool
IsImmediateBlockAck
(
void
)
const
;
704
uint16_t
GetTimeout
(
void
)
const
;
710
uint16_t
GetBufferSize
(
void
)
const
;
716
bool
IsAmsduSupported
(
void
)
const
;
717
718
private
:
724
uint16_t
GetParameterSet
(
void
)
const
;
730
void
SetParameterSet
(uint16_t params);
736
uint16_t
GetStartingSequenceControl
(
void
)
const
;
742
void
SetStartingSequenceControl
(uint16_t seqControl);
743
744
uint8_t
m_dialogToken
;
/* Not used for now */
745
uint8_t
m_amsduSupport
;
746
uint8_t
m_policy
;
747
uint8_t
m_tid
;
748
uint16_t
m_bufferSize
;
749
uint16_t
m_timeoutValue
;
750
uint16_t
m_startingSeq
;
751
};
752
753
758
class
MgtAddBaResponseHeader
:
public
Header
759
{
760
public
:
761
MgtAddBaResponseHeader
();
762
767
static
TypeId
GetTypeId
(
void
);
768
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
769
virtual
void
Print
(std::ostream &os)
const
;
770
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
771
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
772
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
773
777
void
SetDelayedBlockAck
();
781
void
SetImmediateBlockAck
();
787
void
SetTid
(uint8_t tid);
793
void
SetTimeout
(uint16_t
timeout
);
799
void
SetBufferSize
(uint16_t size);
805
void
SetStatusCode
(
StatusCode
code);
811
void
SetAmsduSupport
(
bool
supported);
812
818
StatusCode
GetStatusCode
(
void
)
const
;
824
uint8_t
GetTid
(
void
)
const
;
830
bool
IsImmediateBlockAck
(
void
)
const
;
836
uint16_t
GetTimeout
(
void
)
const
;
842
uint16_t
GetBufferSize
(
void
)
const
;
848
bool
IsAmsduSupported
(
void
)
const
;
849
850
851
private
:
857
uint16_t
GetParameterSet
(
void
)
const
;
863
void
SetParameterSet
(uint16_t params);
864
865
uint8_t
m_dialogToken
;
/* Not used for now */
866
StatusCode
m_code
;
867
uint8_t
m_amsduSupport
;
868
uint8_t
m_policy
;
869
uint8_t
m_tid
;
870
uint16_t
m_bufferSize
;
871
uint16_t
m_timeoutValue
;
872
};
873
874
879
class
MgtDelBaHeader
:
public
Header
880
{
881
public
:
882
MgtDelBaHeader
();
883
888
static
TypeId
GetTypeId
(
void
);
889
// Inherited
890
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
891
virtual
void
Print
(std::ostream &os)
const
;
892
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
893
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
894
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
895
902
bool
IsByOriginator
(
void
)
const
;
908
uint8_t
GetTid
(
void
)
const
;
914
void
SetTid
(uint8_t);
918
void
SetByOriginator
(
void
);
922
void
SetByRecipient
(
void
);
923
924
private
:
930
uint16_t
GetParameterSet
(
void
)
const
;
936
void
SetParameterSet
(uint16_t params);
937
938
uint16_t
m_initiator
;
939
uint16_t
m_tid
;
940
uint16_t
m_reasonCode
;
/* Not used for now. Always set to 1: "Unspecified reason" */
941
};
942
943
}
//namespace ns3
944
945
#endif
/* MGT_HEADERS_H */
ns3::Header
Protocol header serialization and deserialization.
Definition:
header.h:42
erp-information.h
ns3::MgtAddBaResponseHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:1180
ns3::MgtAddBaRequestHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:1044
ns3::MgtProbeRequestHeader::GetSupportedRates
SupportedRates GetSupportedRates(void) const
Return the supported rates.
Definition:
mgt-headers.cc:83
ns3::HtOperations
The HT Operations Information ElementThis class knows how to serialise and deserialise the HT Operati...
Definition:
ht-operations.h:54
ns3::MgtAddBaResponseHeader::GetBufferSize
uint16_t GetBufferSize(void) const
Return the buffer size.
Definition:
mgt-headers.cc:1302
ns3::MgtAssocResponseHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:677
ns3::MgtAddBaResponseHeader::m_code
StatusCode m_code
Status code.
Definition:
mgt-headers.h:866
ns3::MgtDelBaHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
mgt-headers.cc:1368
ns3::MgtProbeResponseHeader::GetSupportedRates
SupportedRates GetSupportedRates(void) const
Return the supported rates.
Definition:
mgt-headers.cc:183
ns3::MgtAssocResponseHeader::m_htOperations
HtOperations m_htOperations
HT operations.
Definition:
mgt-headers.h:258
ns3::MgtAssocRequestHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:476
ns3::MgtAssocRequestHeader
Implement the header for management frames of type association request.
Definition:
mgt-headers.h:44
ns3::MgtAssocRequestHeader::SetCapabilities
void SetCapabilities(CapabilityInformation capabilities)
Set the Capability information.
Definition:
mgt-headers.cc:411
ns3::MgtAddBaResponseHeader::m_policy
uint8_t m_policy
Block ACK policy.
Definition:
mgt-headers.h:868
ns3::WifiActionHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:958
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:578
ns3::MgtProbeResponseHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:278
ns3::MgtProbeResponseHeader::GetSsid
Ssid GetSsid(void) const
Return the Service Set Identifier (SSID).
Definition:
mgt-headers.cc:171
ns3::MgtAssocResponseHeader::GetHtOperations
HtOperations GetHtOperations(void) const
Return the HT operations.
Definition:
mgt-headers.cc:602
ns3::WifiActionHeader::SELF_PROTECTED
Definition:
mgt-headers.h:523
ns3::MgtAssocResponseHeader::m_rates
SupportedRates m_rates
List of supported rates.
Definition:
mgt-headers.h:253
ns3::WifiActionHeader::CategoryValue
CategoryValue
Definition:
mgt-headers.h:518
ns3::MgtAssocRequestHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:465
ns3::MgtAddBaRequestHeader::m_timeoutValue
uint16_t m_timeoutValue
Timeout.
Definition:
mgt-headers.h:749
ns3::WifiActionHeader
See IEEE 802.11 chapter 7.3.1.11 Header format: | category: 1 | action value: 1 |.
Definition:
mgt-headers.h:507
ns3::MgtAddBaRequestHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:1018
ns3::MgtProbeRequestHeader::m_htCapability
HtCapabilities m_htCapability
HT capabilities.
Definition:
mgt-headers.h:337
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:137
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:1061
ns3::MgtProbeResponseHeader::m_rates
SupportedRates m_rates
List of supported rates.
Definition:
mgt-headers.h:471
ns3::MgtAddBaRequestHeader::m_dialogToken
uint8_t m_dialogToken
Definition:
mgt-headers.h:744
visualizer.core.start
def start()
Definition:
core.py:1482
ns3::MgtAssocResponseHeader::m_capability
CapabilityInformation m_capability
Capability information.
Definition:
mgt-headers.h:254
ns3::MgtProbeResponseHeader::m_capability
CapabilityInformation m_capability
Capability information.
Definition:
mgt-headers.h:472
ns3::MgtAddBaRequestHeader::SetBufferSize
void SetBufferSize(uint16_t size)
Set buffer size.
Definition:
mgt-headers.cc:1080
ns3::WifiActionHeader::MESH
Definition:
mgt-headers.h:521
ns3::MgtAddBaRequestHeader
Implement the header for management frames of type add block ack request.
Definition:
mgt-headers.h:626
ns3::MgtAddBaResponseHeader::IsImmediateBlockAck
bool IsImmediateBlockAck(void) const
Return whether the Block ACK policy is immediate Block ACK.
Definition:
mgt-headers.cc:1290
ns3::MgtAssocRequestHeader::m_htCapability
HtCapabilities m_htCapability
HT capabilities.
Definition:
mgt-headers.h:139
status-code.h
ns3::MgtProbeRequestHeader::m_vhtCapability
VhtCapabilities m_vhtCapability
VHT capabilities.
Definition:
mgt-headers.h:338
ns3::MgtAssocRequestHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
mgt-headers.cc:482
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:993
ns3::WifiActionHeader::PORTAL_ANNOUNCEMENT
Definition:
mgt-headers.h:548
ns3::MgtAssocRequestHeader::SetHtCapabilities
void SetHtCapabilities(HtCapabilities htcapabilities)
Set the HT capabilities.
Definition:
mgt-headers.cc:423
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:393
ns3::MgtAddBaResponseHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:1197
ns3::MgtAddBaRequestHeader::m_startingSeq
uint16_t m_startingSeq
Starting sequence number.
Definition:
mgt-headers.h:750
ns3::WifiActionHeader::SetAction
void SetAction(enum CategoryValue type, ActionValue action)
Set action for this Action header.
Definition:
mgt-headers.cc:720
ns3::WifiActionHeader::CategoryValueToString
std::string CategoryValueToString(CategoryValue value) const
Definition:
mgt-headers.cc:901
ns3::MgtAddBaRequestHeader::GetBufferSize
uint16_t GetBufferSize(void) const
Return the buffer size.
Definition:
mgt-headers.cc:1122
ns3::MgtAssocResponseHeader::GetVhtCapabilities
VhtCapabilities GetVhtCapabilities(void) const
Return the VHT capabilities.
Definition:
mgt-headers.cc:614
ns3::MgtAddBaResponseHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:1191
ns3::WifiActionHeader::GetCategory
CategoryValue GetCategory()
Return the category value.
Definition:
mgt-headers.cc:754
ns3::WifiActionHeader::~WifiActionHeader
~WifiActionHeader()
Definition:
mgt-headers.cc:715
ns3::MgtAddBaResponseHeader::SetDelayedBlockAck
void SetDelayedBlockAck()
Enable delayed Block ACK.
Definition:
mgt-headers.cc:1235
timeout
ns3::Time timeout
Definition:
openflow-switch.cc:52
ns3::MgtDelBaHeader::SetTid
void SetTid(uint8_t)
Set Traffic ID (TID).
Definition:
mgt-headers.cc:1420
ns3::MgtAddBaResponseHeader::SetStatusCode
void SetStatusCode(StatusCode code)
Set the status code.
Definition:
mgt-headers.cc:1266
ns3::WifiActionHeader::BlockAckActionValue
BlockAckActionValue
Block ACK action field values See 802.11 Table 8-202.
Definition:
mgt-headers.h:563
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:138
ns3::MgtAddBaRequestHeader::m_bufferSize
uint16_t m_bufferSize
Buffer size.
Definition:
mgt-headers.h:748
ns3::MgtAssocResponseHeader::m_erpInformation
ErpInformation m_erpInformation
ERP information.
Definition:
mgt-headers.h:260
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:1254
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:1098
ns3::MgtAssocRequestHeader::GetSsid
Ssid GetSsid(void) const
Return the Service Set Identifier (SSID).
Definition:
mgt-headers.cc:447
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:1357
ns3::MgtAssocRequestHeader::SetSupportedRates
void SetSupportedRates(SupportedRates rates)
Set the supported rates.
Definition:
mgt-headers.cc:399
ns3::MgtAssocResponseHeader::GetErpInformation
ErpInformation GetErpInformation(void) const
Return the ERP information.
Definition:
mgt-headers.cc:626
ns3::MgtAddBaResponseHeader::IsAmsduSupported
bool IsAmsduSupported(void) const
Return whether A-MSDU capability is supported.
Definition:
mgt-headers.cc:1308
ns3::MgtAddBaRequestHeader::GetStartingSequenceControl
uint16_t GetStartingSequenceControl(void) const
Return the raw sequence control.
Definition:
mgt-headers.cc:1140
ns3::MgtDelBaHeader::m_reasonCode
uint16_t m_reasonCode
Definition:
mgt-headers.h:940
ns3::MgtAddBaResponseHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:1214
ns3::MgtAddBaResponseHeader::SetTid
void SetTid(uint8_t tid)
Set Traffic ID (TID).
Definition:
mgt-headers.cc:1247
ns3::MgtProbeResponseHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:302
ns3::MgtProbeResponseHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:313
ns3::MgtProbeResponseHeader::GetVhtCapabilities
VhtCapabilities GetVhtCapabilities(void) const
Return the VHT capabilities.
Definition:
mgt-headers.cc:231
ns3::MgtAssocRequestHeader::GetSupportedRates
SupportedRates GetSupportedRates(void) const
Return the supported rates.
Definition:
mgt-headers.cc:453
ns3::MgtAssocRequestHeader::SetListenInterval
void SetListenInterval(uint16_t interval)
Set the listen interval.
Definition:
mgt-headers.cc:405
ns3::WifiActionHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:884
ns3::MgtAddBaResponseHeader::m_amsduSupport
uint8_t m_amsduSupport
Flag if A-MSDU is supported.
Definition:
mgt-headers.h:867
ns3::MgtProbeResponseHeader::SetErpInformation
void SetErpInformation(ErpInformation erpInformation)
Set the ERP information.
Definition:
mgt-headers.cc:255
ns3::MgtAddBaRequestHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:1012
ns3::WifiActionHeader::PEER_LINK_OPEN
Definition:
mgt-headers.h:531
supported-rates.h
ns3::MgtDelBaHeader::m_initiator
uint16_t m_initiator
Definition:
mgt-headers.h:938
ns3::WifiActionHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:895
ns3::WifiActionHeader::MultihopActionValue
MultihopActionValue
Definition:
mgt-headers.h:538
ns3::MgtAddBaRequestHeader::SetParameterSet
void SetParameterSet(uint16_t params)
Set the parameter set from the given raw value.
Definition:
mgt-headers.cc:1157
ns3::WifiActionHeader::MDA_SETUP_REQUEST
Definition:
mgt-headers.h:550
ns3::MgtDelBaHeader::MgtDelBaHeader
MgtDelBaHeader()
Definition:
mgt-headers.cc:1340
ns3::MgtAddBaRequestHeader::m_tid
uint8_t m_tid
Traffic ID.
Definition:
mgt-headers.h:747
ns3::WifiActionHeader::BLOCK_ACK
Definition:
mgt-headers.h:520
ns3::MgtProbeRequestHeader::m_rates
SupportedRates m_rates
List of supported rates.
Definition:
mgt-headers.h:336
ns3::MgtProbeResponseHeader::GetErpInformation
ErpInformation GetErpInformation(void) const
Return the ERP information.
Definition:
mgt-headers.cc:261
ns3::MgtAssocRequestHeader::GetCapabilities
CapabilityInformation GetCapabilities(void) const
Return the Capability information.
Definition:
mgt-headers.cc:417
ns3::WifiActionHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Definition:
mgt-headers.cc:965
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:1092
ns3::MgtAssocResponseHeader::SetErpInformation
void SetErpInformation(ErpInformation erpInformation)
Set the ERP information.
Definition:
mgt-headers.cc:620
ns3::MgtAddBaResponseHeader::SetImmediateBlockAck
void SetImmediateBlockAck()
Enable immediate Block ACK.
Definition:
mgt-headers.cc:1241
ns3::WifiActionHeader::GROUP_KEY_INFORM
Definition:
mgt-headers.h:534
ns3::MgtAddBaRequestHeader::SetTid
void SetTid(uint8_t tid)
Set Traffic ID (TID).
Definition:
mgt-headers.cc:1067
ns3::MgtAssocRequestHeader::GetListenInterval
uint16_t GetListenInterval(void) const
Return the listen interval.
Definition:
mgt-headers.cc:459
ns3::MgtAddBaResponseHeader::SetParameterSet
void SetParameterSet(uint16_t params)
Set the parameter set from the given raw value.
Definition:
mgt-headers.cc:1325
ns3::WifiActionHeader::MDAOP_SET_TEARDOWN
Definition:
mgt-headers.h:554
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:522
ns3::MgtAddBaRequestHeader::m_amsduSupport
uint8_t m_amsduSupport
Flag if A-MSDU is supported.
Definition:
mgt-headers.h:745
ns3::WifiActionHeader::BLOCK_ACK_ADDBA_RESPONSE
Definition:
mgt-headers.h:566
ns3::MgtAddBaRequestHeader::SetStartingSequence
void SetStartingSequence(uint16_t seq)
Set the starting sequence number.
Definition:
mgt-headers.cc:1086
ns3::MgtAddBaRequestHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:1034
ns3::MgtAssocRequestHeader::~MgtAssocRequestHeader
~MgtAssocRequestHeader()
Definition:
mgt-headers.cc:388
ns3::MgtAssocRequestHeader::MgtAssocRequestHeader
MgtAssocRequestHeader()
Definition:
mgt-headers.cc:383
ns3::MgtAddBaRequestHeader::GetTid
uint8_t GetTid(void) const
Return the Traffic ID (TID).
Definition:
mgt-headers.cc:1104
ns3::MgtAssocResponseHeader::SetVhtCapabilities
void SetVhtCapabilities(VhtCapabilities vhtcapabilities)
Set the VHT capabilities.
Definition:
mgt-headers.cc:608
ns3::MgtProbeResponseHeader::m_erpInformation
ErpInformation m_erpInformation
ERP information.
Definition:
mgt-headers.h:476
ns3::WifiActionHeader::LINK_METRIC_REPORT
Definition:
mgt-headers.h:546
ns3::WifiActionHeader::MDA_SETUP_REPLY
Definition:
mgt-headers.h:551
ns3::MgtAssocResponseHeader::GetSupportedRates
SupportedRates GetSupportedRates(void)
Return the supported rates.
Definition:
mgt-headers.cc:554
ns3::MgtProbeResponseHeader::m_timestamp
uint64_t m_timestamp
Timestamp.
Definition:
mgt-headers.h:468
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:141
ns3::MgtAssocResponseHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
mgt-headers.cc:644
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:1023
ns3::MgtProbeResponseHeader::m_htOperations
HtOperations m_htOperations
HT operations.
Definition:
mgt-headers.h:474
ns3::MgtDelBaHeader::SetByOriginator
void SetByOriginator(void)
Set the initiator bit in the DELBA.
Definition:
mgt-headers.cc:1408
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:237
ns3::WifiActionHeader::SelfProtectedActionValueToString
std::string SelfProtectedActionValueToString(SelfProtectedActionValue value) const
Definition:
mgt-headers.cc:927
ns3::MgtProbeResponseHeader::~MgtProbeResponseHeader
~MgtProbeResponseHeader()
Definition:
mgt-headers.cc:160
ns3::MgtAssocRequestHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:496
ns3::WifiActionHeader::PROXY_UPDATE
Definition:
mgt-headers.h:540
ns3::MgtDelBaHeader::SetByRecipient
void SetByRecipient(void)
Un-set the initiator bit in the DELBA.
Definition:
mgt-headers.cc:1414
ns3::MgtAddBaRequestHeader::IsAmsduSupported
bool IsAmsduSupported(void) const
Return whether A-MSDU capability is supported.
Definition:
mgt-headers.cc:1128
ns3::MgtDelBaHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:1346
ns3::MgtAssocRequestHeader::GetVhtCapabilities
VhtCapabilities GetVhtCapabilities(void) const
Return the VHT capabilities.
Definition:
mgt-headers.cc:441
ns3::MgtProbeResponseHeader::m_vhtCapability
VhtCapabilities m_vhtCapability
VHT capabilities.
Definition:
mgt-headers.h:475
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:1203
ns3::MgtProbeResponseHeader::SetBeaconIntervalUs
void SetBeaconIntervalUs(uint64_t us)
Set the beacon interval in microseconds unit.
Definition:
mgt-headers.cc:243
ns3::WifiActionHeader::TBTT_ADJUSTMENT_RESPONSE
Definition:
mgt-headers.h:556
ns3::MgtProbeResponseHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:267
capability-information.h
ns3::MgtAddBaResponseHeader::SetBufferSize
void SetBufferSize(uint16_t size)
Set buffer size.
Definition:
mgt-headers.cc:1260
ns3::MgtDelBaHeader::GetTid
uint8_t GetTid(void) const
Return the Traffic ID (TID).
Definition:
mgt-headers.cc:1400
ns3::MgtDelBaHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:1377
ns3::WifiActionHeader::VENDOR_SPECIFIC_ACTION
Definition:
mgt-headers.h:526
ns3::WifiActionHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:978
ns3::WifiActionHeader::PATH_SELECTION
Definition:
mgt-headers.h:547
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:1278
ns3::MgtProbeRequestHeader::GetHtCapabilities
HtCapabilities GetHtCapabilities(void) const
Return the HT capabilities.
Definition:
mgt-headers.cc:65
ns3::WifiActionHeader::MDAOP_ADVERTISMENTS
Definition:
mgt-headers.h:553
ns3::MgtDelBaHeader::IsByOriginator
bool IsByOriginator(void) const
Check if the initiator bit in the DELBA is setted.
Definition:
mgt-headers.cc:1394
ns3::MgtAssocRequestHeader::SetVhtCapabilities
void SetVhtCapabilities(VhtCapabilities vhtcapabilities)
Set the VHT capabilities.
Definition:
mgt-headers.cc:435
third.ssid
tuple ssid
Definition:
third.py:93
ns3::MgtAssocRequestHeader::m_vhtCapability
VhtCapabilities m_vhtCapability
VHT capabilities.
Definition:
mgt-headers.h:140
ns3::MgtProbeResponseHeader::m_htCapability
HtCapabilities m_htCapability
HT capabilities.
Definition:
mgt-headers.h:473
ns3::MgtProbeResponseHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:339
ns3::MgtAddBaResponseHeader::MgtAddBaResponseHeader
MgtAddBaResponseHeader()
Definition:
mgt-headers.cc:1172
ns3::MgtBeaconHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:366
ns3::MgtAddBaResponseHeader::m_tid
uint8_t m_tid
Traffic ID.
Definition:
mgt-headers.h:869
ns3::MgtAssocResponseHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:666
ns3::MgtAddBaResponseHeader::GetTimeout
uint16_t GetTimeout(void) const
Return the timeout.
Definition:
mgt-headers.cc:1296
ns3::MgtAddBaResponseHeader::GetTid
uint8_t GetTid(void) const
Return the Traffic ID (TID).
Definition:
mgt-headers.cc:1284
ns3::WifiActionHeader::m_actionValue
uint8_t m_actionValue
Action value.
Definition:
mgt-headers.h:618
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:268
ns3::MgtProbeResponseHeader::SetVhtCapabilities
void SetVhtCapabilities(VhtCapabilities vhtcapabilities)
Set the VHT capabilities.
Definition:
mgt-headers.cc:225
ns3::MgtAddBaRequestHeader::IsImmediateBlockAck
bool IsImmediateBlockAck(void) const
Return whether the Block ACK policy is immediate Block ACK.
Definition:
mgt-headers.cc:1110
ns3::MgtProbeResponseHeader::SetHtOperations
void SetHtOperations(HtOperations htoperations)
Set the HT operations.
Definition:
mgt-headers.cc:213
ns3::MgtAssocResponseHeader
Implement the header for management frames of type association response.
Definition:
mgt-headers.h:149
ns3::WifiActionHeader::WifiActionHeader
WifiActionHeader()
Definition:
mgt-headers.cc:711
ns3::MgtAddBaResponseHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:1224
ns3::MgtAssocResponseHeader::m_code
StatusCode m_code
Status code.
Definition:
mgt-headers.h:255
ns3::MgtAddBaRequestHeader::GetStartingSequence
uint16_t GetStartingSequence(void) const
Return the starting sequence number.
Definition:
mgt-headers.cc:1134
ns3::MgtAssocResponseHeader::SetCapabilities
void SetCapabilities(CapabilityInformation capabilities)
Set the Capability information.
Definition:
mgt-headers.cc:572
ht-operations.h
ns3::MgtDelBaHeader::m_tid
uint16_t m_tid
Traffic ID.
Definition:
mgt-headers.h:939
ns3::WifiActionHeader::GROUP_KEY_ACK
Definition:
mgt-headers.h:535
ns3::MgtAddBaRequestHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:1001
ns3::WifiActionHeader::PEER_LINK_CLOSE
Definition:
mgt-headers.h:533
ns3::WifiActionHeader::BLOCK_ACK_DELBA
Definition:
mgt-headers.h:567
ns3::MgtAssocResponseHeader::GetTypeId
static TypeId GetTypeId(void)
Register this type.
Definition:
mgt-headers.cc:633
ns3::MgtAssocResponseHeader::SetSupportedRates
void SetSupportedRates(SupportedRates rates)
Set the supported rates.
Definition:
mgt-headers.cc:566
ns3::MgtAddBaResponseHeader::m_dialogToken
uint8_t m_dialogToken
Definition:
mgt-headers.h:865
ns3::MgtDelBaHeader::GetParameterSet
uint16_t GetParameterSet(void) const
Return the raw parameter set.
Definition:
mgt-headers.cc:1427
ns3::MgtAddBaResponseHeader
Implement the header for management frames of type add block ack response.
Definition:
mgt-headers.h:758
ns3::MgtDelBaHeader
Implement the header for management frames of type del block ack.
Definition:
mgt-headers.h:879
ns3::MgtAssocResponseHeader::~MgtAssocResponseHeader
~MgtAssocResponseHeader()
Definition:
mgt-headers.cc:543
ns3::WifiActionHeader::ActionValue
typedef for union of different ActionValues
Definition:
mgt-headers.h:574
ns3::MgtProbeResponseHeader::MgtProbeResponseHeader
MgtProbeResponseHeader()
Definition:
mgt-headers.cc:156
ns3::WifiActionHeader::BLOCK_ACK_ADDBA_REQUEST
Definition:
mgt-headers.h:565
ns3::MgtAddBaRequestHeader::m_policy
uint8_t m_policy
Block ACK policy.
Definition:
mgt-headers.h:746
ssid.h
ns3::MgtAssocResponseHeader::m_htCapability
HtCapabilities m_htCapability
HT capabilities.
Definition:
mgt-headers.h:257
ns3::WifiActionHeader::PEER_LINK_CONFIRM
Definition:
mgt-headers.h:532
ns3::MgtProbeResponseHeader::SetSupportedRates
void SetSupportedRates(SupportedRates rates)
Set the supported rates.
Definition:
mgt-headers.cc:249
ns3::MgtProbeRequestHeader::m_ssid
Ssid m_ssid
Service Set ID (SSID)
Definition:
mgt-headers.h:335
ns3::MgtAssocResponseHeader::MgtAssocResponseHeader
MgtAssocResponseHeader()
Definition:
mgt-headers.cc:538
ns3::MgtAssocResponseHeader::SetHtCapabilities
void SetHtCapabilities(HtCapabilities htcapabilities)
Set the HT capabilities.
Definition:
mgt-headers.cc:584
ns3::MgtAssocResponseHeader::m_aid
uint16_t m_aid
Definition:
mgt-headers.h:256
ns3::ErpInformation
The ErpInformation Information ElementThis class knows how to serialise and deserialise the ErpInform...
Definition:
erp-information.h:37
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:560
ns3::MgtDelBaHeader::SetParameterSet
void SetParameterSet(uint16_t params)
Set the parameter set from the given raw value.
Definition:
mgt-headers.cc:1436
ns3::MgtAddBaResponseHeader::SetAmsduSupport
void SetAmsduSupport(bool supported)
Enable or disable A-MSDU support.
Definition:
mgt-headers.cc:1272
ns3::WifiActionHeader::MeshActionValue
MeshActionValue
Definition:
mgt-headers.h:544
ns3::WifiActionHeader::m_category
uint8_t m_category
Category of the action.
Definition:
mgt-headers.h:617
ns3::MgtAddBaRequestHeader::SetDelayedBlockAck
void SetDelayedBlockAck()
Enable delayed Block ACK.
Definition:
mgt-headers.cc:1055
ns3::MgtAssocRequestHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:518
ns3::MgtAddBaRequestHeader::SetTimeout
void SetTimeout(uint16_t timeout)
Set timeout.
Definition:
mgt-headers.cc:1074
ns3::MgtProbeResponseHeader
Implement the header for management frames of type probe response.
Definition:
mgt-headers.h:346
vht-capabilities.h
ns3::MgtAssocResponseHeader::m_vhtCapability
VhtCapabilities m_vhtCapability
VHT capabilities.
Definition:
mgt-headers.h:259
ns3::MgtAddBaRequestHeader::GetParameterSet
uint16_t GetParameterSet(void) const
Return the raw parameter set.
Definition:
mgt-headers.cc:1146
ns3::WifiActionHeader::TBTT_ADJUSTMENT_REQUEST
Definition:
mgt-headers.h:555
ns3::WifiActionHeader::GetAction
ActionValue GetAction()
Return the action value.
Definition:
mgt-headers.cc:775
ns3::MgtAddBaResponseHeader::m_bufferSize
uint16_t m_bufferSize
Buffer size.
Definition:
mgt-headers.h:870
ns3::MgtAddBaResponseHeader::GetParameterSet
uint16_t GetParameterSet(void) const
Return the raw parameter set.
Definition:
mgt-headers.cc:1314
ns3::MgtProbeResponseHeader::m_beaconInterval
uint64_t m_beaconInterval
Beacon interval.
Definition:
mgt-headers.h:470
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:871
ns3::MgtProbeResponseHeader::GetHtOperations
HtOperations GetHtOperations(void) const
Return the HT operations.
Definition:
mgt-headers.cc:219
ns3::MgtAssocRequestHeader::m_ssid
Ssid m_ssid
Service Set ID (SSID)
Definition:
mgt-headers.h:136
ns3::MgtAssocRequestHeader::GetHtCapabilities
HtCapabilities GetHtCapabilities(void) const
Return the HT capabilities.
Definition:
mgt-headers.cc:429
ns3::MgtProbeResponseHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
mgt-headers.cc:284
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:484
ns3::MgtAssocResponseHeader::SetHtOperations
void SetHtOperations(HtOperations htoperations)
Set the HT operations.
Definition:
mgt-headers.cc:596
ns3::WifiActionHeader::MDAOP_ADVERTISMENT_REQUEST
Definition:
mgt-headers.h:552
ns3::MgtAssocResponseHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:692
ns3::MgtAssocResponseHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
mgt-headers.cc:650
ns3::MgtAssocResponseHeader::GetStatusCode
StatusCode GetStatusCode(void)
Return the status code.
Definition:
mgt-headers.cc:548
ns3::WifiActionHeader::CONGESTION_CONTROL_NOTIFICATION
Definition:
mgt-headers.h:549
ns3::MgtProbeResponseHeader::m_ssid
Ssid m_ssid
Service set ID (SSID)
Definition:
mgt-headers.h:469
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:971
ns3::MgtDelBaHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
mgt-headers.cc:1385
ns3::WifiActionHeader::SelfProtectedActionValue
SelfProtectedActionValue
Definition:
mgt-headers.h:529
ns3::MgtAddBaRequestHeader::GetTimeout
uint16_t GetTimeout(void) const
Return the timeout.
Definition:
mgt-headers.cc:1116
ns3::MgtAssocResponseHeader::GetHtCapabilities
HtCapabilities GetHtCapabilities(void) const
Return the HT capabilities.
Definition:
mgt-headers.cc:590
ns3::MgtDelBaHeader::Print
virtual void Print(std::ostream &os) const
Definition:
mgt-headers.cc:1363
ns3::WifiActionHeader::PROXY_UPDATE_CONFIRMATION
Definition:
mgt-headers.h:541
ns3::MgtAssocRequestHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
mgt-headers.cc:505
ns3::MgtProbeRequestHeader::~MgtProbeRequestHeader
~MgtProbeRequestHeader()
Definition:
mgt-headers.cc:36
src
wifi
model
mgt-headers.h
Generated on Thu Mar 24 2016 00:46:57 for ns-3 by
1.8.9.1