2009-06-21 23:38:40 -07:00
from pybindgen import Module , FileCodeSink , param , retval , cppclass , typehandlers
def register_types ( module ) :
root_module = module . get_root ( )
## ipv4-routing-table-entry.h: ns3::Ipv4MulticastRoutingTableEntry [class]
module . add_class ( ' Ipv4MulticastRoutingTableEntry ' )
## ipv4-routing-table-entry.h: ns3::Ipv4RoutingTableEntry [class]
module . add_class ( ' Ipv4RoutingTableEntry ' )
2009-08-31 11:31:32 +01:00
## ipv6-routing-table-entry.h: ns3::Ipv6MulticastRoutingTableEntry [class]
module . add_class ( ' Ipv6MulticastRoutingTableEntry ' )
## ipv6-routing-table-entry.h: ns3::Ipv6RoutingTableEntry [class]
module . add_class ( ' Ipv6RoutingTableEntry ' )
2009-06-21 23:38:40 -07:00
## ipv4-static-routing.h: ns3::Ipv4StaticRouting [class]
module . add_class ( ' Ipv4StaticRouting ' , parent = root_module [ ' ns3::Ipv4RoutingProtocol ' ] )
2009-08-31 11:31:32 +01:00
## ipv6-static-routing.h: ns3::Ipv6StaticRouting [class]
module . add_class ( ' Ipv6StaticRouting ' , parent = root_module [ ' ns3::Ipv6RoutingProtocol ' ] )
2009-06-21 23:38:40 -07:00
## Register a nested module for the namespace Config
nested_module = module . add_cpp_namespace ( ' Config ' )
register_types_ns3_Config ( nested_module )
## Register a nested module for the namespace TimeStepPrecision
nested_module = module . add_cpp_namespace ( ' TimeStepPrecision ' )
register_types_ns3_TimeStepPrecision ( nested_module )
## Register a nested module for the namespace addressUtils
nested_module = module . add_cpp_namespace ( ' addressUtils ' )
register_types_ns3_addressUtils ( nested_module )
## Register a nested module for the namespace internal
nested_module = module . add_cpp_namespace ( ' internal ' )
register_types_ns3_internal ( nested_module )
## Register a nested module for the namespace olsr
nested_module = module . add_cpp_namespace ( ' olsr ' )
register_types_ns3_olsr ( nested_module )
def register_types_ns3_Config ( module ) :
root_module = module . get_root ( )
def register_types_ns3_TimeStepPrecision ( module ) :
root_module = module . get_root ( )
def register_types_ns3_addressUtils ( module ) :
root_module = module . get_root ( )
def register_types_ns3_internal ( module ) :
root_module = module . get_root ( )
def register_types_ns3_olsr ( module ) :
root_module = module . get_root ( )
def register_methods ( root_module ) :
register_Ns3Ipv4MulticastRoutingTableEntry_methods ( root_module , root_module [ ' ns3::Ipv4MulticastRoutingTableEntry ' ] )
register_Ns3Ipv4RoutingTableEntry_methods ( root_module , root_module [ ' ns3::Ipv4RoutingTableEntry ' ] )
2009-08-31 11:31:32 +01:00
register_Ns3Ipv6MulticastRoutingTableEntry_methods ( root_module , root_module [ ' ns3::Ipv6MulticastRoutingTableEntry ' ] )
register_Ns3Ipv6RoutingTableEntry_methods ( root_module , root_module [ ' ns3::Ipv6RoutingTableEntry ' ] )
2009-06-21 23:38:40 -07:00
register_Ns3Ipv4StaticRouting_methods ( root_module , root_module [ ' ns3::Ipv4StaticRouting ' ] )
2009-08-31 11:31:32 +01:00
register_Ns3Ipv6StaticRouting_methods ( root_module , root_module [ ' ns3::Ipv6StaticRouting ' ] )
2009-06-21 23:38:40 -07:00
return
def register_Ns3Ipv4MulticastRoutingTableEntry_methods ( root_module , cls ) :
cls . add_output_stream_operator ( )
## ipv4-routing-table-entry.h: ns3::Ipv4MulticastRoutingTableEntry::Ipv4MulticastRoutingTableEntry() [constructor]
cls . add_constructor ( [ ] )
## ipv4-routing-table-entry.h: ns3::Ipv4MulticastRoutingTableEntry::Ipv4MulticastRoutingTableEntry(ns3::Ipv4MulticastRoutingTableEntry const & route) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Ipv4MulticastRoutingTableEntry const & ' , ' route ' ) ] )
## ipv4-routing-table-entry.h: ns3::Ipv4MulticastRoutingTableEntry::Ipv4MulticastRoutingTableEntry(ns3::Ipv4MulticastRoutingTableEntry const * route) [constructor]
cls . add_constructor ( [ param ( ' ns3::Ipv4MulticastRoutingTableEntry const * ' , ' route ' ) ] )
## ipv4-routing-table-entry.h: static ns3::Ipv4MulticastRoutingTableEntry ns3::Ipv4MulticastRoutingTableEntry::CreateMulticastRoute(ns3::Ipv4Address origin, ns3::Ipv4Address group, uint32_t inputInterface, std::vector<unsigned int, std::allocator<unsigned int> > outputInterfaces) [member function]
cls . add_method ( ' CreateMulticastRoute ' ,
' ns3::Ipv4MulticastRoutingTableEntry ' ,
[ param ( ' ns3::Ipv4Address ' , ' origin ' ) , param ( ' ns3::Ipv4Address ' , ' group ' ) , param ( ' uint32_t ' , ' inputInterface ' ) , param ( ' std::vector< unsigned int > ' , ' outputInterfaces ' ) ] ,
is_static = True )
## ipv4-routing-table-entry.h: ns3::Ipv4Address ns3::Ipv4MulticastRoutingTableEntry::GetGroup() const [member function]
cls . add_method ( ' GetGroup ' ,
' ns3::Ipv4Address ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: uint32_t ns3::Ipv4MulticastRoutingTableEntry::GetInputInterface() const [member function]
cls . add_method ( ' GetInputInterface ' ,
' uint32_t ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: uint32_t ns3::Ipv4MulticastRoutingTableEntry::GetNOutputInterfaces() const [member function]
cls . add_method ( ' GetNOutputInterfaces ' ,
' uint32_t ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: ns3::Ipv4Address ns3::Ipv4MulticastRoutingTableEntry::GetOrigin() const [member function]
cls . add_method ( ' GetOrigin ' ,
' ns3::Ipv4Address ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: uint32_t ns3::Ipv4MulticastRoutingTableEntry::GetOutputInterface(uint32_t n) const [member function]
cls . add_method ( ' GetOutputInterface ' ,
' uint32_t ' ,
[ param ( ' uint32_t ' , ' n ' ) ] ,
is_const = True )
## ipv4-routing-table-entry.h: std::vector<unsigned int, std::allocator<unsigned int> > ns3::Ipv4MulticastRoutingTableEntry::GetOutputInterfaces() const [member function]
cls . add_method ( ' GetOutputInterfaces ' ,
' std::vector< unsigned int > ' ,
[ ] ,
is_const = True )
return
def register_Ns3Ipv4RoutingTableEntry_methods ( root_module , cls ) :
cls . add_output_stream_operator ( )
## ipv4-routing-table-entry.h: ns3::Ipv4RoutingTableEntry::Ipv4RoutingTableEntry() [constructor]
cls . add_constructor ( [ ] )
## ipv4-routing-table-entry.h: ns3::Ipv4RoutingTableEntry::Ipv4RoutingTableEntry(ns3::Ipv4RoutingTableEntry const & route) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Ipv4RoutingTableEntry const & ' , ' route ' ) ] )
## ipv4-routing-table-entry.h: ns3::Ipv4RoutingTableEntry::Ipv4RoutingTableEntry(ns3::Ipv4RoutingTableEntry const * route) [constructor]
cls . add_constructor ( [ param ( ' ns3::Ipv4RoutingTableEntry const * ' , ' route ' ) ] )
## ipv4-routing-table-entry.h: static ns3::Ipv4RoutingTableEntry ns3::Ipv4RoutingTableEntry::CreateDefaultRoute(ns3::Ipv4Address nextHop, uint32_t interface) [member function]
cls . add_method ( ' CreateDefaultRoute ' ,
' ns3::Ipv4RoutingTableEntry ' ,
[ param ( ' ns3::Ipv4Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] ,
is_static = True )
## ipv4-routing-table-entry.h: static ns3::Ipv4RoutingTableEntry ns3::Ipv4RoutingTableEntry::CreateHostRouteTo(ns3::Ipv4Address dest, ns3::Ipv4Address nextHop, uint32_t interface) [member function]
cls . add_method ( ' CreateHostRouteTo ' ,
' ns3::Ipv4RoutingTableEntry ' ,
[ param ( ' ns3::Ipv4Address ' , ' dest ' ) , param ( ' ns3::Ipv4Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] ,
is_static = True )
## ipv4-routing-table-entry.h: static ns3::Ipv4RoutingTableEntry ns3::Ipv4RoutingTableEntry::CreateHostRouteTo(ns3::Ipv4Address dest, uint32_t interface) [member function]
cls . add_method ( ' CreateHostRouteTo ' ,
' ns3::Ipv4RoutingTableEntry ' ,
[ param ( ' ns3::Ipv4Address ' , ' dest ' ) , param ( ' uint32_t ' , ' interface ' ) ] ,
is_static = True )
## ipv4-routing-table-entry.h: static ns3::Ipv4RoutingTableEntry ns3::Ipv4RoutingTableEntry::CreateNetworkRouteTo(ns3::Ipv4Address network, ns3::Ipv4Mask networkMask, ns3::Ipv4Address nextHop, uint32_t interface) [member function]
cls . add_method ( ' CreateNetworkRouteTo ' ,
' ns3::Ipv4RoutingTableEntry ' ,
[ param ( ' ns3::Ipv4Address ' , ' network ' ) , param ( ' ns3::Ipv4Mask ' , ' networkMask ' ) , param ( ' ns3::Ipv4Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] ,
is_static = True )
## ipv4-routing-table-entry.h: static ns3::Ipv4RoutingTableEntry ns3::Ipv4RoutingTableEntry::CreateNetworkRouteTo(ns3::Ipv4Address network, ns3::Ipv4Mask networkMask, uint32_t interface) [member function]
cls . add_method ( ' CreateNetworkRouteTo ' ,
' ns3::Ipv4RoutingTableEntry ' ,
[ param ( ' ns3::Ipv4Address ' , ' network ' ) , param ( ' ns3::Ipv4Mask ' , ' networkMask ' ) , param ( ' uint32_t ' , ' interface ' ) ] ,
is_static = True )
## ipv4-routing-table-entry.h: ns3::Ipv4Address ns3::Ipv4RoutingTableEntry::GetDest() const [member function]
cls . add_method ( ' GetDest ' ,
' ns3::Ipv4Address ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: ns3::Ipv4Address ns3::Ipv4RoutingTableEntry::GetDestNetwork() const [member function]
cls . add_method ( ' GetDestNetwork ' ,
' ns3::Ipv4Address ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: ns3::Ipv4Mask ns3::Ipv4RoutingTableEntry::GetDestNetworkMask() const [member function]
cls . add_method ( ' GetDestNetworkMask ' ,
' ns3::Ipv4Mask ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: ns3::Ipv4Address ns3::Ipv4RoutingTableEntry::GetGateway() const [member function]
cls . add_method ( ' GetGateway ' ,
' ns3::Ipv4Address ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: uint32_t ns3::Ipv4RoutingTableEntry::GetInterface() const [member function]
cls . add_method ( ' GetInterface ' ,
' uint32_t ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: bool ns3::Ipv4RoutingTableEntry::IsDefault() const [member function]
cls . add_method ( ' IsDefault ' ,
' bool ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: bool ns3::Ipv4RoutingTableEntry::IsGateway() const [member function]
cls . add_method ( ' IsGateway ' ,
' bool ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: bool ns3::Ipv4RoutingTableEntry::IsHost() const [member function]
cls . add_method ( ' IsHost ' ,
' bool ' ,
[ ] ,
is_const = True )
## ipv4-routing-table-entry.h: bool ns3::Ipv4RoutingTableEntry::IsNetwork() const [member function]
cls . add_method ( ' IsNetwork ' ,
' bool ' ,
[ ] ,
is_const = True )
return
2009-08-31 11:31:32 +01:00
def register_Ns3Ipv6MulticastRoutingTableEntry_methods ( root_module , cls ) :
cls . add_output_stream_operator ( )
## ipv6-routing-table-entry.h: ns3::Ipv6MulticastRoutingTableEntry::Ipv6MulticastRoutingTableEntry() [constructor]
cls . add_constructor ( [ ] )
## ipv6-routing-table-entry.h: ns3::Ipv6MulticastRoutingTableEntry::Ipv6MulticastRoutingTableEntry(ns3::Ipv6MulticastRoutingTableEntry const & route) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Ipv6MulticastRoutingTableEntry const & ' , ' route ' ) ] )
## ipv6-routing-table-entry.h: ns3::Ipv6MulticastRoutingTableEntry::Ipv6MulticastRoutingTableEntry(ns3::Ipv6MulticastRoutingTableEntry const * route) [constructor]
cls . add_constructor ( [ param ( ' ns3::Ipv6MulticastRoutingTableEntry const * ' , ' route ' ) ] )
## ipv6-routing-table-entry.h: static ns3::Ipv6MulticastRoutingTableEntry ns3::Ipv6MulticastRoutingTableEntry::CreateMulticastRoute(ns3::Ipv6Address origin, ns3::Ipv6Address group, uint32_t inputInterface, std::vector<unsigned int, std::allocator<unsigned int> > outputInterfaces) [member function]
cls . add_method ( ' CreateMulticastRoute ' ,
' ns3::Ipv6MulticastRoutingTableEntry ' ,
[ param ( ' ns3::Ipv6Address ' , ' origin ' ) , param ( ' ns3::Ipv6Address ' , ' group ' ) , param ( ' uint32_t ' , ' inputInterface ' ) , param ( ' std::vector< unsigned int > ' , ' outputInterfaces ' ) ] ,
is_static = True )
## ipv6-routing-table-entry.h: ns3::Ipv6Address ns3::Ipv6MulticastRoutingTableEntry::GetGroup() const [member function]
cls . add_method ( ' GetGroup ' ,
' ns3::Ipv6Address ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: uint32_t ns3::Ipv6MulticastRoutingTableEntry::GetInputInterface() const [member function]
cls . add_method ( ' GetInputInterface ' ,
' uint32_t ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: uint32_t ns3::Ipv6MulticastRoutingTableEntry::GetNOutputInterfaces() const [member function]
cls . add_method ( ' GetNOutputInterfaces ' ,
' uint32_t ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: ns3::Ipv6Address ns3::Ipv6MulticastRoutingTableEntry::GetOrigin() const [member function]
cls . add_method ( ' GetOrigin ' ,
' ns3::Ipv6Address ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: uint32_t ns3::Ipv6MulticastRoutingTableEntry::GetOutputInterface(uint32_t n) const [member function]
cls . add_method ( ' GetOutputInterface ' ,
' uint32_t ' ,
[ param ( ' uint32_t ' , ' n ' ) ] ,
is_const = True )
## ipv6-routing-table-entry.h: std::vector<unsigned int, std::allocator<unsigned int> > ns3::Ipv6MulticastRoutingTableEntry::GetOutputInterfaces() const [member function]
cls . add_method ( ' GetOutputInterfaces ' ,
' std::vector< unsigned int > ' ,
[ ] ,
is_const = True )
return
def register_Ns3Ipv6RoutingTableEntry_methods ( root_module , cls ) :
cls . add_output_stream_operator ( )
## ipv6-routing-table-entry.h: ns3::Ipv6RoutingTableEntry::Ipv6RoutingTableEntry() [constructor]
cls . add_constructor ( [ ] )
## ipv6-routing-table-entry.h: ns3::Ipv6RoutingTableEntry::Ipv6RoutingTableEntry(ns3::Ipv6RoutingTableEntry const & route) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Ipv6RoutingTableEntry const & ' , ' route ' ) ] )
## ipv6-routing-table-entry.h: ns3::Ipv6RoutingTableEntry::Ipv6RoutingTableEntry(ns3::Ipv6RoutingTableEntry const * route) [constructor]
cls . add_constructor ( [ param ( ' ns3::Ipv6RoutingTableEntry const * ' , ' route ' ) ] )
## ipv6-routing-table-entry.h: static ns3::Ipv6RoutingTableEntry ns3::Ipv6RoutingTableEntry::CreateDefaultRoute(ns3::Ipv6Address nextHop, uint32_t interface) [member function]
cls . add_method ( ' CreateDefaultRoute ' ,
' ns3::Ipv6RoutingTableEntry ' ,
[ param ( ' ns3::Ipv6Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] ,
is_static = True )
## ipv6-routing-table-entry.h: static ns3::Ipv6RoutingTableEntry ns3::Ipv6RoutingTableEntry::CreateHostRouteTo(ns3::Ipv6Address dest, ns3::Ipv6Address nextHop, uint32_t interface, ns3::Ipv6Address prefixToUse=ns3::Ipv6Address()) [member function]
cls . add_method ( ' CreateHostRouteTo ' ,
' ns3::Ipv6RoutingTableEntry ' ,
[ param ( ' ns3::Ipv6Address ' , ' dest ' ) , param ( ' ns3::Ipv6Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) , param ( ' ns3::Ipv6Address ' , ' prefixToUse ' , default_value = ' ns3::Ipv6Address() ' ) ] ,
is_static = True )
## ipv6-routing-table-entry.h: static ns3::Ipv6RoutingTableEntry ns3::Ipv6RoutingTableEntry::CreateHostRouteTo(ns3::Ipv6Address dest, uint32_t interface) [member function]
cls . add_method ( ' CreateHostRouteTo ' ,
' ns3::Ipv6RoutingTableEntry ' ,
[ param ( ' ns3::Ipv6Address ' , ' dest ' ) , param ( ' uint32_t ' , ' interface ' ) ] ,
is_static = True )
## ipv6-routing-table-entry.h: static ns3::Ipv6RoutingTableEntry ns3::Ipv6RoutingTableEntry::CreateNetworkRouteTo(ns3::Ipv6Address network, ns3::Ipv6Prefix networkPrefix, ns3::Ipv6Address nextHop, uint32_t interface) [member function]
cls . add_method ( ' CreateNetworkRouteTo ' ,
' ns3::Ipv6RoutingTableEntry ' ,
[ param ( ' ns3::Ipv6Address ' , ' network ' ) , param ( ' ns3::Ipv6Prefix ' , ' networkPrefix ' ) , param ( ' ns3::Ipv6Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] ,
is_static = True )
## ipv6-routing-table-entry.h: static ns3::Ipv6RoutingTableEntry ns3::Ipv6RoutingTableEntry::CreateNetworkRouteTo(ns3::Ipv6Address network, ns3::Ipv6Prefix networkPrefix, ns3::Ipv6Address nextHop, uint32_t interface, ns3::Ipv6Address prefixToUse) [member function]
cls . add_method ( ' CreateNetworkRouteTo ' ,
' ns3::Ipv6RoutingTableEntry ' ,
[ param ( ' ns3::Ipv6Address ' , ' network ' ) , param ( ' ns3::Ipv6Prefix ' , ' networkPrefix ' ) , param ( ' ns3::Ipv6Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) , param ( ' ns3::Ipv6Address ' , ' prefixToUse ' ) ] ,
is_static = True )
## ipv6-routing-table-entry.h: static ns3::Ipv6RoutingTableEntry ns3::Ipv6RoutingTableEntry::CreateNetworkRouteTo(ns3::Ipv6Address network, ns3::Ipv6Prefix networkPrefix, uint32_t interface) [member function]
cls . add_method ( ' CreateNetworkRouteTo ' ,
' ns3::Ipv6RoutingTableEntry ' ,
[ param ( ' ns3::Ipv6Address ' , ' network ' ) , param ( ' ns3::Ipv6Prefix ' , ' networkPrefix ' ) , param ( ' uint32_t ' , ' interface ' ) ] ,
is_static = True )
## ipv6-routing-table-entry.h: ns3::Ipv6Address ns3::Ipv6RoutingTableEntry::GetDest() const [member function]
cls . add_method ( ' GetDest ' ,
' ns3::Ipv6Address ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: ns3::Ipv6Address ns3::Ipv6RoutingTableEntry::GetDestNetwork() const [member function]
cls . add_method ( ' GetDestNetwork ' ,
' ns3::Ipv6Address ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: ns3::Ipv6Prefix ns3::Ipv6RoutingTableEntry::GetDestNetworkPrefix() const [member function]
cls . add_method ( ' GetDestNetworkPrefix ' ,
' ns3::Ipv6Prefix ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: ns3::Ipv6Address ns3::Ipv6RoutingTableEntry::GetGateway() const [member function]
cls . add_method ( ' GetGateway ' ,
' ns3::Ipv6Address ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: uint32_t ns3::Ipv6RoutingTableEntry::GetInterface() const [member function]
cls . add_method ( ' GetInterface ' ,
' uint32_t ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: ns3::Ipv6Address ns3::Ipv6RoutingTableEntry::GetPrefixToUse() const [member function]
cls . add_method ( ' GetPrefixToUse ' ,
' ns3::Ipv6Address ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: bool ns3::Ipv6RoutingTableEntry::IsDefault() const [member function]
cls . add_method ( ' IsDefault ' ,
' bool ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: bool ns3::Ipv6RoutingTableEntry::IsGateway() const [member function]
cls . add_method ( ' IsGateway ' ,
' bool ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: bool ns3::Ipv6RoutingTableEntry::IsHost() const [member function]
cls . add_method ( ' IsHost ' ,
' bool ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: bool ns3::Ipv6RoutingTableEntry::IsNetwork() const [member function]
cls . add_method ( ' IsNetwork ' ,
' bool ' ,
[ ] ,
is_const = True )
## ipv6-routing-table-entry.h: void ns3::Ipv6RoutingTableEntry::SetPrefixToUse(ns3::Ipv6Address prefix) [member function]
cls . add_method ( ' SetPrefixToUse ' ,
' void ' ,
[ param ( ' ns3::Ipv6Address ' , ' prefix ' ) ] )
return
2009-06-21 23:38:40 -07:00
def register_Ns3Ipv4StaticRouting_methods ( root_module , cls ) :
## ipv4-static-routing.h: ns3::Ipv4StaticRouting::Ipv4StaticRouting(ns3::Ipv4StaticRouting const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Ipv4StaticRouting const & ' , ' arg0 ' ) ] )
2009-08-31 11:31:32 +01:00
## ipv4-static-routing.h: ns3::Ipv4StaticRouting::Ipv4StaticRouting() [constructor]
cls . add_constructor ( [ ] )
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::AddHostRouteTo(ns3::Ipv4Address dest, ns3::Ipv4Address nextHop, uint32_t interface) [member function]
cls . add_method ( ' AddHostRouteTo ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' dest ' ) , param ( ' ns3::Ipv4Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::AddHostRouteTo(ns3::Ipv4Address dest, uint32_t interface) [member function]
cls . add_method ( ' AddHostRouteTo ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' dest ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::AddMulticastRoute(ns3::Ipv4Address origin, ns3::Ipv4Address group, uint32_t inputInterface, std::vector<unsigned int, std::allocator<unsigned int> > outputInterfaces) [member function]
cls . add_method ( ' AddMulticastRoute ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' origin ' ) , param ( ' ns3::Ipv4Address ' , ' group ' ) , param ( ' uint32_t ' , ' inputInterface ' ) , param ( ' std::vector< unsigned int > ' , ' outputInterfaces ' ) ] )
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::AddNetworkRouteTo(ns3::Ipv4Address network, ns3::Ipv4Mask networkMask, ns3::Ipv4Address nextHop, uint32_t interface) [member function]
cls . add_method ( ' AddNetworkRouteTo ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' network ' ) , param ( ' ns3::Ipv4Mask ' , ' networkMask ' ) , param ( ' ns3::Ipv4Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::AddNetworkRouteTo(ns3::Ipv4Address network, ns3::Ipv4Mask networkMask, uint32_t interface) [member function]
cls . add_method ( ' AddNetworkRouteTo ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' network ' ) , param ( ' ns3::Ipv4Mask ' , ' networkMask ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
## ipv4-static-routing.h: ns3::Ipv4RoutingTableEntry ns3::Ipv4StaticRouting::GetDefaultRoute() [member function]
cls . add_method ( ' GetDefaultRoute ' ,
' ns3::Ipv4RoutingTableEntry ' ,
[ ] )
## ipv4-static-routing.h: ns3::Ipv4MulticastRoutingTableEntry ns3::Ipv4StaticRouting::GetMulticastRoute(uint32_t i) const [member function]
cls . add_method ( ' GetMulticastRoute ' ,
' ns3::Ipv4MulticastRoutingTableEntry ' ,
[ param ( ' uint32_t ' , ' i ' ) ] ,
is_const = True )
## ipv4-static-routing.h: uint32_t ns3::Ipv4StaticRouting::GetNMulticastRoutes() const [member function]
cls . add_method ( ' GetNMulticastRoutes ' ,
' uint32_t ' ,
[ ] ,
is_const = True )
## ipv4-static-routing.h: uint32_t ns3::Ipv4StaticRouting::GetNRoutes() [member function]
cls . add_method ( ' GetNRoutes ' ,
' uint32_t ' ,
[ ] )
## ipv4-static-routing.h: ns3::Ipv4RoutingTableEntry ns3::Ipv4StaticRouting::GetRoute(uint32_t i) [member function]
cls . add_method ( ' GetRoute ' ,
' ns3::Ipv4RoutingTableEntry ' ,
[ param ( ' uint32_t ' , ' i ' ) ] )
2009-06-21 23:38:40 -07:00
## ipv4-static-routing.h: static ns3::TypeId ns3::Ipv4StaticRouting::GetTypeId() [member function]
cls . add_method ( ' GetTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_static = True )
2009-08-31 11:31:32 +01:00
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::NotifyAddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
cls . add_method ( ' NotifyAddAddress ' ,
2009-06-21 23:38:40 -07:00
' void ' ,
2009-08-31 11:31:32 +01:00
[ param ( ' uint32_t ' , ' interface ' ) , param ( ' ns3::Ipv4InterfaceAddress ' , ' address ' ) ] ,
2009-06-21 23:38:40 -07:00
is_virtual = True )
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::NotifyInterfaceDown(uint32_t interface) [member function]
cls . add_method ( ' NotifyInterfaceDown ' ,
' void ' ,
[ param ( ' uint32_t ' , ' interface ' ) ] ,
is_virtual = True )
2009-08-31 11:31:32 +01:00
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::NotifyInterfaceUp(uint32_t interface) [member function]
cls . add_method ( ' NotifyInterfaceUp ' ,
2009-06-21 23:38:40 -07:00
' void ' ,
2009-08-31 11:31:32 +01:00
[ param ( ' uint32_t ' , ' interface ' ) ] ,
2009-06-21 23:38:40 -07:00
is_virtual = True )
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::NotifyRemoveAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
cls . add_method ( ' NotifyRemoveAddress ' ,
' void ' ,
[ param ( ' uint32_t ' , ' interface ' ) , param ( ' ns3::Ipv4InterfaceAddress ' , ' address ' ) ] ,
is_virtual = True )
2009-08-31 11:31:32 +01:00
## ipv4-static-routing.h: bool ns3::Ipv4StaticRouting::RemoveMulticastRoute(ns3::Ipv4Address origin, ns3::Ipv4Address group, uint32_t inputInterface) [member function]
cls . add_method ( ' RemoveMulticastRoute ' ,
' bool ' ,
[ param ( ' ns3::Ipv4Address ' , ' origin ' ) , param ( ' ns3::Ipv4Address ' , ' group ' ) , param ( ' uint32_t ' , ' inputInterface ' ) ] )
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::RemoveMulticastRoute(uint32_t index) [member function]
cls . add_method ( ' RemoveMulticastRoute ' ,
' void ' ,
[ param ( ' uint32_t ' , ' index ' ) ] )
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::RemoveRoute(uint32_t i) [member function]
cls . add_method ( ' RemoveRoute ' ,
' void ' ,
[ param ( ' uint32_t ' , ' i ' ) ] )
## ipv4-static-routing.h: bool ns3::Ipv4StaticRouting::RouteInput(ns3::Ptr<ns3::Packet const> p, ns3::Ipv4Header const & header, ns3::Ptr<const ns3::NetDevice> idev, ns3::Callback<void,ns3::Ptr<ns3::Ipv4Route>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ucb, ns3::Callback<void,ns3::Ptr<ns3::Ipv4MulticastRoute>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> mcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,unsigned int,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> lcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::Socket::SocketErrno,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ecb) [member function]
cls . add_method ( ' RouteInput ' ,
' bool ' ,
[ param ( ' ns3::Ptr< ns3::Packet const > ' , ' p ' ) , param ( ' ns3::Ipv4Header const & ' , ' header ' ) , param ( ' ns3::Ptr< ns3::NetDevice const > ' , ' idev ' ) , param ( ' ns3::Callback< void, ns3::Ptr< ns3::Ipv4Route >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > ' , ' ucb ' ) , param ( ' ns3::Callback< void, ns3::Ptr< ns3::Ipv4MulticastRoute >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > ' , ' mcb ' ) , param ( ' ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > ' , ' lcb ' ) , param ( ' ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::Socket::SocketErrno, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > ' , ' ecb ' ) ] ,
is_virtual = True )
## ipv4-static-routing.h: ns3::Ptr<ns3::Ipv4Route> ns3::Ipv4StaticRouting::RouteOutput(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Header const & header, uint32_t oif, ns3::Socket::SocketErrno & sockerr) [member function]
cls . add_method ( ' RouteOutput ' ,
' ns3::Ptr< ns3::Ipv4Route > ' ,
[ param ( ' ns3::Ptr< ns3::Packet > ' , ' p ' ) , param ( ' ns3::Ipv4Header const & ' , ' header ' ) , param ( ' uint32_t ' , ' oif ' ) , param ( ' ns3::Socket::SocketErrno & ' , ' sockerr ' ) ] ,
is_virtual = True )
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::SetDefaultMulticastRoute(uint32_t outputInterface) [member function]
cls . add_method ( ' SetDefaultMulticastRoute ' ,
' void ' ,
[ param ( ' uint32_t ' , ' outputInterface ' ) ] )
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::SetDefaultRoute(ns3::Ipv4Address nextHop, uint32_t interface) [member function]
cls . add_method ( ' SetDefaultRoute ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
2009-06-21 23:38:40 -07:00
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::SetIpv4(ns3::Ptr<ns3::Ipv4> ipv4) [member function]
cls . add_method ( ' SetIpv4 ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Ipv4 > ' , ' ipv4 ' ) ] ,
is_virtual = True )
2009-08-31 11:31:32 +01:00
## ipv4-static-routing.h: void ns3::Ipv4StaticRouting::DoDispose() [member function]
cls . add_method ( ' DoDispose ' ,
' void ' ,
[ ] ,
visibility = ' protected ' , is_virtual = True )
return
def register_Ns3Ipv6StaticRouting_methods ( root_module , cls ) :
## ipv6-static-routing.h: ns3::Ipv6StaticRouting::Ipv6StaticRouting(ns3::Ipv6StaticRouting const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Ipv6StaticRouting const & ' , ' arg0 ' ) ] )
## ipv6-static-routing.h: ns3::Ipv6StaticRouting::Ipv6StaticRouting() [constructor]
cls . add_constructor ( [ ] )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::AddHostRouteTo(ns3::Ipv6Address dest, ns3::Ipv6Address nextHop, uint32_t interface, ns3::Ipv6Address prefixToUse=ns3::Ipv6Address(((const char*)"::"))) [member function]
2009-06-21 23:38:40 -07:00
cls . add_method ( ' AddHostRouteTo ' ,
' void ' ,
2009-08-31 11:31:32 +01:00
[ param ( ' ns3::Ipv6Address ' , ' dest ' ) , param ( ' ns3::Ipv6Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) , param ( ' ns3::Ipv6Address ' , ' prefixToUse ' , default_value = ' ns3::Ipv6Address(((const char*) " :: " )) ' ) ] )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::AddHostRouteTo(ns3::Ipv6Address dest, uint32_t interface) [member function]
2009-06-21 23:38:40 -07:00
cls . add_method ( ' AddHostRouteTo ' ,
' void ' ,
2009-08-31 11:31:32 +01:00
[ param ( ' ns3::Ipv6Address ' , ' dest ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::AddMulticastRoute(ns3::Ipv6Address origin, ns3::Ipv6Address group, uint32_t inputInterface, std::vector<unsigned int, std::allocator<unsigned int> > outputInterfaces) [member function]
cls . add_method ( ' AddMulticastRoute ' ,
' void ' ,
[ param ( ' ns3::Ipv6Address ' , ' origin ' ) , param ( ' ns3::Ipv6Address ' , ' group ' ) , param ( ' uint32_t ' , ' inputInterface ' ) , param ( ' std::vector< unsigned int > ' , ' outputInterfaces ' ) ] )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::AddNetworkRouteTo(ns3::Ipv6Address network, ns3::Ipv6Prefix networkPrefix, ns3::Ipv6Address nextHop, uint32_t interface) [member function]
2009-06-21 23:38:40 -07:00
cls . add_method ( ' AddNetworkRouteTo ' ,
' void ' ,
2009-08-31 11:31:32 +01:00
[ param ( ' ns3::Ipv6Address ' , ' network ' ) , param ( ' ns3::Ipv6Prefix ' , ' networkPrefix ' ) , param ( ' ns3::Ipv6Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::AddNetworkRouteTo(ns3::Ipv6Address network, ns3::Ipv6Prefix networkPrefix, ns3::Ipv6Address nextHop, uint32_t interface, ns3::Ipv6Address prefixToUse) [member function]
2009-06-21 23:38:40 -07:00
cls . add_method ( ' AddNetworkRouteTo ' ,
' void ' ,
2009-08-31 11:31:32 +01:00
[ param ( ' ns3::Ipv6Address ' , ' network ' ) , param ( ' ns3::Ipv6Prefix ' , ' networkPrefix ' ) , param ( ' ns3::Ipv6Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) , param ( ' ns3::Ipv6Address ' , ' prefixToUse ' ) ] )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::AddNetworkRouteTo(ns3::Ipv6Address network, ns3::Ipv6Prefix networkPrefix, uint32_t interface) [member function]
cls . add_method ( ' AddNetworkRouteTo ' ,
2009-06-21 23:38:40 -07:00
' void ' ,
2009-08-31 11:31:32 +01:00
[ param ( ' ns3::Ipv6Address ' , ' network ' ) , param ( ' ns3::Ipv6Prefix ' , ' networkPrefix ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
## ipv6-static-routing.h: ns3::Ipv6RoutingTableEntry ns3::Ipv6StaticRouting::GetDefaultRoute() [member function]
cls . add_method ( ' GetDefaultRoute ' ,
' ns3::Ipv6RoutingTableEntry ' ,
[ ] )
## ipv6-static-routing.h: ns3::Ipv6MulticastRoutingTableEntry ns3::Ipv6StaticRouting::GetMulticastRoute(uint32_t i) const [member function]
cls . add_method ( ' GetMulticastRoute ' ,
' ns3::Ipv6MulticastRoutingTableEntry ' ,
[ param ( ' uint32_t ' , ' i ' ) ] ,
is_const = True )
## ipv6-static-routing.h: uint32_t ns3::Ipv6StaticRouting::GetNMulticastRoutes() const [member function]
cls . add_method ( ' GetNMulticastRoutes ' ,
' uint32_t ' ,
[ ] ,
is_const = True )
## ipv6-static-routing.h: uint32_t ns3::Ipv6StaticRouting::GetNRoutes() [member function]
2009-06-21 23:38:40 -07:00
cls . add_method ( ' GetNRoutes ' ,
' uint32_t ' ,
[ ] )
2009-08-31 11:31:32 +01:00
## ipv6-static-routing.h: ns3::Ipv6RoutingTableEntry ns3::Ipv6StaticRouting::GetRoute(uint32_t i) [member function]
2009-06-21 23:38:40 -07:00
cls . add_method ( ' GetRoute ' ,
2009-08-31 11:31:32 +01:00
' ns3::Ipv6RoutingTableEntry ' ,
2009-06-21 23:38:40 -07:00
[ param ( ' uint32_t ' , ' i ' ) ] )
2009-08-31 11:31:32 +01:00
## ipv6-static-routing.h: static ns3::TypeId ns3::Ipv6StaticRouting::GetTypeId() [member function]
cls . add_method ( ' GetTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_static = True )
## ipv6-static-routing.h: bool ns3::Ipv6StaticRouting::HasNetworkDest(ns3::Ipv6Address dest, uint32_t interfaceIndex) [member function]
cls . add_method ( ' HasNetworkDest ' ,
' bool ' ,
[ param ( ' ns3::Ipv6Address ' , ' dest ' ) , param ( ' uint32_t ' , ' interfaceIndex ' ) ] )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::NotifyAddAddress(uint32_t interface, ns3::Ipv6InterfaceAddress address) [member function]
cls . add_method ( ' NotifyAddAddress ' ,
' void ' ,
[ param ( ' uint32_t ' , ' interface ' ) , param ( ' ns3::Ipv6InterfaceAddress ' , ' address ' ) ] ,
is_virtual = True )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::NotifyAddRoute(ns3::Ipv6Address dst, ns3::Ipv6Prefix mask, ns3::Ipv6Address nextHop, uint32_t interface, ns3::Ipv6Address prefixToUse=ns3::Ipv6Address::GetZero( )) [member function]
cls . add_method ( ' NotifyAddRoute ' ,
' void ' ,
[ param ( ' ns3::Ipv6Address ' , ' dst ' ) , param ( ' ns3::Ipv6Prefix ' , ' mask ' ) , param ( ' ns3::Ipv6Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) , param ( ' ns3::Ipv6Address ' , ' prefixToUse ' , default_value = ' ns3::Ipv6Address::GetZero( ) ' ) ] ,
is_virtual = True )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::NotifyInterfaceDown(uint32_t interface) [member function]
cls . add_method ( ' NotifyInterfaceDown ' ,
' void ' ,
[ param ( ' uint32_t ' , ' interface ' ) ] ,
is_virtual = True )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::NotifyInterfaceUp(uint32_t interface) [member function]
cls . add_method ( ' NotifyInterfaceUp ' ,
' void ' ,
[ param ( ' uint32_t ' , ' interface ' ) ] ,
is_virtual = True )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::NotifyRemoveAddress(uint32_t interface, ns3::Ipv6InterfaceAddress address) [member function]
cls . add_method ( ' NotifyRemoveAddress ' ,
' void ' ,
[ param ( ' uint32_t ' , ' interface ' ) , param ( ' ns3::Ipv6InterfaceAddress ' , ' address ' ) ] ,
is_virtual = True )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::NotifyRemoveRoute(ns3::Ipv6Address dst, ns3::Ipv6Prefix mask, ns3::Ipv6Address nextHop, uint32_t interface) [member function]
cls . add_method ( ' NotifyRemoveRoute ' ,
' void ' ,
[ param ( ' ns3::Ipv6Address ' , ' dst ' ) , param ( ' ns3::Ipv6Prefix ' , ' mask ' ) , param ( ' ns3::Ipv6Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] ,
is_virtual = True )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::RemoveDefaultRoute() [member function]
cls . add_method ( ' RemoveDefaultRoute ' ,
' void ' ,
[ ] )
## ipv6-static-routing.h: bool ns3::Ipv6StaticRouting::RemoveMulticastRoute(ns3::Ipv6Address origin, ns3::Ipv6Address group, uint32_t inputInterface) [member function]
cls . add_method ( ' RemoveMulticastRoute ' ,
' bool ' ,
[ param ( ' ns3::Ipv6Address ' , ' origin ' ) , param ( ' ns3::Ipv6Address ' , ' group ' ) , param ( ' uint32_t ' , ' inputInterface ' ) ] )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::RemoveMulticastRoute(uint32_t i) [member function]
cls . add_method ( ' RemoveMulticastRoute ' ,
' void ' ,
[ param ( ' uint32_t ' , ' i ' ) ] )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::RemoveRoute(uint32_t i) [member function]
2009-06-21 23:38:40 -07:00
cls . add_method ( ' RemoveRoute ' ,
' void ' ,
[ param ( ' uint32_t ' , ' i ' ) ] )
2009-08-31 11:31:32 +01:00
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::RemoveRoute(ns3::Ipv6Address network, ns3::Ipv6Prefix prefix, uint32_t ifIndex) [member function]
cls . add_method ( ' RemoveRoute ' ,
2009-06-21 23:38:40 -07:00
' void ' ,
2009-08-31 11:31:32 +01:00
[ param ( ' ns3::Ipv6Address ' , ' network ' ) , param ( ' ns3::Ipv6Prefix ' , ' prefix ' ) , param ( ' uint32_t ' , ' ifIndex ' ) ] )
## ipv6-static-routing.h: bool ns3::Ipv6StaticRouting::RouteInput(ns3::Ptr<ns3::Packet const> p, ns3::Ipv6Header const & header, ns3::Ptr<const ns3::NetDevice> idev, ns3::Callback<void,ns3::Ptr<ns3::Ipv6Route>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv6Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ucb, ns3::Callback<void,ns3::Ptr<ns3::Ipv6MulticastRoute>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv6Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> mcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv6Header&,unsigned int,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> lcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv6Header&,ns3::Socket::SocketErrno,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ecb) [member function]
cls . add_method ( ' RouteInput ' ,
' bool ' ,
[ param ( ' ns3::Ptr< ns3::Packet const > ' , ' p ' ) , param ( ' ns3::Ipv6Header const & ' , ' header ' ) , param ( ' ns3::Ptr< ns3::NetDevice const > ' , ' idev ' ) , param ( ' ns3::Callback< void, ns3::Ptr< ns3::Ipv6Route >, ns3::Ptr< ns3::Packet const >, ns3::Ipv6Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > ' , ' ucb ' ) , param ( ' ns3::Callback< void, ns3::Ptr< ns3::Ipv6MulticastRoute >, ns3::Ptr< ns3::Packet const >, ns3::Ipv6Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > ' , ' mcb ' ) , param ( ' ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv6Header const &, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > ' , ' lcb ' ) , param ( ' ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv6Header const &, ns3::Socket::SocketErrno, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty > ' , ' ecb ' ) ] ,
is_virtual = True )
## ipv6-static-routing.h: ns3::Ptr<ns3::Ipv6Route> ns3::Ipv6StaticRouting::RouteOutput(ns3::Ptr<ns3::Packet> p, ns3::Ipv6Header const & header, uint32_t oif, ns3::Socket::SocketErrno & sockerr) [member function]
cls . add_method ( ' RouteOutput ' ,
' ns3::Ptr< ns3::Ipv6Route > ' ,
[ param ( ' ns3::Ptr< ns3::Packet > ' , ' p ' ) , param ( ' ns3::Ipv6Header const & ' , ' header ' ) , param ( ' uint32_t ' , ' oif ' ) , param ( ' ns3::Socket::SocketErrno & ' , ' sockerr ' ) ] ,
is_virtual = True )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::SetDefaultMulticastRoute(uint32_t outputInterface) [member function]
2009-06-21 23:38:40 -07:00
cls . add_method ( ' SetDefaultMulticastRoute ' ,
' void ' ,
[ param ( ' uint32_t ' , ' outputInterface ' ) ] )
2009-08-31 11:31:32 +01:00
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::SetDefaultRoute(ns3::Ipv6Address nextHop, uint32_t interface, ns3::Ipv6Address prefixToUse=ns3::Ipv6Address(((const char*)"::"))) [member function]
cls . add_method ( ' SetDefaultRoute ' ,
2009-06-21 23:38:40 -07:00
' void ' ,
2009-08-31 11:31:32 +01:00
[ param ( ' ns3::Ipv6Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) , param ( ' ns3::Ipv6Address ' , ' prefixToUse ' , default_value = ' ns3::Ipv6Address(((const char*) " :: " )) ' ) ] )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::SetIpv6(ns3::Ptr<ns3::Ipv6> ipv6) [member function]
cls . add_method ( ' SetIpv6 ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Ipv6 > ' , ' ipv6 ' ) ] ,
is_virtual = True )
## ipv6-static-routing.h: void ns3::Ipv6StaticRouting::DoDispose() [member function]
2009-06-21 23:38:40 -07:00
cls . add_method ( ' DoDispose ' ,
' void ' ,
[ ] ,
visibility = ' protected ' , is_virtual = True )
return
def register_functions ( root_module ) :
module = root_module
register_functions_ns3_Config ( module . get_submodule ( ' Config ' ) , root_module )
register_functions_ns3_TimeStepPrecision ( module . get_submodule ( ' TimeStepPrecision ' ) , root_module )
register_functions_ns3_addressUtils ( module . get_submodule ( ' addressUtils ' ) , root_module )
register_functions_ns3_internal ( module . get_submodule ( ' internal ' ) , root_module )
register_functions_ns3_olsr ( module . get_submodule ( ' olsr ' ) , root_module )
return
def register_functions_ns3_Config ( module , root_module ) :
return
def register_functions_ns3_TimeStepPrecision ( module , root_module ) :
return
def register_functions_ns3_addressUtils ( module , root_module ) :
return
def register_functions_ns3_internal ( module , root_module ) :
return
def register_functions_ns3_olsr ( module , root_module ) :
return