A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
sll-header.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 Université Pierre et Marie Curie
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Author: Matthieu Coudron <matthieu.coudron@lip6.fr>
18 */
19#ifndef SLL_HEADER_H
20#define SLL_HEADER_H
21
22#include "ns3/buffer.h"
23#include "ns3/header.h"
24
25#include <stdint.h>
26
27namespace ns3
28{
29
65class SllHeader : public Header
66{
67 public:
72 {
78 };
79
84 static TypeId GetTypeId();
85
86 SllHeader();
87 ~SllHeader() override;
88
94 uint16_t GetArpType() const;
95
99 void SetArpType(uint16_t arphdType);
100
105
109 void SetPacketType(PacketType type);
110
111 // Inherited from ObjectBase
112 TypeId GetInstanceTypeId() const override;
113 // Inherited from Header
114 uint32_t GetSerializedSize() const override;
115 void Serialize(Buffer::Iterator start) const override;
116 uint32_t Deserialize(Buffer::Iterator start) override;
117 void Print(std::ostream& os) const override;
118
119 protected:
120 // declared in packet order
122 uint16_t m_arphdType;
124 uint64_t m_address;
125 uint16_t m_protocolType;
126};
127
128} // namespace ns3
129
130#endif /* SLL_HEADER_H */
iterator in a Buffer instance
Definition: buffer.h:100
Protocol header serialization and deserialization.
Definition: header.h:44
Protocol header serialization and deserialization.
Definition: sll-header.h:66
TypeId GetInstanceTypeId() const override
Get the most derived TypeId for this Object.
Definition: sll-header.cc:56
void SetArpType(uint16_t arphdType)
Definition: sll-header.cc:68
uint16_t m_addressLength
Address length.
Definition: sll-header.h:123
uint16_t GetArpType() const
Definition: sll-header.cc:62
uint32_t GetSerializedSize() const override
Definition: sll-header.cc:94
PacketType m_packetType
Packet type.
Definition: sll-header.h:121
~SllHeader() override
Definition: sll-header.cc:40
static TypeId GetTypeId()
Get the type ID.
Definition: sll-header.cc:46
PacketType
Type of the packet.
Definition: sll-header.h:72
@ BROADCAST_BY_PEER
packet was broadcast by somebody else
Definition: sll-header.h:74
@ INTERCEPTED_PACKET
packet was sent to somebody else by somebody else
Definition: sll-header.h:76
@ UNICAST_FROM_PEER_TO_ME
the packet was specifically sent to us by somebody else
Definition: sll-header.h:73
@ MULTICAST_BY_PEER
packet was multicast, but not broadcast, by somebody else
Definition: sll-header.h:75
@ SENT_BY_US
the packet was sent by us
Definition: sll-header.h:77
uint16_t m_arphdType
ARP protocol hardware identifier.
Definition: sll-header.h:122
PacketType GetPacketType() const
Definition: sll-header.cc:75
void SetPacketType(PacketType type)
Definition: sll-header.cc:81
uint16_t m_protocolType
protocol type
Definition: sll-header.h:125
uint64_t m_address
Address.
Definition: sll-header.h:124
uint32_t Deserialize(Buffer::Iterator start) override
Definition: sll-header.cc:111
void Serialize(Buffer::Iterator start) const override
Definition: sll-header.cc:100
void Print(std::ostream &os) const override
Definition: sll-header.cc:88
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.