A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ns3::Ipv6StaticRoutingHelper Class Reference

Helper class that adds ns3::Ipv6StaticRouting objects. More...

#include <ipv6-static-routing-helper.h>

+ Inheritance diagram for ns3::Ipv6StaticRoutingHelper:
+ Collaboration diagram for ns3::Ipv6StaticRoutingHelper:

Public Member Functions

 Ipv6StaticRoutingHelper ()
 Constructor. More...
 
 Ipv6StaticRoutingHelper (const Ipv6StaticRoutingHelper &)
 Construct an Ipv6ListRoutingHelper from another previously initialized instance (Copy Constructor). More...
 
void AddMulticastRoute (Ptr< Node > n, Ipv6Address source, Ipv6Address group, Ptr< NetDevice > input, NetDeviceContainer output)
 Add a multicast route to a node and net device using explicit Ptr<Node> and Ptr<NetDevice> More...
 
void AddMulticastRoute (std::string n, Ipv6Address source, Ipv6Address group, Ptr< NetDevice > input, NetDeviceContainer output)
 Add a multicast route to a node and device using a name string previously associated to the node using the Object Name Service and a Ptr<NetDevice> More...
 
void AddMulticastRoute (Ptr< Node > n, Ipv6Address source, Ipv6Address group, std::string inputName, NetDeviceContainer output)
 Add a multicast route to a node and device using a Ptr<Node> and a name string previously associated to the device using the Object Name Service. More...
 
void AddMulticastRoute (std::string nName, Ipv6Address source, Ipv6Address group, std::string inputName, NetDeviceContainer output)
 Add a multicast route to a node and device using name strings previously associated to both the node and device using the Object Name Service. More...
 
Ipv6StaticRoutingHelperCopy (void) const
 
virtual Ptr< Ipv6RoutingProtocolCreate (Ptr< Node > node) const
 
Ptr< Ipv6StaticRoutingGetStaticRouting (Ptr< Ipv6 > ipv6) const
 Get Ipv6StaticRouting pointer from IPv6 stack. More...
 
- Public Member Functions inherited from ns3::Ipv6RoutingHelper
virtual ~Ipv6RoutingHelper ()
 Destroy an Ipv6 Ipv6RoutingHelper. More...
 
void PrintRoutingTableAllAt (Time printTime, Ptr< OutputStreamWrapper > stream) const
 prints the routing tables of all nodes at a particular time. More...
 
void PrintRoutingTableAllEvery (Time printInterval, Ptr< OutputStreamWrapper > stream) const
 prints the routing tables of all nodes at regular intervals specified by user. More...
 
void PrintRoutingTableAt (Time printTime, Ptr< Node > node, Ptr< OutputStreamWrapper > stream) const
 prints the routing tables of a node at a particular time. More...
 
void PrintRoutingTableEvery (Time printInterval, Ptr< Node > node, Ptr< OutputStreamWrapper > stream) const
 prints the routing tables of a node at regular intervals specified by user. More...
 

Private Member Functions

Ipv6StaticRoutingHelperoperator= (const Ipv6StaticRoutingHelper &o)
 Assignment operator declared private and not implemented to disallow assignment and prevent the compiler from happily inserting its own. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from ns3::Ipv6RoutingHelper
template<class T >
static Ptr< T > GetRouting (Ptr< Ipv6RoutingProtocol > protocol)
 Request a specified routing protocol <T> from Ipv6RoutingProtocol protocol. More...
 

Detailed Description

Helper class that adds ns3::Ipv6StaticRouting objects.

This class is expected to be used in conjunction with ns3::InternetStackHelper::SetRoutingHelper

Definition at line 41 of file ipv6-static-routing-helper.h.

Constructor & Destructor Documentation

ns3::Ipv6StaticRoutingHelper::Ipv6StaticRoutingHelper ( )

Constructor.

Definition at line 38 of file ipv6-static-routing-helper.cc.

Referenced by Copy().

+ Here is the caller graph for this function:

ns3::Ipv6StaticRoutingHelper::Ipv6StaticRoutingHelper ( const Ipv6StaticRoutingHelper o)

Construct an Ipv6ListRoutingHelper from another previously initialized instance (Copy Constructor).

Definition at line 42 of file ipv6-static-routing-helper.cc.

Member Function Documentation

void ns3::Ipv6StaticRoutingHelper::AddMulticastRoute ( Ptr< Node n,
Ipv6Address  source,
Ipv6Address  group,
Ptr< NetDevice input,
NetDeviceContainer  output 
)

Add a multicast route to a node and net device using explicit Ptr<Node> and Ptr<NetDevice>

Definition at line 89 of file ipv6-static-routing-helper.cc.

References ns3::NetDeviceContainer::Begin(), ns3::NetDeviceContainer::End(), ns3::Object::GetObject(), GetStaticRouting(), and NS_ASSERT_MSG.

Referenced by AddMulticastRoute().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void ns3::Ipv6StaticRoutingHelper::AddMulticastRoute ( std::string  n,
Ipv6Address  source,
Ipv6Address  group,
Ptr< NetDevice input,
NetDeviceContainer  output 
)

Add a multicast route to a node and device using a name string previously associated to the node using the Object Name Service and a Ptr<NetDevice>

Definition at line 139 of file ipv6-static-routing-helper.cc.

References AddMulticastRoute().

+ Here is the call graph for this function:

void ns3::Ipv6StaticRoutingHelper::AddMulticastRoute ( Ptr< Node n,
Ipv6Address  source,
Ipv6Address  group,
std::string  inputName,
NetDeviceContainer  output 
)

Add a multicast route to a node and device using a Ptr<Node> and a name string previously associated to the device using the Object Name Service.

Definition at line 127 of file ipv6-static-routing-helper.cc.

References AddMulticastRoute().

+ Here is the call graph for this function:

void ns3::Ipv6StaticRoutingHelper::AddMulticastRoute ( std::string  nName,
Ipv6Address  source,
Ipv6Address  group,
std::string  inputName,
NetDeviceContainer  output 
)

Add a multicast route to a node and device using name strings previously associated to both the node and device using the Object Name Service.

Definition at line 151 of file ipv6-static-routing-helper.cc.

References AddMulticastRoute().

+ Here is the call graph for this function:

Ipv6StaticRoutingHelper * ns3::Ipv6StaticRoutingHelper::Copy ( void  ) const
virtual
Internal:
Returns
pointer to clone of this Ipv6StaticRoutingHelper

This method is mainly for internal use by the other helpers; clients are expected to free the dynamic memory allocated by this method

Implements ns3::Ipv6RoutingHelper.

Definition at line 47 of file ipv6-static-routing-helper.cc.

References Ipv6StaticRoutingHelper().

+ Here is the call graph for this function:

Ptr< Ipv6RoutingProtocol > ns3::Ipv6StaticRoutingHelper::Create ( Ptr< Node node) const
virtual
Parameters
nodethe node on which the routing protocol will run
Returns
a newly-created routing protocol

This method will be called by ns3::InternetStackHelper::Install

Implements ns3::Ipv6RoutingHelper.

Definition at line 53 of file ipv6-static-routing-helper.cc.

Ptr< Ipv6StaticRouting > ns3::Ipv6StaticRoutingHelper::GetStaticRouting ( Ptr< Ipv6 ipv6) const

Get Ipv6StaticRouting pointer from IPv6 stack.

Parameters
ipv6Ipv6 pointer
Returns
Ipv6StaticRouting pointer or 0 if not found

Definition at line 59 of file ipv6-static-routing-helper.cc.

References NS_ASSERT_MSG, NS_LOG_FUNCTION, and NS_LOG_LOGIC.

Referenced by AddMulticastRoute(), main(), StackHelper::PrintRoutingTable(), ns3::Ipv6InterfaceContainer::SetDefaultRoute(), ns3::Ipv6InterfaceContainer::SetDefaultRouteInAllNodes(), and ns3::Ipv6InterfaceContainer::SetRouter().

+ Here is the caller graph for this function:

Ipv6StaticRoutingHelper& ns3::Ipv6StaticRoutingHelper::operator= ( const Ipv6StaticRoutingHelper o)
private

Assignment operator declared private and not implemented to disallow assignment and prevent the compiler from happily inserting its own.

Internal:
Parameters
oobject to copy from
Returns
a reference to the new object

The documentation for this class was generated from the following files: