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
ampdu-subframe-header.cc
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2013
4
*
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License version 2 as
7
* published by the Free Software Foundation;
8
*
9
* This program is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License
15
* along with this program; if not, write to the Free Software
16
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
*
18
* Author: Ghada Badawy <gbadawy@gmail.com>
19
*/
20
#include "
ampdu-subframe-header.h
"
21
#include "ns3/address-utils.h"
22
23
namespace
ns3
{
24
25
NS_OBJECT_ENSURE_REGISTERED
(AmpduSubframeHeader);
26
27
TypeId
28
AmpduSubframeHeader::GetTypeId
()
29
{
30
static
TypeId
tid =
TypeId
(
"ns3::AmpduSubframeHeader"
)
31
.
SetParent
<
Header
> ()
32
.SetGroupName (
"Wifi"
)
33
.AddConstructor<
AmpduSubframeHeader
> ()
34
;
35
return
tid;
36
}
37
38
TypeId
39
AmpduSubframeHeader::GetInstanceTypeId
(
void
)
const
40
{
41
return
GetTypeId
();
42
}
43
44
AmpduSubframeHeader::AmpduSubframeHeader
()
45
: m_length (0)
46
{
47
}
48
49
AmpduSubframeHeader::~AmpduSubframeHeader
()
50
{
51
}
52
53
uint32_t
54
AmpduSubframeHeader::GetSerializedSize
()
const
55
{
56
return
(2 + 1 + 1);
57
}
58
59
void
60
AmpduSubframeHeader::Serialize
(
Buffer::Iterator
i)
const
61
{
62
i.
WriteHtolsbU16
(
m_length
);
63
i.
WriteU8
(
m_crc
);
64
i.
WriteU8
(
m_sig
);
65
}
66
67
uint32_t
68
AmpduSubframeHeader::Deserialize
(
Buffer::Iterator
start
)
69
{
70
Buffer::Iterator
i =
start
;
71
m_length
= i.
ReadLsbtohU16
();
72
m_crc
= i.
ReadU8
();
73
m_sig
= i.
ReadU8
();
74
return
i.
GetDistanceFrom
(start);
75
}
76
77
void
78
AmpduSubframeHeader::Print
(std::ostream &os)
const
79
{
80
os <<
"length = "
<<
m_length
<<
", CRC = "
<<
m_crc
<<
", Signature = "
<<
m_sig
;
81
}
82
83
void
84
AmpduSubframeHeader::SetCrc
(uint8_t crc)
85
{
86
m_crc
= crc;
87
}
88
89
void
90
AmpduSubframeHeader::SetSig
()
91
{
92
m_sig
= 0x4E;
93
}
94
95
void
96
AmpduSubframeHeader::SetLength
(uint16_t length)
97
{
98
m_length
= length;
99
}
100
101
uint8_t
102
AmpduSubframeHeader::GetCrc
(
void
)
const
103
{
104
return
m_crc
;
105
}
106
107
uint8_t
108
AmpduSubframeHeader::GetSig
(
void
)
const
109
{
110
return
m_sig
;
111
}
112
113
uint16_t
114
AmpduSubframeHeader::GetLength
(
void
)
const
115
{
116
return
m_length
;
117
}
118
119
}
// namespace ns3
ns3::Header
Protocol header serialization and deserialization.
Definition:
header.h:42
ns3::AmpduSubframeHeader::GetLength
uint16_t GetLength(void) const
Return the length field.
Definition:
ampdu-subframe-header.cc:114
ns3::AmpduSubframeHeader::m_crc
uint8_t m_crc
CRC field.
Definition:
ampdu-subframe-header.h:84
ns3::AmpduSubframeHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
ampdu-subframe-header.cc:54
ns3::AmpduSubframeHeader::SetSig
void SetSig()
Set the SIG field.
Definition:
ampdu-subframe-header.cc:90
ns3::AmpduSubframeHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
ampdu-subframe-header.cc:68
ns3::AmpduSubframeHeader::GetSig
uint8_t GetSig(void) const
Return the SIG field.
Definition:
ampdu-subframe-header.cc:108
NS_OBJECT_ENSURE_REGISTERED
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition:
object-base.h:44
ns3::AmpduSubframeHeader::Print
virtual void Print(std::ostream &os) const
Definition:
ampdu-subframe-header.cc:78
ns3::AmpduSubframeHeader::~AmpduSubframeHeader
virtual ~AmpduSubframeHeader()
Definition:
ampdu-subframe-header.cc:49
visualizer.core.start
def start()
Definition:
core.py:1482
ns3::Buffer::Iterator::GetDistanceFrom
uint32_t GetDistanceFrom(Iterator const &o) const
Definition:
buffer.cc:811
ns3::Buffer::Iterator
iterator in a Buffer instance
Definition:
buffer.h:98
ns3::AmpduSubframeHeader::AmpduSubframeHeader
AmpduSubframeHeader()
Definition:
ampdu-subframe-header.cc:44
ns3::AmpduSubframeHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
ampdu-subframe-header.cc:39
ns3::AmpduSubframeHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
ampdu-subframe-header.cc:60
ns3::AmpduSubframeHeader::SetCrc
void SetCrc(uint8_t crc)
Set the CRC field.
Definition:
ampdu-subframe-header.cc:84
ns3::AmpduSubframeHeader::GetCrc
uint8_t GetCrc(void) const
Return the CRC field.
Definition:
ampdu-subframe-header.cc:102
ns3::AmpduSubframeHeader
Introspection did not find any typical Config paths.
Definition:
ampdu-subframe-header.h:33
ns3::AmpduSubframeHeader::SetLength
void SetLength(uint16_t length)
Set the length field.
Definition:
ampdu-subframe-header.cc:96
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::Buffer::Iterator::WriteHtolsbU16
void WriteHtolsbU16(uint16_t data)
Definition:
buffer.cc:939
ns3::Buffer::Iterator::WriteU8
void WriteU8(uint8_t data)
Definition:
buffer.h:876
ampdu-subframe-header.h
ns3::AmpduSubframeHeader::m_length
uint16_t m_length
length field
Definition:
ampdu-subframe-header.h:86
ns3::Buffer::Iterator::ReadU8
uint8_t ReadU8(void)
Definition:
buffer.h:1028
ns3::Buffer::Iterator::ReadLsbtohU16
uint16_t ReadLsbtohU16(void)
Definition:
buffer.cc:1094
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:57
ns3::TypeId::SetParent
TypeId SetParent(TypeId tid)
Definition:
type-id.cc:638
ns3::AmpduSubframeHeader::GetTypeId
static TypeId GetTypeId(void)
Definition:
ampdu-subframe-header.cc:28
ns3::AmpduSubframeHeader::m_sig
uint8_t m_sig
SIG field.
Definition:
ampdu-subframe-header.h:85
src
wifi
model
ampdu-subframe-header.cc
Generated on Thu Aug 13 2015 14:28:12 for ns-3 by
1.8.9.1