A Discrete-Event Network Simulator
API
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:
68  {
74  };
75 
80  static TypeId GetTypeId (void);
81 
82  SllHeader ();
83  virtual ~SllHeader ();
84 
89  uint16_t GetArpType () const;
90 
94  void SetArpType (uint16_t arphdType);
95 
99  enum PacketType GetPacketType () const;
100 
104  void SetPacketType (PacketType type);
105 
107  virtual TypeId GetInstanceTypeId (void) const;
109  virtual uint32_t GetSerializedSize (void) const;
110  virtual void Serialize (Buffer::Iterator start) const;
111  virtual uint32_t Deserialize (Buffer::Iterator start);
112  virtual void Print (std::ostream &os) const;
113 
114 protected:
115  // declared in packet order
117  uint16_t m_arphdType;
118  uint16_t m_addressLength;
119  uint64_t m_address;
120  uint16_t m_protocolType;
121 };
122 
123 } // namespace ns3
124 
125 #endif /* SLL_HEADER_H */
Protocol header serialization and deserialization.
Definition: header.h:42
uint16_t m_protocolType
Definition: sll-header.h:120
uint64_t m_address
Definition: sll-header.h:119
uint16_t m_arphdType
ARP protocol hardware identifier.
Definition: sll-header.h:117
virtual TypeId GetInstanceTypeId(void) const
Inherited from ObjectBase.
Definition: sll-header.cc:58
def start()
Definition: core.py:1482
void SetPacketType(PacketType type)
Definition: sll-header.cc:83
the packet was specifically sent to us by somebody else
Definition: sll-header.h:69
iterator in a Buffer instance
Definition: buffer.h:98
enum PacketType GetPacketType() const
Definition: sll-header.cc:77
static TypeId GetTypeId(void)
Get the type ID.
Definition: sll-header.cc:47
Protocol header serialization and deserialization.
Definition: sll-header.h:64
uint16_t m_addressLength
Definition: sll-header.h:118
virtual uint32_t Deserialize(Buffer::Iterator start)
Definition: sll-header.cc:113
PacketType m_packetType
Definition: sll-header.h:116
packet was sent to somebody else by somebody else
Definition: sll-header.h:72
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void SetArpType(uint16_t arphdType)
Definition: sll-header.cc:70
uint16_t GetArpType() const
Definition: sll-header.cc:64
virtual uint32_t GetSerializedSize(void) const
Inherited from Header.
Definition: sll-header.cc:96
virtual void Serialize(Buffer::Iterator start) const
Definition: sll-header.cc:102
virtual void Print(std::ostream &os) const
Definition: sll-header.cc:90
virtual ~SllHeader()
Definition: sll-header.cc:40
packet was multicast, but not broadcast, by somebody else
Definition: sll-header.h:71
a unique identifier for an interface.
Definition: type-id.h:58
the packet was sent by us
Definition: sll-header.h:73
packet was broadcast by somebody else
Definition: sll-header.h:70