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 "uan-address.h"
28 
29 namespace ns3 {
30 
41 class UanHeaderCommon : public Header
42 {
43 public:
45  UanHeaderCommon ();
54  UanHeaderCommon (const UanAddress src, const UanAddress dest, uint8_t type);
56  virtual ~UanHeaderCommon ();
57 
62  static TypeId GetTypeId (void);
63 
69  void SetDest (UanAddress dest);
75  void SetSrc (UanAddress src);
82  void SetType (uint8_t type);
83 
89  UanAddress GetDest (void) const;
95  UanAddress GetSrc (void) const;
101  uint8_t GetType (void) const;
102 
103 
104  // Inherited methods
105  virtual uint32_t GetSerializedSize (void) const;
106  virtual void Serialize (Buffer::Iterator start) const;
107  virtual uint32_t Deserialize (Buffer::Iterator start);
108  virtual void Print (std::ostream &os) const;
109  virtual TypeId GetInstanceTypeId (void) const;
110 private:
113  uint8_t m_type;
114 
115 }; // class UanHeaderCommon
116 
117 } // namespace ns3
118 
119 #endif /* UAN_HEADER_COMMON_H */
Protocol header serialization and deserialization.
Definition: header.h:42
def start()
Definition: core.py:1790
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
virtual void Print(std::ostream &os) const
A class used for addressing UAN MAC's.
Definition: uan-address.h:40
virtual uint32_t GetSerializedSize(void) const
UanAddress m_dest
The destination address.
virtual ~UanHeaderCommon()
Destructor.
void SetSrc(UanAddress src)
Set the source address.
UanHeaderCommon()
Default constructor.
void SetDest(UanAddress dest)
Set the destination address.
static TypeId GetTypeId(void)
Register this type.
uint8_t m_type
The type field.
virtual void Serialize(Buffer::Iterator start) const
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Common packet header fields.
UanAddress GetDest(void) const
Get the destination address.
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
void SetType(uint8_t type)
Set the header type.
UanAddress GetSrc(void) const
Get the source address.
UanAddress m_src
The source address.
a unique identifier for an interface.
Definition: type-id.h:58