A Discrete-Event Network Simulator
QKDNetSim v2.0 (NS-3 v3.41) @ (+)
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
w
Enumerator
a
b
c
d
e
f
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
Related Functions
:
a
b
c
d
e
g
h
i
j
l
m
n
o
p
q
r
s
t
u
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerations
Enumerator
c
e
i
l
o
r
s
t
v
Macros
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
seq-ts-size-header.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2009 INRIA
3
* Copyright (c) 2018 Natale Patriciello <natale.patriciello@gmail.com>
4
* (added timestamp and size fields)
5
*
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License version 2 as
8
* published by the Free Software Foundation;
9
*
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
14
*
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
*
19
*/
20
21
#include "
seq-ts-size-header.h
"
22
23
#include "ns3/log.h"
24
25
namespace
ns3
26
{
27
28
NS_LOG_COMPONENT_DEFINE
(
"SeqTsSizeHeader"
);
29
30
NS_OBJECT_ENSURE_REGISTERED
(SeqTsSizeHeader);
31
32
SeqTsSizeHeader::SeqTsSizeHeader
()
33
:
SeqTsHeader
()
34
{
35
NS_LOG_FUNCTION
(
this
);
36
}
37
38
TypeId
39
SeqTsSizeHeader::GetTypeId
()
40
{
41
static
TypeId
tid =
TypeId
(
"ns3::SeqTsSizeHeader"
)
42
.
SetParent
<
SeqTsHeader
>()
43
.SetGroupName(
"Applications"
)
44
.AddConstructor<
SeqTsSizeHeader
>();
45
return
tid;
46
}
47
48
TypeId
49
SeqTsSizeHeader::GetInstanceTypeId
()
const
50
{
51
return
GetTypeId
();
52
}
53
54
void
55
SeqTsSizeHeader::SetSize
(uint64_t size)
56
{
57
m_size
= size;
58
}
59
60
uint64_t
61
SeqTsSizeHeader::GetSize
()
const
62
{
63
return
m_size
;
64
}
65
66
void
67
SeqTsSizeHeader::Print
(std::ostream& os)
const
68
{
69
NS_LOG_FUNCTION
(
this
<< &os);
70
os <<
"(size="
<<
m_size
<<
") AND "
;
71
SeqTsHeader::Print
(os);
72
}
73
74
uint32_t
75
SeqTsSizeHeader::GetSerializedSize
()
const
76
{
77
return
SeqTsHeader::GetSerializedSize
() + 8;
78
}
79
80
void
81
SeqTsSizeHeader::Serialize
(
Buffer::Iterator
start
)
const
82
{
83
NS_LOG_FUNCTION
(
this
<< &
start
);
84
Buffer::Iterator
i =
start
;
85
i.
WriteHtonU64
(
m_size
);
86
SeqTsHeader::Serialize
(i);
87
}
88
89
uint32_t
90
SeqTsSizeHeader::Deserialize
(
Buffer::Iterator
start
)
91
{
92
NS_LOG_FUNCTION
(
this
<< &
start
);
93
Buffer::Iterator
i =
start
;
94
m_size
= i.
ReadNtohU64
();
95
SeqTsHeader::Deserialize
(i);
96
return
GetSerializedSize
();
97
}
98
99
}
// namespace ns3
ns3::Buffer::Iterator
iterator in a Buffer instance
Definition:
buffer.h:100
ns3::Buffer::Iterator::WriteHtonU64
void WriteHtonU64(uint64_t data)
Definition:
buffer.cc:934
ns3::Buffer::Iterator::ReadNtohU64
uint64_t ReadNtohU64()
Definition:
buffer.cc:1041
ns3::Header::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)=0
Deserialize the object from a buffer iterator.
ns3::SeqTsHeader
Packet header to carry sequence number and timestamp.
Definition:
seq-ts-header.h:45
ns3::SeqTsHeader::Serialize
void Serialize(Buffer::Iterator start) const override
Definition:
seq-ts-header.cc:93
ns3::SeqTsHeader::Print
void Print(std::ostream &os) const override
Definition:
seq-ts-header.cc:79
ns3::SeqTsHeader::GetSerializedSize
uint32_t GetSerializedSize() const override
Definition:
seq-ts-header.cc:86
ns3::SeqTsSizeHeader
Header with a sequence, a timestamp, and a "size" attribute.
Definition:
seq-ts-size-header.h:38
ns3::SeqTsSizeHeader::GetSerializedSize
uint32_t GetSerializedSize() const override
Definition:
seq-ts-size-header.cc:75
ns3::SeqTsSizeHeader::GetSize
uint64_t GetSize() const
Get the size information that the header is carrying.
Definition:
seq-ts-size-header.cc:61
ns3::SeqTsSizeHeader::Print
void Print(std::ostream &os) const override
Definition:
seq-ts-size-header.cc:67
ns3::SeqTsSizeHeader::SeqTsSizeHeader
SeqTsSizeHeader()
constructor
Definition:
seq-ts-size-header.cc:32
ns3::SeqTsSizeHeader::GetInstanceTypeId
TypeId GetInstanceTypeId() const override
Get the most derived TypeId for this Object.
Definition:
seq-ts-size-header.cc:49
ns3::SeqTsSizeHeader::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition:
seq-ts-size-header.cc:39
ns3::SeqTsSizeHeader::Serialize
void Serialize(Buffer::Iterator start) const override
Definition:
seq-ts-size-header.cc:81
ns3::SeqTsSizeHeader::SetSize
void SetSize(uint64_t size)
Set the size information that the header will carry.
Definition:
seq-ts-size-header.cc:55
ns3::SeqTsSizeHeader::m_size
uint64_t m_size
The 'size' information that the header is carrying.
Definition:
seq-ts-size-header.h:71
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:59
ns3::TypeId::SetParent
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition:
type-id.cc:931
NS_LOG_COMPONENT_DEFINE
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition:
log.h:202
NS_LOG_FUNCTION
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Definition:
log-macros-enabled.h:240
NS_OBJECT_ENSURE_REGISTERED
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition:
object-base.h:46
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
two-ray-to-three-gpp-ch-calibration.start
start
Definition:
two-ray-to-three-gpp-ch-calibration.py:520
seq-ts-size-header.h
src
applications
model
seq-ts-size-header.cc
Generated on Sun Mar 3 2024 17:10:54 for ns-3 by
1.9.1