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-tag.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 AMPDU_TAG_H
22
#define AMPDU_TAG_H
23
24
#include "ns3/packet.h"
25
26
namespace
ns3
{
27
28
class
Tag;
29
36
class
AmpduTag
:
public
Tag
37
{
38
public
:
39
static
TypeId
GetTypeId
(
void
);
40
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
41
45
AmpduTag
();
49
void
SetAmpdu
(
bool
supported);
55
void
SetNoOfMpdus
(uint8_t noofmpdus);
56
57
virtual
void
Serialize
(
TagBuffer
i)
const
;
58
virtual
void
Deserialize
(
TagBuffer
i);
59
virtual
uint32_t
GetSerializedSize
()
const
;
60
virtual
void
Print
(std::ostream &os)
const
;
61
68
bool
GetAmpdu
(
void
)
const
;
74
uint8_t
GetNoOfMpdus
(
void
)
const
;
75
76
private
:
77
uint8_t
m_ampdu
;
78
uint8_t
m_noOfMpdus
;
79
};
80
81
}
//namespace ns3
82
83
#endif
/* AMPDU_TAG_H */
84
ns3::AmpduTag::Print
virtual void Print(std::ostream &os) const
Definition:
ampdu-tag.cc:101
ns3::AmpduTag::GetAmpdu
bool GetAmpdu(void) const
Definition:
ampdu-tag.cc:89
ns3::AmpduTag::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Definition:
ampdu-tag.cc:69
ns3::AmpduTag::SetNoOfMpdus
void SetNoOfMpdus(uint8_t noofmpdus)
Definition:
ampdu-tag.cc:62
ns3::AmpduTag::SetAmpdu
void SetAmpdu(bool supported)
Set m_ampdu to 1.
Definition:
ampdu-tag.cc:56
ns3::AmpduTag::AmpduTag
AmpduTag()
Create a AmpduTag with the default =0 no Ampdu.
Definition:
ampdu-tag.cc:50
ns3::AmpduTag
The aim of the AmpduTag is to provide means for a MAC to specify that a packet includes A-MPDU since ...
Definition:
ampdu-tag.h:36
ns3::Tag
tag a set of bytes in a packet
Definition:
tag.h:36
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::AmpduTag::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
ampdu-tag.cc:45
ns3::AmpduTag::Deserialize
virtual void Deserialize(TagBuffer i)
Definition:
ampdu-tag.cc:82
ns3::AmpduTag::m_ampdu
uint8_t m_ampdu
Flag whether it is an A-MPDU.
Definition:
ampdu-tag.h:77
ns3::TagBuffer
read and write tag data
Definition:
tag-buffer.h:51
ns3::AmpduTag::Serialize
virtual void Serialize(TagBuffer i) const
Definition:
ampdu-tag.cc:75
ns3::AmpduTag::m_noOfMpdus
uint8_t m_noOfMpdus
number of MPDUs in the A-MPDU
Definition:
ampdu-tag.h:78
ns3::AmpduTag::GetTypeId
static TypeId GetTypeId(void)
Definition:
ampdu-tag.cc:30
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:58
ns3::AmpduTag::GetNoOfMpdus
uint8_t GetNoOfMpdus(void) const
Definition:
ampdu-tag.cc:95
src
wifi
model
ampdu-tag.h
Generated on Thu Jan 28 2016 11:05:39 for ns-3 by
1.8.9.1