A Discrete-Event Network Simulator
API
uan-header-common.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2009 University of Washington
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: Leonard Tracy <lentracy@gmail.com>
19  */
20 
21 #ifndef UAN_HEADER_COMMON_H
22 #define UAN_HEADER_COMMON_H
23 
24 #include "ns3/header.h"
25 #include "ns3/nstime.h"
26 #include "ns3/simulator.h"
27 #include "ns3/mac8-address.h"
28 
29 namespace ns3 {
30 
32 {
33  uint8_t m_type : 4;
34  uint8_t m_protocolNumber : 4;
35 };
36 
59 class UanHeaderCommon : public Header
60 {
61 public:
63  UanHeaderCommon ();
73  UanHeaderCommon (const Mac8Address src, const Mac8Address dest, uint8_t type, uint8_t protocolNumber);
75  virtual ~UanHeaderCommon ();
76 
81  static TypeId GetTypeId (void);
82 
88  void SetDest (Mac8Address dest);
94  void SetSrc (Mac8Address src);
101  void SetType (uint8_t type);
108  void SetProtocolNumber (uint16_t protocolNumber);
109 
115  Mac8Address GetDest (void) const;
121  Mac8Address GetSrc (void) const;
127  uint8_t GetType (void) const;
133  uint16_t GetProtocolNumber (void) const;
134 
135  // Inherited methods
136  virtual uint32_t GetSerializedSize (void) const;
137  virtual void Serialize (Buffer::Iterator start) const;
138  virtual uint32_t Deserialize (Buffer::Iterator start);
139  virtual void Print (std::ostream &os) const;
140  virtual TypeId GetInstanceTypeId (void) const;
141 private:
145 
146 }; // class UanHeaderCommon
147 
148 } // namespace ns3
149 
150 #endif /* UAN_HEADER_COMMON_H */
Protocol header serialization and deserialization.
Definition: header.h:42
virtual uint32_t GetSerializedSize(void) const
void SetSrc(Mac8Address src)
Set the source address.
def start()
Definition: core.py:1858
virtual uint32_t Deserialize(Buffer::Iterator start)
uint8_t GetType(void) const
Get the header type value.
iterator in a Buffer instance
Definition: buffer.h:98
void SetProtocolNumber(uint16_t protocolNumber)
Set the packet type.
Mac8Address GetDest(void) const
Get the destination address.
virtual ~UanHeaderCommon()
Destructor.
A class used for addressing MAC8 MAC&#39;s.
Definition: mac8-address.h:42
UanHeaderCommon()
Default constructor.
static TypeId GetTypeId(void)
Register this type.
Mac8Address GetSrc(void) const
Get the source address.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Common packet header fields.
Mac8Address m_dest
The destination address.
UanProtocolBits m_uanProtocolBits
The type and protocol bits.
void SetDest(Mac8Address dest)
Set the destination address.
uint16_t GetProtocolNumber(void) const
Get the packet type value.
virtual void Print(std::ostream &os) const
void SetType(uint8_t type)
Set the header type.
virtual void Serialize(Buffer::Iterator start) const
a unique identifier for an interface.
Definition: type-id.h:58
Mac8Address m_src
The source address.
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.