A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ns3::Ipv6RoutingHelper Class Referenceabstract

A factory to create ns3::Ipv6RoutingProtocol objects. More...

#include <ipv6-routing-helper.h>

+ Inheritance diagram for ns3::Ipv6RoutingHelper:

Public Member Functions

virtual ~Ipv6RoutingHelper ()
 Destroy an Ipv6 Ipv6RoutingHelper. More...
 
virtual Ipv6RoutingHelperCopy (void) const =0
 virtual constructor More...
 
virtual Ptr< Ipv6RoutingProtocolCreate (Ptr< Node > node) const =0
 
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

void Print (Ptr< Node > node, Ptr< OutputStreamWrapper > stream) const
 
void PrintEvery (Time printInterval, Ptr< Node > node, Ptr< OutputStreamWrapper > stream) const
 

Detailed Description

A factory to create ns3::Ipv6RoutingProtocol objects.

For each new routing protocol created as a subclass of ns3::Ipv6RoutingProtocol, you need to create a subclass of ns3::Ipv6RoutingHelper which can be used by ns3::InternetStackHelper::SetRoutingHelper and ns3::InternetStackHelper::Install.

Definition at line 42 of file ipv6-routing-helper.h.

Constructor & Destructor Documentation

ns3::Ipv6RoutingHelper::~Ipv6RoutingHelper ( )
virtual

Destroy an Ipv6 Ipv6RoutingHelper.

Definition at line 29 of file ipv6-routing-helper.cc.

Member Function Documentation

virtual Ipv6RoutingHelper* ns3::Ipv6RoutingHelper::Copy ( void  ) const
pure virtual

virtual constructor

Returns
pointer to clone of this Ipv6RoutingHelper

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

Implemented in ns3::Ipv6ListRoutingHelper, and ns3::Ipv6StaticRoutingHelper.

Referenced by ns3::Ipv6ListRoutingHelper::Add(), and ns3::InternetStackHelper::SetRoutingHelper().

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

Implemented in ns3::Ipv6ListRoutingHelper, and ns3::Ipv6StaticRoutingHelper.

Referenced by ns3::InternetStackHelper::Install().

void ns3::Ipv6RoutingHelper::PrintRoutingTableAllAt ( Time  printTime,
Ptr< OutputStreamWrapper stream 
) const

prints the routing tables of all nodes at a particular time.

Parameters
printTimethe time at which the routing table is supposed to be printed.
streamThe output stream object to use

This method calls the PrintRoutingTable() method of the Ipv6RoutingProtocol stored in the Ipv6 object, for all nodes at the specified time; the output format is routing protocol-specific.

Definition at line 34 of file ipv6-routing-helper.cc.

References ns3::NodeList::GetNNodes(), ns3::NodeList::GetNode(), and ns3::Simulator::Schedule().

void ns3::Ipv6RoutingHelper::PrintRoutingTableAllEvery ( Time  printInterval,
Ptr< OutputStreamWrapper stream 
) const

prints the routing tables of all nodes at regular intervals specified by user.

Parameters
printIntervalthe time interval for which the routing table is supposed to be printed.
streamThe output stream object to use

This method calls the PrintRoutingTable() method of the Ipv6RoutingProtocol stored in the Ipv6 object, for all nodes at the specified time interval; the output format is routing protocol-specific.

Definition at line 44 of file ipv6-routing-helper.cc.

References ns3::NodeList::GetNNodes(), ns3::NodeList::GetNode(), and ns3::Simulator::Schedule().

void ns3::Ipv6RoutingHelper::PrintRoutingTableAt ( Time  printTime,
Ptr< Node node,
Ptr< OutputStreamWrapper stream 
) const

prints the routing tables of a node at a particular time.

Parameters
printTimethe time at which the routing table is supposed to be printed.
nodeThe node ptr for which we need the routing table to be printed
streamThe output stream object to use

This method calls the PrintRoutingTable() method of the Ipv6RoutingProtocol stored in the Ipv6 object, for the selected node at the specified time; the output format is routing protocol-specific.

Definition at line 54 of file ipv6-routing-helper.cc.

References ns3::Simulator::Schedule().

void ns3::Ipv6RoutingHelper::PrintRoutingTableEvery ( Time  printInterval,
Ptr< Node node,
Ptr< OutputStreamWrapper stream 
) const

prints the routing tables of a node at regular intervals specified by user.

Parameters
printIntervalthe time interval for which the routing table is supposed to be printed.
nodeThe node ptr for which we need the routing table to be printed
streamThe output stream object to use

This method calls the PrintRoutingTable() method of the Ipv6RoutingProtocol stored in the Ipv6 object, for the selected node at the specified interval; the output format is routing protocol-specific.

Definition at line 60 of file ipv6-routing-helper.cc.

References ns3::Simulator::Schedule().


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