A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
radvd-prefix.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2009 Strasbourg University
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: Sebastien Vincent <vincent@clarinet.u-strasbg.fr>
19  */
20 
21 #ifndef RADVD_PREFIX_H
22 #define RADVD_PREFIX_H
23 
24 #include <stdint.h>
25 
26 #include "ns3/ipv6-address.h"
27 #include "ns3/simple-ref-count.h"
28 
29 namespace ns3
30 {
31 
37 class RadvdPrefix : public SimpleRefCount<RadvdPrefix>
38 {
39 public:
50  RadvdPrefix (Ipv6Address network, uint8_t prefixLength, uint32_t preferredLifeTime = 604800, uint32_t validLifeTime = 2592000, bool onLinkFlag = true, bool autonomousFlag = true, bool routerAddrFlag = false);
51 
55  ~RadvdPrefix ();
56 
61  Ipv6Address GetNetwork () const;
62 
67  void SetNetwork (Ipv6Address network);
68 
73  uint8_t GetPrefixLength () const;
74 
79  void SetPrefixLength (uint8_t prefixLength);
80 
85  uint32_t GetPreferredLifeTime () const;
86 
91  void SetPreferredLifeTime (uint32_t preferredLifeTime);
92 
97  uint32_t GetValidLifeTime () const;
98 
103  void SetValidLifeTime (uint32_t validLifeTime);
104 
109  bool IsOnLinkFlag () const;
110 
115  void SetOnLinkFlag (bool onLinkFlag);
116 
121  bool IsAutonomousFlag () const;
122 
127  void SetAutonomousFlag (bool autonomousFlag);
128 
133  bool IsRouterAddrFlag () const;
134 
139  void SetRouterAddrFlag (bool routerAddrFlag);
140 
141 private:
146 
150  uint8_t m_prefixLength;
151 
156 
160  uint32_t m_validLifeTime;
161 
166 
171 
177 };
178 
179 } /* namespace ns3 */
180 
181 #endif /* RADVD_PREFIX_H */
182 
void SetValidLifeTime(uint32_t validLifeTime)
Set valid lifetime.
Definition: radvd-prefix.cc:76
bool m_onLinkFlag
On link flag, indicates that this prefix can be used for on-link determination.
Definition: radvd-prefix.h:165
Ipv6Address GetNetwork() const
Get network prefix.
Definition: radvd-prefix.cc:46
bool m_autonomousFlag
Autonomous flag, it is used for autonomous address configuration (RFC 2462).
Definition: radvd-prefix.h:170
uint32_t m_preferredLifeTime
Preferred time.
Definition: radvd-prefix.h:155
void SetPrefixLength(uint8_t prefixLength)
Set prefix length.
Definition: radvd-prefix.cc:64
void SetOnLinkFlag(bool onLinkFlag)
Set on-link flag.
uint8_t m_prefixLength
Prefix length.
Definition: radvd-prefix.h:150
Router prefix for radvd application.
Definition: radvd-prefix.h:37
void SetPreferredLifeTime(uint32_t preferredLifeTime)
Set preferred lifetime.
Definition: radvd-prefix.cc:88
bool IsRouterAddrFlag() const
Is router address flag ?
void SetAutonomousFlag(bool autonomousFlag)
Set autonomous flag.
uint32_t GetPreferredLifeTime() const
Get preferred lifetime.
Definition: radvd-prefix.cc:82
void SetNetwork(Ipv6Address network)
Set network prefix.
Definition: radvd-prefix.cc:52
void SetRouterAddrFlag(bool routerAddrFlag)
Set router address flag.
bool IsOnLinkFlag() const
Is on-link flag ?
Definition: radvd-prefix.cc:94
bool m_routerAddrFlag
Router address flag, indicates that router address is sent instead of network prefix as is required b...
Definition: radvd-prefix.h:176
uint32_t m_validLifeTime
Valid time.
Definition: radvd-prefix.h:160
RadvdPrefix(Ipv6Address network, uint8_t prefixLength, uint32_t preferredLifeTime=604800, uint32_t validLifeTime=2592000, bool onLinkFlag=true, bool autonomousFlag=true, bool routerAddrFlag=false)
Constructor.
Definition: radvd-prefix.cc:29
Describes an IPv6 address.
Definition: ipv6-address.h:46
uint32_t GetValidLifeTime() const
Get valid lifetime.
Definition: radvd-prefix.cc:70
~RadvdPrefix()
Destructor.
Definition: radvd-prefix.cc:41
uint8_t GetPrefixLength() const
Get prefix length.
Definition: radvd-prefix.cc:58
Ipv6Address m_network
Network prefix.
Definition: radvd-prefix.h:145
bool IsAutonomousFlag() const
Is autonomous flag ?
A template-based reference counting class.