A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
network
utils
sll-header.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2015 Université Pierre et Marie Curie
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: Matthieu Coudron <matthieu.coudron@lip6.fr>
19
*/
20
#ifndef SLL_HEADER_H
21
#define SLL_HEADER_H
22
23
#include "ns3/buffer.h"
24
#include "ns3/header.h"
25
#include <stdint.h>
26
27
namespace
ns3
{
28
64
class
SllHeader
:
public
Header
65
{
66
public
:
67
71
enum
PacketType
72
{
73
UNICAST_FROM_PEER_TO_ME
= 0,
74
BROADCAST_BY_PEER
= 1,
75
MULTICAST_BY_PEER
= 2,
76
INTERCEPTED_PACKET
= 3,
77
SENT_BY_US
78
};
79
84
static
TypeId
GetTypeId
(
void
);
85
86
SllHeader
();
87
virtual
~SllHeader
();
88
93
uint16_t
GetArpType
()
const
;
94
98
void
SetArpType
(uint16_t arphdType);
99
103
enum
PacketType
GetPacketType
()
const
;
104
108
void
SetPacketType
(
PacketType
type);
109
110
// Inherited from ObjectBase
111
virtual
TypeId
GetInstanceTypeId
(
void
)
const
;
112
// Inherited from Header
113
virtual
uint32_t
GetSerializedSize
(
void
)
const
;
114
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
115
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start
);
116
virtual
void
Print
(std::ostream &os)
const
;
117
118
protected
:
119
// declared in packet order
120
PacketType
m_packetType
;
121
uint16_t
m_arphdType
;
122
uint16_t
m_addressLength
;
123
uint64_t
m_address
;
124
uint16_t
m_protocolType
;
125
};
126
127
}
// namespace ns3
128
129
#endif
/* SLL_HEADER_H */
ns3::Header
Protocol header serialization and deserialization.
Definition:
header.h:42
ns3::SllHeader::m_protocolType
uint16_t m_protocolType
protocol type
Definition:
sll-header.h:124
ns3::SllHeader::INTERCEPTED_PACKET
packet was sent to somebody else by somebody else
Definition:
sll-header.h:76
ns3::SllHeader::m_address
uint64_t m_address
Address.
Definition:
sll-header.h:123
ns3::SllHeader::m_arphdType
uint16_t m_arphdType
ARP protocol hardware identifier.
Definition:
sll-header.h:121
ns3::SllHeader::BROADCAST_BY_PEER
packet was broadcast by somebody else
Definition:
sll-header.h:74
visualizer.core.start
def start()
Definition:
core.py:1844
ns3::SllHeader::SetPacketType
void SetPacketType(PacketType type)
Definition:
sll-header.cc:83
ns3::Buffer::Iterator
iterator in a Buffer instance
Definition:
buffer.h:98
ns3::SllHeader::PacketType
PacketType
Type of the packet.
Definition:
sll-header.h:71
ns3::SllHeader::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
sll-header.cc:47
ns3::SllHeader
Protocol header serialization and deserialization.
Definition:
sll-header.h:64
ns3::SllHeader::m_addressLength
uint16_t m_addressLength
Address length.
Definition:
sll-header.h:122
ns3::SllHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition:
sll-header.cc:113
ns3::SllHeader::m_packetType
PacketType m_packetType
Packet type.
Definition:
sll-header.h:120
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::SllHeader::SetArpType
void SetArpType(uint16_t arphdType)
Definition:
sll-header.cc:70
ns3::SllHeader::SllHeader
SllHeader()
Definition:
sll-header.cc:30
ns3::SllHeader::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
sll-header.cc:96
ns3::SllHeader::GetArpType
uint16_t GetArpType() const
Definition:
sll-header.cc:64
ns3::SllHeader::Print
virtual void Print(std::ostream &os) const
Definition:
sll-header.cc:90
ns3::SllHeader::~SllHeader
virtual ~SllHeader()
Definition:
sll-header.cc:40
ns3::SllHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
sll-header.cc:58
ns3::SllHeader::UNICAST_FROM_PEER_TO_ME
the packet was specifically sent to us by somebody else
Definition:
sll-header.h:73
ns3::SllHeader::SENT_BY_US
the packet was sent by us
Definition:
sll-header.h:77
ns3::SllHeader::MULTICAST_BY_PEER
packet was multicast, but not broadcast, by somebody else
Definition:
sll-header.h:75
ns3::SllHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Definition:
sll-header.cc:102
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:58
ns3::SllHeader::GetPacketType
enum PacketType GetPacketType() const
Definition:
sll-header.cc:77
Generated on Wed Nov 7 2018 10:02:08 for ns-3 by
1.8.14