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
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
qos-tag.cc
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2009 MIRKO BANCHI
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: Mirko Banchi <mk.banchi@gmail.com>
19
*/
20
#include "
qos-tag.h
"
21
#include "ns3/tag.h"
22
#include "ns3/uinteger.h"
23
24
namespace
ns3 {
25
26
NS_OBJECT_ENSURE_REGISTERED
(QosTag);
27
28
TypeId
29
QosTag::GetTypeId
(
void
)
30
{
31
static
TypeId
tid =
TypeId
(
"ns3::QosTag"
)
32
.
SetParent
<
Tag
> ()
33
.AddConstructor<QosTag> ()
34
.AddAttribute (
"tid"
,
"The tid that indicates AC which packet belongs"
,
35
UintegerValue
(0),
36
MakeUintegerAccessor (&
QosTag::GetTid
),
37
MakeUintegerChecker<uint8_t> ())
38
;
39
return
tid;
40
}
41
42
TypeId
43
QosTag::GetInstanceTypeId
(
void
)
const
44
{
45
return
GetTypeId
();
46
}
47
48
QosTag::QosTag
()
49
: m_tid (0)
50
{
51
}
52
QosTag::QosTag
(uint8_t tid)
53
: m_tid (tid)
54
{
55
}
56
57
void
58
QosTag::SetTid
(uint8_t tid)
59
{
60
m_tid
= tid;
61
}
62
63
void
64
QosTag::SetUserPriority
(
UserPriority
up)
65
{
66
m_tid
= up;
67
}
68
69
uint32_t
70
QosTag::GetSerializedSize
(
void
)
const
71
{
72
return
1;
73
}
74
75
void
76
QosTag::Serialize
(
TagBuffer
i)
const
77
{
78
i.
WriteU8
(
m_tid
);
79
}
80
81
void
82
QosTag::Deserialize
(
TagBuffer
i)
83
{
84
m_tid
= (
UserPriority
) i.
ReadU8
();
85
}
86
87
uint8_t
88
QosTag::GetTid
()
const
89
{
90
return
m_tid
;
91
}
92
93
void
94
QosTag::Print
(std::ostream &os)
const
95
{
96
os <<
"Tid="
<<
m_tid
;
97
}
98
99
}
// namespace ns3
src
wifi
model
qos-tag.cc
Generated on Tue Oct 9 2012 16:45:48 for ns-3 by
1.8.1.2