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
mpdu-aggregator.h
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
21
#ifndef MPDU_AGGREGATOR_H
22
#define MPDU_AGGREGATOR_H
23
24
#include "ns3/ptr.h"
25
#include "ns3/packet.h"
26
#include "ns3/object.h"
27
#include "
ampdu-subframe-header.h
"
28
#include <list>
29
30
namespace
ns3
{
31
32
class
WifiMacHeader;
33
38
class
MpduAggregator
:
public
Object
39
{
40
public
:
44
typedef
std::list<std::pair<Ptr<Packet>,
AmpduSubframeHeader
> >
DeaggregatedMpdus
;
48
typedef
std::list<std::pair<Ptr<Packet>,
AmpduSubframeHeader
> >::const_iterator
DeaggregatedMpdusCI
;
49
50
static
TypeId
GetTypeId
(
void
);
51
52
virtual
void
SetMaxAmpduSize
(uint32_t maxSize) = 0;
53
virtual
uint32_t
GetMaxAmpduSize
(
void
)
const
= 0;
63
virtual
bool
Aggregate
(
Ptr<const Packet>
packet,
Ptr<Packet>
aggregatedPacket) = 0;
67
virtual
void
AggregateVhtSingleMpdu
(
Ptr<const Packet>
packet,
Ptr<Packet>
aggregatedPacket) = 0;
71
virtual
void
AddHeaderAndPad
(
Ptr<Packet>
packet,
bool
last,
bool
vhtSingleMpdu) = 0;
81
virtual
bool
CanBeAggregated
(uint32_t
packetSize
,
Ptr<Packet>
aggregatedPacket, uint8_t blockAckSize) = 0;
88
virtual
uint32_t
CalculatePadding
(
Ptr<const Packet>
packet) = 0;
94
static
DeaggregatedMpdus
Deaggregate
(
Ptr<Packet>
aggregatedPacket);
95
};
96
97
}
//namespace ns3
98
99
#endif
/* MPDU_AGGREGATOR_H */
ns3::MpduAggregator
Abstract class that concrete mpdu aggregators have to implement.
Definition:
mpdu-aggregator.h:38
ns3::Ptr< const Packet >
ns3::MpduAggregator::CanBeAggregated
virtual bool CanBeAggregated(uint32_t packetSize, Ptr< Packet > aggregatedPacket, uint8_t blockAckSize)=0
ns3::MpduAggregator::Deaggregate
static DeaggregatedMpdus Deaggregate(Ptr< Packet > aggregatedPacket)
Deaggregates an A-MPDU by removing the A-MPDU subframe header and padding.
Definition:
mpdu-aggregator.cc:43
ns3::MpduAggregator::DeaggregatedMpdusCI
std::list< std::pair< Ptr< Packet >, AmpduSubframeHeader > >::const_iterator DeaggregatedMpdusCI
A constant iterator for a list of deaggregated packets and their A-MPDU subframe headers.
Definition:
mpdu-aggregator.h:48
ns3::MpduAggregator::CalculatePadding
virtual uint32_t CalculatePadding(Ptr< const Packet > packet)=0
ns3::MpduAggregator::SetMaxAmpduSize
virtual void SetMaxAmpduSize(uint32_t maxSize)=0
ns3::MpduAggregator::AggregateVhtSingleMpdu
virtual void AggregateVhtSingleMpdu(Ptr< const Packet > packet, Ptr< Packet > aggregatedPacket)=0
This method performs a VHT single MPDU aggregation.
ns3::AmpduSubframeHeader
Introspection did not find any typical Config paths.
Definition:
ampdu-subframe-header.h:34
ns3::MpduAggregator::AddHeaderAndPad
virtual void AddHeaderAndPad(Ptr< Packet > packet, bool last, bool vhtSingleMpdu)=0
Adds A-MPDU subframe header and padding to each MPDU that is part of an A-MPDU before it is sent...
ns3::MpduAggregator::Aggregate
virtual bool Aggregate(Ptr< const Packet > packet, Ptr< Packet > aggregatedPacket)=0
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::MpduAggregator::GetTypeId
static TypeId GetTypeId(void)
Definition:
mpdu-aggregator.cc:32
ampdu-subframe-header.h
ns3::MpduAggregator::DeaggregatedMpdus
std::list< std::pair< Ptr< Packet >, AmpduSubframeHeader > > DeaggregatedMpdus
A list of deaggregated packets and their A-MPDU subframe headers.
Definition:
mpdu-aggregator.h:44
ns3::MpduAggregator::GetMaxAmpduSize
virtual uint32_t GetMaxAmpduSize(void) const =0
packetSize
static const uint32_t packetSize
Definition:
power-adaptation-distance.cc:107
ns3::Object
A base class which provides memory management and object aggregation.
Definition:
object.h:87
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:58
src
wifi
model
mpdu-aggregator.h
Generated on Thu Mar 24 2016 00:46:58 for ns-3 by
1.8.9.1