A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
wifi
model
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
* Authors: Ghada Badawy <gbadawy@gmail.com>
19
* Sébastien Deronne <sebastien.deronne@gmail.com>
20
*/
21
22
#ifndef AMPDU_TAG_H
23
#define AMPDU_TAG_H
24
25
#include "ns3/nstime.h"
26
#include "ns3/tag.h"
27
28
namespace
ns3
{
29
36
class
AmpduTag
:
public
Tag
37
{
38
public
:
43
static
TypeId
GetTypeId
(
void
);
44
TypeId
GetInstanceTypeId
(
void
)
const
;
45
49
AmpduTag
();
55
void
SetRemainingNbOfMpdus
(uint8_t nbofmpdus);
61
void
SetRemainingAmpduDuration
(
Time
duration);
62
63
void
Serialize
(
TagBuffer
i)
const
;
64
void
Deserialize
(
TagBuffer
i);
65
uint32_t
GetSerializedSize
()
const
;
66
void
Print
(std::ostream &os)
const
;
67
73
uint8_t
GetRemainingNbOfMpdus
(
void
)
const
;
79
Time
GetRemainingAmpduDuration
(
void
)
const
;
80
81
82
private
:
83
uint8_t
m_nbOfMpdus
;
84
Time
m_duration
;
85
};
86
87
}
//namespace ns3
88
89
#endif
/* AMPDU_TAG_H */
ns3::Time
Simulation virtual time values and global simulation resolution.
Definition:
nstime.h:102
ns3::AmpduTag::GetSerializedSize
uint32_t GetSerializedSize() const
Definition:
ampdu-tag.cc:66
ns3::AmpduTag::Serialize
void Serialize(TagBuffer i) const
Definition:
ampdu-tag.cc:72
ns3::AmpduTag::AmpduTag
AmpduTag()
Create a AmpduTag with the default =0 no Ampdu.
Definition:
ampdu-tag.cc:45
ns3::AmpduTag::m_nbOfMpdus
uint8_t m_nbOfMpdus
Remaining number of MPDUs in the A-MPDU.
Definition:
ampdu-tag.h:83
ns3::AmpduTag::GetInstanceTypeId
TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
ampdu-tag.cc:40
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::AmpduTag::GetRemainingNbOfMpdus
uint8_t GetRemainingNbOfMpdus(void) const
Definition:
ampdu-tag.cc:89
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::Print
void Print(std::ostream &os) const
Definition:
ampdu-tag.cc:101
ns3::AmpduTag::GetRemainingAmpduDuration
Time GetRemainingAmpduDuration(void) const
Definition:
ampdu-tag.cc:95
ns3::AmpduTag::Deserialize
void Deserialize(TagBuffer i)
Definition:
ampdu-tag.cc:80
ns3::TagBuffer
read and write tag data
Definition:
tag-buffer.h:51
ns3::AmpduTag::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
ampdu-tag.cc:29
ns3::AmpduTag::SetRemainingNbOfMpdus
void SetRemainingNbOfMpdus(uint8_t nbofmpdus)
Definition:
ampdu-tag.cc:52
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:58
ns3::AmpduTag::m_duration
Time m_duration
Remaining duration of the A-MPDU in nanoseconds.
Definition:
ampdu-tag.h:84
ns3::AmpduTag::SetRemainingAmpduDuration
void SetRemainingAmpduDuration(Time duration)
Definition:
ampdu-tag.cc:59
Generated on Wed Nov 7 2018 10:02:13 for ns-3 by
1.8.14