A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ripng-helper.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014 Universita' di Firenze, Italy
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: Tommaso Pecorella <tommaso.pecorella@unifi.it>
19  */
20 
21 #ifndef RIPNG_HELPER_H
22 #define RIPNG_HELPER_H
23 
24 #include "ns3/object-factory.h"
25 #include "ns3/ipv6-routing-helper.h"
26 #include "ns3/node-container.h"
27 #include "ns3/node.h"
28 
29 namespace ns3 {
30 
39 {
40 public:
41  /*
42  * Construct an RipngHelper to make life easier while adding RIPng
43  * routing to nodes.
44  */
45  RipNgHelper ();
46 
51  RipNgHelper (const RipNgHelper &);
52 
53  virtual ~RipNgHelper ();
54 
61  RipNgHelper* Copy (void) const;
62 
69  virtual Ptr<Ipv6RoutingProtocol> Create (Ptr<Node> node) const;
70 
77  void Set (std::string name, const AttributeValue &value);
78 
90  int64_t AssignStreams (NodeContainer c, int64_t stream);
91 
102  void SetDefaultRouter (Ptr<Node> node, Ipv6Address nextHop, uint32_t interface);
103 
115  void ExcludeInterface (Ptr<Node> node, uint32_t interface);
116 
129  void SetInterfaceMetric (Ptr<Node> node, uint32_t interface, uint8_t metric);
130 
131 private:
137 
138  ObjectFactory m_factory; //|< Object Factory
139 
140  std::map< Ptr<Node>, std::set<uint32_t> > m_interfaceExclusions;
141  std::map< Ptr<Node>, std::map<uint32_t, uint8_t> > m_interfaceMetrics;
142 };
143 
144 } // namespace ns3
145 
146 
147 #endif /* RIPNG_HELPER_H */
148 
smart pointer class similar to boost::intrusive_ptr
Definition: ptr.h:60
void SetDefaultRouter(Ptr< Node > node, Ipv6Address nextHop, uint32_t interface)
Install a default route in the node.
ObjectFactory m_factory
Definition: ripng-helper.h:138
Hold a value for an Attribute.
Definition: attribute.h:56
void ExcludeInterface(Ptr< Node > node, uint32_t interface)
Exclude an interface from RIPng protocol.
Helper class that adds RIPng routing to nodes.
Definition: ripng-helper.h:38
std::map< Ptr< Node >, std::map< uint32_t, uint8_t > > m_interfaceMetrics
Interface Metric set.
Definition: ripng-helper.h:141
virtual Ptr< Ipv6RoutingProtocol > Create(Ptr< Node > node) const
Definition: ripng-helper.cc:54
RipNgHelper * Copy(void) const
Definition: ripng-helper.cc:48
void SetInterfaceMetric(Ptr< Node > node, uint32_t interface, uint8_t metric)
Set a metric for an interface.
A factory to create ns3::Ipv6RoutingProtocol objects.
virtual ~RipNgHelper()
Definition: ripng-helper.cc:41
keep track of a set of node pointers.
void Set(std::string name, const AttributeValue &value)
Definition: ripng-helper.cc:81
Describes an IPv6 address.
Definition: ipv6-address.h:46
instantiate subclasses of ns3::Object.
std::map< Ptr< Node >, std::set< uint32_t > > m_interfaceExclusions
Interface Exclusion set.
Definition: ripng-helper.h:140
int64_t AssignStreams(NodeContainer c, int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
Definition: ripng-helper.cc:88
RipNgHelper & operator=(const RipNgHelper &o)
Assignment operator declared private and not implemented to disallow assignment and prevent the compi...