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
aloha-noack-mac-header.cc
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2009 CTTC
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: Nicola Baldo <nbaldo@cttc.es>
19
*/
20
21
#include <ns3/log.h>
22
#include "
aloha-noack-mac-header.h
"
23
24
25
namespace
ns3
{
26
27
NS_LOG_COMPONENT_DEFINE
(
"AlohaNoackMacHeader"
);
28
29
NS_OBJECT_ENSURE_REGISTERED
(AlohaNoackMacHeader);
30
31
TypeId
32
AlohaNoackMacHeader::GetTypeId
(
void
)
33
{
34
static
TypeId
tid =
TypeId
(
"ns3::AlohaNoackMacHeader"
)
35
.
SetParent
<
Header
> ()
36
.AddConstructor<AlohaNoackMacHeader> ()
37
;
38
return
tid;
39
}
40
41
TypeId
42
AlohaNoackMacHeader::GetInstanceTypeId
(
void
)
const
43
{
44
return
GetTypeId
();
45
}
46
47
48
49
uint32_t
50
AlohaNoackMacHeader::GetSerializedSize
(
void
)
const
51
{
52
return
12;
53
}
54
55
56
57
void
58
AlohaNoackMacHeader::Serialize
(
Buffer::Iterator
start
)
const
59
{
60
WriteTo
(start,
m_destination
);
61
WriteTo
(start,
m_source
);
62
}
63
64
uint32_t
65
AlohaNoackMacHeader::Deserialize
(
Buffer::Iterator
start
)
66
{
67
ReadFrom
(start,
m_destination
);
68
ReadFrom
(start,
m_source
);
69
return
GetSerializedSize
();
70
}
71
72
73
void
74
AlohaNoackMacHeader::Print
(std::ostream &os)
const
75
{
76
os <<
"src="
<<
m_source
77
<<
"dst="
<<
m_destination
;
78
}
79
80
81
void
82
AlohaNoackMacHeader::SetSource
(
Mac48Address
source)
83
{
84
m_source
= source;
85
}
86
87
Mac48Address
88
AlohaNoackMacHeader::GetSource
()
const
89
{
90
return
m_source
;
91
}
92
93
void
94
AlohaNoackMacHeader::SetDestination
(
Mac48Address
dst)
95
{
96
m_destination
= dst;
97
}
98
99
Mac48Address
100
AlohaNoackMacHeader::GetDestination
()
const
101
{
102
return
m_destination
;
103
}
104
105
106
107
108
}
// namespace ns3
109
110
ns3::Header
Protocol header serialization and deserialization.
Definition:
header.h:42
ns3::AlohaNoackMacHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
aloha-noack-mac-header.cc:58
ns3::AlohaNoackMacHeader::m_destination
Mac48Address m_destination
Definition:
aloha-noack-mac-header.h:52
NS_OBJECT_ENSURE_REGISTERED
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition:
object-base.h:44
ns3::AlohaNoackMacHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
aloha-noack-mac-header.cc:50
ns3::AlohaNoackMacHeader::Print
virtual void Print(std::ostream &os) const
Definition:
aloha-noack-mac-header.cc:74
ns3::ReadFrom
void ReadFrom(Buffer::Iterator &i, Ipv4Address &ad)
Read an Ipv4Address from a Buffer.
Definition:
address-utils.cc:70
visualizer.core.start
def start()
Definition:
core.py:1482
aloha-noack-mac-header.h
ns3::WriteTo
void WriteTo(Buffer::Iterator &i, Ipv4Address ad)
Write an Ipv4Address to a Buffer.
Definition:
address-utils.cc:28
NS_LOG_COMPONENT_DEFINE
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition:
log.h:201
ns3::Buffer::Iterator
iterator in a Buffer instance
Definition:
buffer.h:98
ns3::AlohaNoackMacHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
aloha-noack-mac-header.cc:65
ns3::AlohaNoackMacHeader::m_source
Mac48Address m_source
Definition:
aloha-noack-mac-header.h:51
ns3::AlohaNoackMacHeader::SetDestination
void SetDestination(Mac48Address destination)
Definition:
aloha-noack-mac-header.cc:94
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::Mac48Address
an EUI-48 address
Definition:
mac48-address.h:43
ns3::AlohaNoackMacHeader::GetSource
Mac48Address GetSource() const
Definition:
aloha-noack-mac-header.cc:88
ns3::AlohaNoackMacHeader::GetTypeId
static TypeId GetTypeId(void)
Definition:
aloha-noack-mac-header.cc:32
ns3::AlohaNoackMacHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
aloha-noack-mac-header.cc:42
ns3::AlohaNoackMacHeader::SetSource
void SetSource(Mac48Address source)
Definition:
aloha-noack-mac-header.cc:82
ns3::AlohaNoackMacHeader::GetDestination
Mac48Address GetDestination() const
Definition:
aloha-noack-mac-header.cc:100
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:51
ns3::TypeId::SetParent
TypeId SetParent(TypeId tid)
Definition:
type-id.cc:631
src
spectrum
model
aloha-noack-mac-header.cc
Generated on Thu Feb 5 2015 18:33:52 for ns-3 by
1.8.9.1