2008-07-21 15:30:15 +01:00
from pybindgen import Module , FileCodeSink , param , retval , cppclass
2008-07-08 10:43:58 -07:00
def register_types ( module ) :
root_module = module . get_root ( )
2008-10-29 11:18:39 -07:00
## icmpv4.h: ns3::Icmpv4DestinationUnreachable [class]
module . add_class ( ' Icmpv4DestinationUnreachable ' , parent = root_module [ ' ns3::Header ' ] )
## icmpv4.h: ns3::Icmpv4DestinationUnreachable [enumeration]
module . add_enum ( ' ' , [ ' NET_UNREACHABLE ' , ' HOST_UNREACHABLE ' , ' PROTOCOL_UNREACHABLE ' , ' PORT_UNREACHABLE ' , ' FRAG_NEEDED ' , ' SOURCE_ROUTE_FAILED ' ] , outer_class = root_module [ ' ns3::Icmpv4DestinationUnreachable ' ] )
## icmpv4.h: ns3::Icmpv4Echo [class]
module . add_class ( ' Icmpv4Echo ' , parent = root_module [ ' ns3::Header ' ] )
## icmpv4.h: ns3::Icmpv4Header [class]
module . add_class ( ' Icmpv4Header ' , parent = root_module [ ' ns3::Header ' ] )
## icmpv4.h: ns3::Icmpv4Header [enumeration]
module . add_enum ( ' ' , [ ' ECHO_REPLY ' , ' DEST_UNREACH ' , ' ECHO ' , ' TIME_EXCEEDED ' ] , outer_class = root_module [ ' ns3::Icmpv4Header ' ] )
## icmpv4.h: ns3::Icmpv4TimeExceeded [class]
module . add_class ( ' Icmpv4TimeExceeded ' , parent = root_module [ ' ns3::Header ' ] )
## icmpv4.h: ns3::Icmpv4TimeExceeded [enumeration]
module . add_enum ( ' ' , [ ' TIME_TO_LIVE ' , ' FRAGMENT_REASSEMBLY ' ] , outer_class = root_module [ ' ns3::Icmpv4TimeExceeded ' ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: ns3::TcpHeader [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' TcpHeader ' , parent = root_module [ ' ns3::Header ' ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: ns3::TcpHeader::Flags_t [enumeration]
module . add_enum ( ' Flags_t ' , [ ' NONE ' , ' FIN ' , ' SYN ' , ' RST ' , ' PSH ' , ' ACK ' , ' URG ' ] , outer_class = root_module [ ' ns3::TcpHeader ' ] )
2008-10-06 17:39:35 +01:00
## udp-header.h: ns3::UdpHeader [class]
module . add_class ( ' UdpHeader ' , parent = root_module [ ' ns3::Header ' ] )
## ipv4-interface.h: ns3::Ipv4Interface [class]
module . add_class ( ' Ipv4Interface ' , parent = root_module [ ' ns3::Object ' ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: ns3::Ipv4L3Protocol [class]
2008-07-14 11:42:49 +01:00
module . add_class ( ' Ipv4L3Protocol ' , parent = root_module [ ' ns3::Object ' ] )
2008-09-02 11:28:03 -07:00
## ipv4-static-routing.h: ns3::Ipv4StaticRouting [class]
module . add_class ( ' Ipv4StaticRouting ' , parent = root_module [ ' ns3::Ipv4RoutingProtocol ' ] )
2008-07-08 10:43:58 -07:00
2008-11-08 15:00:28 +00:00
## Register a nested module for the namespace Config
2008-07-08 10:43:58 -07:00
2008-11-08 15:00:28 +00:00
nested_module = module . add_cpp_namespace ( ' Config ' )
register_types_ns3_Config ( nested_module )
2008-07-08 10:43:58 -07:00
## Register a nested module for the namespace TimeStepPrecision
nested_module = module . add_cpp_namespace ( ' TimeStepPrecision ' )
register_types_ns3_TimeStepPrecision ( nested_module )
2008-11-08 15:00:28 +00:00
## Register a nested module for the namespace internal
2008-07-08 10:43:58 -07:00
2008-11-08 15:00:28 +00:00
nested_module = module . add_cpp_namespace ( ' internal ' )
register_types_ns3_internal ( nested_module )
2008-07-08 10:43:58 -07:00
## Register a nested module for the namespace olsr
nested_module = module . add_cpp_namespace ( ' olsr ' )
register_types_ns3_olsr ( nested_module )
2008-11-08 15:00:28 +00:00
def register_types_ns3_Config ( module ) :
2008-07-08 10:43:58 -07:00
root_module = module . get_root ( )
def register_types_ns3_TimeStepPrecision ( module ) :
root_module = module . get_root ( )
2008-11-08 15:00:28 +00:00
def register_types_ns3_internal ( module ) :
2008-07-08 10:43:58 -07:00
root_module = module . get_root ( )
def register_types_ns3_olsr ( module ) :
root_module = module . get_root ( )
def register_methods ( root_module ) :
2008-10-29 11:18:39 -07:00
register_Ns3Icmpv4DestinationUnreachable_methods ( root_module , root_module [ ' ns3::Icmpv4DestinationUnreachable ' ] )
register_Ns3Icmpv4Echo_methods ( root_module , root_module [ ' ns3::Icmpv4Echo ' ] )
register_Ns3Icmpv4Header_methods ( root_module , root_module [ ' ns3::Icmpv4Header ' ] )
register_Ns3Icmpv4TimeExceeded_methods ( root_module , root_module [ ' ns3::Icmpv4TimeExceeded ' ] )
2008-07-08 10:43:58 -07:00
register_Ns3TcpHeader_methods ( root_module , root_module [ ' ns3::TcpHeader ' ] )
2008-10-06 17:39:35 +01:00
register_Ns3UdpHeader_methods ( root_module , root_module [ ' ns3::UdpHeader ' ] )
register_Ns3Ipv4Interface_methods ( root_module , root_module [ ' ns3::Ipv4Interface ' ] )
2008-07-08 10:43:58 -07:00
register_Ns3Ipv4L3Protocol_methods ( root_module , root_module [ ' ns3::Ipv4L3Protocol ' ] )
2008-09-02 11:28:03 -07:00
register_Ns3Ipv4StaticRouting_methods ( root_module , root_module [ ' ns3::Ipv4StaticRouting ' ] )
2008-07-08 10:43:58 -07:00
return
2008-10-29 11:18:39 -07:00
def register_Ns3Icmpv4DestinationUnreachable_methods ( root_module , cls ) :
## icmpv4.h: ns3::Icmpv4DestinationUnreachable::Icmpv4DestinationUnreachable(ns3::Icmpv4DestinationUnreachable const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Icmpv4DestinationUnreachable const & ' , ' arg0 ' ) ] )
## icmpv4.h: static ns3::TypeId ns3::Icmpv4DestinationUnreachable::GetTypeId() [member function]
cls . add_method ( ' GetTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_static = True )
## icmpv4.h: ns3::Icmpv4DestinationUnreachable::Icmpv4DestinationUnreachable() [constructor]
cls . add_constructor ( [ ] )
## icmpv4.h: void ns3::Icmpv4DestinationUnreachable::SetNextHopMtu(uint16_t mtu) [member function]
cls . add_method ( ' SetNextHopMtu ' ,
' void ' ,
[ param ( ' uint16_t ' , ' mtu ' ) ] )
## icmpv4.h: uint16_t ns3::Icmpv4DestinationUnreachable::GetNextHopMtu() const [member function]
cls . add_method ( ' GetNextHopMtu ' ,
' uint16_t ' ,
[ ] ,
is_const = True )
## icmpv4.h: void ns3::Icmpv4DestinationUnreachable::SetData(ns3::Ptr<const ns3::Packet> data) [member function]
cls . add_method ( ' SetData ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Packet const > ' , ' data ' ) ] )
## icmpv4.h: void ns3::Icmpv4DestinationUnreachable::SetHeader(ns3::Ipv4Header header) [member function]
cls . add_method ( ' SetHeader ' ,
' void ' ,
[ param ( ' ns3::Ipv4Header ' , ' header ' ) ] )
## icmpv4.h: void ns3::Icmpv4DestinationUnreachable::GetData(uint8_t * payload) const [member function]
cls . add_method ( ' GetData ' ,
' void ' ,
[ param ( ' uint8_t * ' , ' payload ' ) ] ,
is_const = True )
## icmpv4.h: ns3::Ipv4Header ns3::Icmpv4DestinationUnreachable::GetHeader() const [member function]
cls . add_method ( ' GetHeader ' ,
' ns3::Ipv4Header ' ,
[ ] ,
is_const = True )
## icmpv4.h: ns3::TypeId ns3::Icmpv4DestinationUnreachable::GetInstanceTypeId() const [member function]
cls . add_method ( ' GetInstanceTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_const = True , visibility = ' private ' , is_virtual = True )
## icmpv4.h: uint32_t ns3::Icmpv4DestinationUnreachable::GetSerializedSize() const [member function]
cls . add_method ( ' GetSerializedSize ' ,
' uint32_t ' ,
[ ] ,
is_const = True , visibility = ' private ' , is_virtual = True )
## icmpv4.h: void ns3::Icmpv4DestinationUnreachable::Serialize(ns3::Buffer::Iterator start) const [member function]
cls . add_method ( ' Serialize ' ,
' void ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
is_const = True , visibility = ' private ' , is_virtual = True )
## icmpv4.h: uint32_t ns3::Icmpv4DestinationUnreachable::Deserialize(ns3::Buffer::Iterator start) [member function]
cls . add_method ( ' Deserialize ' ,
' uint32_t ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
visibility = ' private ' , is_virtual = True )
## icmpv4.h: void ns3::Icmpv4DestinationUnreachable::Print(std::ostream & os) const [member function]
cls . add_method ( ' Print ' ,
' void ' ,
[ param ( ' std::ostream & ' , ' os ' ) ] ,
is_const = True , visibility = ' private ' , is_virtual = True )
return
def register_Ns3Icmpv4Echo_methods ( root_module , cls ) :
## icmpv4.h: ns3::Icmpv4Echo::Icmpv4Echo(ns3::Icmpv4Echo const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Icmpv4Echo const & ' , ' arg0 ' ) ] )
## icmpv4.h: void ns3::Icmpv4Echo::SetIdentifier(uint16_t id) [member function]
cls . add_method ( ' SetIdentifier ' ,
' void ' ,
[ param ( ' uint16_t ' , ' id ' ) ] )
## icmpv4.h: void ns3::Icmpv4Echo::SetSequenceNumber(uint16_t seq) [member function]
cls . add_method ( ' SetSequenceNumber ' ,
' void ' ,
[ param ( ' uint16_t ' , ' seq ' ) ] )
## icmpv4.h: void ns3::Icmpv4Echo::SetData(ns3::Ptr<const ns3::Packet> data) [member function]
cls . add_method ( ' SetData ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Packet const > ' , ' data ' ) ] )
## icmpv4.h: uint16_t ns3::Icmpv4Echo::GetIdentifier() const [member function]
cls . add_method ( ' GetIdentifier ' ,
' uint16_t ' ,
[ ] ,
is_const = True )
## icmpv4.h: uint16_t ns3::Icmpv4Echo::GetSequenceNumber() const [member function]
cls . add_method ( ' GetSequenceNumber ' ,
' uint16_t ' ,
[ ] ,
is_const = True )
## icmpv4.h: ns3::Ptr<const ns3::Packet> ns3::Icmpv4Echo::GetData() const [member function]
cls . add_method ( ' GetData ' ,
' ns3::Ptr< ns3::Packet const > ' ,
[ ] ,
is_const = True )
## icmpv4.h: static ns3::TypeId ns3::Icmpv4Echo::GetTypeId() [member function]
cls . add_method ( ' GetTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_static = True )
## icmpv4.h: ns3::Icmpv4Echo::Icmpv4Echo() [constructor]
cls . add_constructor ( [ ] )
## icmpv4.h: ns3::TypeId ns3::Icmpv4Echo::GetInstanceTypeId() const [member function]
cls . add_method ( ' GetInstanceTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_const = True , is_virtual = True )
## icmpv4.h: uint32_t ns3::Icmpv4Echo::GetSerializedSize() const [member function]
cls . add_method ( ' GetSerializedSize ' ,
' uint32_t ' ,
[ ] ,
is_const = True , is_virtual = True )
## icmpv4.h: void ns3::Icmpv4Echo::Serialize(ns3::Buffer::Iterator start) const [member function]
cls . add_method ( ' Serialize ' ,
' void ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
is_const = True , is_virtual = True )
## icmpv4.h: uint32_t ns3::Icmpv4Echo::Deserialize(ns3::Buffer::Iterator start) [member function]
cls . add_method ( ' Deserialize ' ,
' uint32_t ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
is_virtual = True )
## icmpv4.h: void ns3::Icmpv4Echo::Print(std::ostream & os) const [member function]
cls . add_method ( ' Print ' ,
' void ' ,
[ param ( ' std::ostream & ' , ' os ' ) ] ,
is_const = True , is_virtual = True )
return
def register_Ns3Icmpv4Header_methods ( root_module , cls ) :
## icmpv4.h: ns3::Icmpv4Header::Icmpv4Header(ns3::Icmpv4Header const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Icmpv4Header const & ' , ' arg0 ' ) ] )
## icmpv4.h: void ns3::Icmpv4Header::EnableChecksum() [member function]
cls . add_method ( ' EnableChecksum ' ,
' void ' ,
[ ] )
## icmpv4.h: void ns3::Icmpv4Header::SetType(uint8_t type) [member function]
cls . add_method ( ' SetType ' ,
' void ' ,
[ param ( ' uint8_t ' , ' type ' ) ] )
## icmpv4.h: void ns3::Icmpv4Header::SetCode(uint8_t code) [member function]
cls . add_method ( ' SetCode ' ,
' void ' ,
[ param ( ' uint8_t ' , ' code ' ) ] )
## icmpv4.h: uint8_t ns3::Icmpv4Header::GetType() const [member function]
cls . add_method ( ' GetType ' ,
' uint8_t ' ,
[ ] ,
is_const = True )
## icmpv4.h: uint8_t ns3::Icmpv4Header::GetCode() const [member function]
cls . add_method ( ' GetCode ' ,
' uint8_t ' ,
[ ] ,
is_const = True )
## icmpv4.h: static ns3::TypeId ns3::Icmpv4Header::GetTypeId() [member function]
cls . add_method ( ' GetTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_static = True )
## icmpv4.h: ns3::Icmpv4Header::Icmpv4Header() [constructor]
cls . add_constructor ( [ ] )
## icmpv4.h: ns3::TypeId ns3::Icmpv4Header::GetInstanceTypeId() const [member function]
cls . add_method ( ' GetInstanceTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_const = True , is_virtual = True )
## icmpv4.h: uint32_t ns3::Icmpv4Header::GetSerializedSize() const [member function]
cls . add_method ( ' GetSerializedSize ' ,
' uint32_t ' ,
[ ] ,
is_const = True , is_virtual = True )
## icmpv4.h: void ns3::Icmpv4Header::Serialize(ns3::Buffer::Iterator start) const [member function]
cls . add_method ( ' Serialize ' ,
' void ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
is_const = True , is_virtual = True )
## icmpv4.h: uint32_t ns3::Icmpv4Header::Deserialize(ns3::Buffer::Iterator start) [member function]
cls . add_method ( ' Deserialize ' ,
' uint32_t ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
is_virtual = True )
## icmpv4.h: void ns3::Icmpv4Header::Print(std::ostream & os) const [member function]
cls . add_method ( ' Print ' ,
' void ' ,
[ param ( ' std::ostream & ' , ' os ' ) ] ,
is_const = True , is_virtual = True )
return
def register_Ns3Icmpv4TimeExceeded_methods ( root_module , cls ) :
## icmpv4.h: ns3::Icmpv4TimeExceeded::Icmpv4TimeExceeded(ns3::Icmpv4TimeExceeded const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Icmpv4TimeExceeded const & ' , ' arg0 ' ) ] )
## icmpv4.h: void ns3::Icmpv4TimeExceeded::SetData(ns3::Ptr<const ns3::Packet> data) [member function]
cls . add_method ( ' SetData ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Packet const > ' , ' data ' ) ] )
## icmpv4.h: void ns3::Icmpv4TimeExceeded::SetHeader(ns3::Ipv4Header header) [member function]
cls . add_method ( ' SetHeader ' ,
' void ' ,
[ param ( ' ns3::Ipv4Header ' , ' header ' ) ] )
## icmpv4.h: void ns3::Icmpv4TimeExceeded::GetData(uint8_t * payload) const [member function]
cls . add_method ( ' GetData ' ,
' void ' ,
[ param ( ' uint8_t * ' , ' payload ' ) ] ,
is_const = True )
## icmpv4.h: ns3::Ipv4Header ns3::Icmpv4TimeExceeded::GetHeader() const [member function]
cls . add_method ( ' GetHeader ' ,
' ns3::Ipv4Header ' ,
[ ] ,
is_const = True )
## icmpv4.h: static ns3::TypeId ns3::Icmpv4TimeExceeded::GetTypeId() [member function]
cls . add_method ( ' GetTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_static = True )
## icmpv4.h: ns3::Icmpv4TimeExceeded::Icmpv4TimeExceeded() [constructor]
cls . add_constructor ( [ ] )
## icmpv4.h: ns3::TypeId ns3::Icmpv4TimeExceeded::GetInstanceTypeId() const [member function]
cls . add_method ( ' GetInstanceTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_const = True , is_virtual = True )
## icmpv4.h: uint32_t ns3::Icmpv4TimeExceeded::GetSerializedSize() const [member function]
cls . add_method ( ' GetSerializedSize ' ,
' uint32_t ' ,
[ ] ,
is_const = True , is_virtual = True )
## icmpv4.h: void ns3::Icmpv4TimeExceeded::Serialize(ns3::Buffer::Iterator start) const [member function]
cls . add_method ( ' Serialize ' ,
' void ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
is_const = True , is_virtual = True )
## icmpv4.h: uint32_t ns3::Icmpv4TimeExceeded::Deserialize(ns3::Buffer::Iterator start) [member function]
cls . add_method ( ' Deserialize ' ,
' uint32_t ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
is_virtual = True )
## icmpv4.h: void ns3::Icmpv4TimeExceeded::Print(std::ostream & os) const [member function]
cls . add_method ( ' Print ' ,
' void ' ,
[ param ( ' std::ostream & ' , ' os ' ) ] ,
is_const = True , is_virtual = True )
return
2008-07-08 10:43:58 -07:00
def register_Ns3TcpHeader_methods ( root_module , cls ) :
2008-08-29 14:56:24 +01:00
## tcp-header.h: ns3::TcpHeader::TcpHeader(ns3::TcpHeader const & arg0) [copy constructor]
2008-09-02 11:12:42 +01:00
cls . add_constructor ( [ param ( ' ns3::TcpHeader const & ' , ' arg0 ' ) ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: ns3::TcpHeader::TcpHeader() [constructor]
2008-07-21 15:30:15 +01:00
cls . add_constructor ( [ ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::EnableChecksums() [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' EnableChecksums ' ,
' void ' ,
[ ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::SetSourcePort(uint16_t port) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetSourcePort ' ,
' void ' ,
[ param ( ' uint16_t ' , ' port ' ) ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::SetDestinationPort(uint16_t port) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetDestinationPort ' ,
' void ' ,
[ param ( ' uint16_t ' , ' port ' ) ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::SetSequenceNumber(SequenceNumber sequenceNumber) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetSequenceNumber ' ,
' void ' ,
[ param ( ' SequenceNumber ' , ' sequenceNumber ' ) ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::SetAckNumber(SequenceNumber ackNumber) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetAckNumber ' ,
' void ' ,
[ param ( ' SequenceNumber ' , ' ackNumber ' ) ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::SetLength(uint8_t length) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetLength ' ,
' void ' ,
[ param ( ' uint8_t ' , ' length ' ) ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::SetFlags(uint8_t flags) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetFlags ' ,
' void ' ,
[ param ( ' uint8_t ' , ' flags ' ) ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::SetWindowSize(uint16_t windowSize) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetWindowSize ' ,
' void ' ,
[ param ( ' uint16_t ' , ' windowSize ' ) ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::SetUrgentPointer(uint16_t urgentPointer) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetUrgentPointer ' ,
' void ' ,
[ param ( ' uint16_t ' , ' urgentPointer ' ) ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: uint16_t ns3::TcpHeader::GetSourcePort() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetSourcePort ' ,
' uint16_t ' ,
[ ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: uint16_t ns3::TcpHeader::GetDestinationPort() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetDestinationPort ' ,
' uint16_t ' ,
[ ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: SequenceNumber ns3::TcpHeader::GetSequenceNumber() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetSequenceNumber ' ,
' SequenceNumber ' ,
[ ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: SequenceNumber ns3::TcpHeader::GetAckNumber() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetAckNumber ' ,
' SequenceNumber ' ,
[ ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: uint8_t ns3::TcpHeader::GetLength() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetLength ' ,
' uint8_t ' ,
[ ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: uint8_t ns3::TcpHeader::GetFlags() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetFlags ' ,
' uint8_t ' ,
[ ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: uint16_t ns3::TcpHeader::GetWindowSize() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetWindowSize ' ,
' uint16_t ' ,
[ ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: uint16_t ns3::TcpHeader::GetUrgentPointer() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetUrgentPointer ' ,
' uint16_t ' ,
[ ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::InitializeChecksum(ns3::Ipv4Address source, ns3::Ipv4Address destination, uint8_t protocol) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' InitializeChecksum ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' source ' ) , param ( ' ns3::Ipv4Address ' , ' destination ' ) , param ( ' uint8_t ' , ' protocol ' ) ] )
2008-07-08 10:43:58 -07:00
## tcp-header.h: static ns3::TypeId ns3::TcpHeader::GetTypeId() [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_static = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: ns3::TypeId ns3::TcpHeader::GetInstanceTypeId() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetInstanceTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_const = True , is_virtual = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::Print(std::ostream & os) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' Print ' ,
' void ' ,
2008-09-02 11:12:42 +01:00
[ param ( ' std::ostream & ' , ' os ' ) ] ,
2008-07-21 15:30:15 +01:00
is_const = True , is_virtual = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: uint32_t ns3::TcpHeader::GetSerializedSize() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetSerializedSize ' ,
' uint32_t ' ,
[ ] ,
is_const = True , is_virtual = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: void ns3::TcpHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' Serialize ' ,
' void ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
is_const = True , is_virtual = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: uint32_t ns3::TcpHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' Deserialize ' ,
' uint32_t ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
is_virtual = True )
2008-07-08 10:43:58 -07:00
## tcp-header.h: bool ns3::TcpHeader::IsChecksumOk() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' IsChecksumOk ' ,
' bool ' ,
[ ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
return
2008-10-06 17:39:35 +01:00
def register_Ns3UdpHeader_methods ( root_module , cls ) :
## udp-header.h: ns3::UdpHeader::UdpHeader(ns3::UdpHeader const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::UdpHeader const & ' , ' arg0 ' ) ] )
## udp-header.h: ns3::UdpHeader::UdpHeader() [constructor]
cls . add_constructor ( [ ] )
## udp-header.h: void ns3::UdpHeader::EnableChecksums() [member function]
cls . add_method ( ' EnableChecksums ' ,
' void ' ,
[ ] )
## udp-header.h: void ns3::UdpHeader::SetDestinationPort(uint16_t port) [member function]
cls . add_method ( ' SetDestinationPort ' ,
' void ' ,
[ param ( ' uint16_t ' , ' port ' ) ] )
## udp-header.h: void ns3::UdpHeader::SetSourcePort(uint16_t port) [member function]
cls . add_method ( ' SetSourcePort ' ,
' void ' ,
[ param ( ' uint16_t ' , ' port ' ) ] )
## udp-header.h: uint16_t ns3::UdpHeader::GetSourcePort() const [member function]
cls . add_method ( ' GetSourcePort ' ,
' uint16_t ' ,
[ ] ,
is_const = True )
## udp-header.h: uint16_t ns3::UdpHeader::GetDestinationPort() const [member function]
cls . add_method ( ' GetDestinationPort ' ,
' uint16_t ' ,
[ ] ,
is_const = True )
## udp-header.h: void ns3::UdpHeader::InitializeChecksum(ns3::Ipv4Address source, ns3::Ipv4Address destination, uint8_t protocol) [member function]
cls . add_method ( ' InitializeChecksum ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' source ' ) , param ( ' ns3::Ipv4Address ' , ' destination ' ) , param ( ' uint8_t ' , ' protocol ' ) ] )
## udp-header.h: static ns3::TypeId ns3::UdpHeader::GetTypeId() [member function]
cls . add_method ( ' GetTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_static = True )
## udp-header.h: ns3::TypeId ns3::UdpHeader::GetInstanceTypeId() const [member function]
cls . add_method ( ' GetInstanceTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_const = True , is_virtual = True )
## udp-header.h: void ns3::UdpHeader::Print(std::ostream & os) const [member function]
cls . add_method ( ' Print ' ,
' void ' ,
[ param ( ' std::ostream & ' , ' os ' ) ] ,
is_const = True , is_virtual = True )
## udp-header.h: uint32_t ns3::UdpHeader::GetSerializedSize() const [member function]
cls . add_method ( ' GetSerializedSize ' ,
' uint32_t ' ,
[ ] ,
is_const = True , is_virtual = True )
## udp-header.h: void ns3::UdpHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
cls . add_method ( ' Serialize ' ,
' void ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
is_const = True , is_virtual = True )
## udp-header.h: uint32_t ns3::UdpHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
cls . add_method ( ' Deserialize ' ,
' uint32_t ' ,
[ param ( ' ns3::Buffer::Iterator ' , ' start ' ) ] ,
is_virtual = True )
## udp-header.h: bool ns3::UdpHeader::IsChecksumOk() const [member function]
cls . add_method ( ' IsChecksumOk ' ,
' bool ' ,
[ ] ,
is_const = True )
return
def register_Ns3Ipv4Interface_methods ( root_module , cls ) :
## ipv4-interface.h: ns3::Ipv4Interface::Ipv4Interface(ns3::Ipv4Interface const & arg0) [copy constructor]
cls . add_constructor ( [ param ( ' ns3::Ipv4Interface const & ' , ' arg0 ' ) ] )
## ipv4-interface.h: static ns3::TypeId ns3::Ipv4Interface::GetTypeId() [member function]
cls . add_method ( ' GetTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_static = True )
## ipv4-interface.h: ns3::Ipv4Interface::Ipv4Interface() [constructor]
cls . add_constructor ( [ ] )
## ipv4-interface.h: ns3::Ptr<ns3::NetDevice> ns3::Ipv4Interface::GetDevice() const [member function]
cls . add_method ( ' GetDevice ' ,
' ns3::Ptr< ns3::NetDevice > ' ,
[ ] ,
is_pure_virtual = True , is_const = True , is_virtual = True )
## ipv4-interface.h: void ns3::Ipv4Interface::SetAddress(ns3::Ipv4Address a) [member function]
cls . add_method ( ' SetAddress ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' a ' ) ] )
## ipv4-interface.h: void ns3::Ipv4Interface::SetNetworkMask(ns3::Ipv4Mask mask) [member function]
cls . add_method ( ' SetNetworkMask ' ,
' void ' ,
[ param ( ' ns3::Ipv4Mask ' , ' mask ' ) ] )
## ipv4-interface.h: ns3::Ipv4Address ns3::Ipv4Interface::GetBroadcast() const [member function]
cls . add_method ( ' GetBroadcast ' ,
' ns3::Ipv4Address ' ,
[ ] ,
is_const = True )
## ipv4-interface.h: ns3::Ipv4Mask ns3::Ipv4Interface::GetNetworkMask() const [member function]
cls . add_method ( ' GetNetworkMask ' ,
' ns3::Ipv4Mask ' ,
[ ] ,
is_const = True )
## ipv4-interface.h: void ns3::Ipv4Interface::SetMetric(uint16_t metric) [member function]
cls . add_method ( ' SetMetric ' ,
' void ' ,
[ param ( ' uint16_t ' , ' metric ' ) ] )
## ipv4-interface.h: uint16_t ns3::Ipv4Interface::GetMetric() const [member function]
cls . add_method ( ' GetMetric ' ,
' uint16_t ' ,
[ ] ,
is_const = True )
## ipv4-interface.h: ns3::Ipv4Address ns3::Ipv4Interface::GetAddress() const [member function]
cls . add_method ( ' GetAddress ' ,
' ns3::Ipv4Address ' ,
[ ] ,
is_const = True )
## ipv4-interface.h: uint16_t ns3::Ipv4Interface::GetMtu() const [member function]
cls . add_method ( ' GetMtu ' ,
' uint16_t ' ,
[ ] ,
is_const = True )
## ipv4-interface.h: bool ns3::Ipv4Interface::IsUp() const [member function]
cls . add_method ( ' IsUp ' ,
' bool ' ,
[ ] ,
is_const = True )
## ipv4-interface.h: bool ns3::Ipv4Interface::IsDown() const [member function]
cls . add_method ( ' IsDown ' ,
' bool ' ,
[ ] ,
is_const = True )
## ipv4-interface.h: void ns3::Ipv4Interface::SetUp() [member function]
cls . add_method ( ' SetUp ' ,
' void ' ,
[ ] )
## ipv4-interface.h: void ns3::Ipv4Interface::SetDown() [member function]
cls . add_method ( ' SetDown ' ,
' void ' ,
[ ] )
## ipv4-interface.h: void ns3::Ipv4Interface::Send(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Address dest) [member function]
cls . add_method ( ' Send ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Packet > ' , ' p ' ) , param ( ' ns3::Ipv4Address ' , ' dest ' ) ] )
## ipv4-interface.h: void ns3::Ipv4Interface::DoDispose() [member function]
cls . add_method ( ' DoDispose ' ,
' void ' ,
[ ] ,
visibility = ' protected ' , is_virtual = True )
## ipv4-interface.h: void ns3::Ipv4Interface::SendTo(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Address dest) [member function]
cls . add_method ( ' SendTo ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Packet > ' , ' p ' ) , param ( ' ns3::Ipv4Address ' , ' dest ' ) ] ,
is_pure_virtual = True , visibility = ' private ' , is_virtual = True )
return
2008-07-08 10:43:58 -07:00
def register_Ns3Ipv4L3Protocol_methods ( root_module , cls ) :
## ipv4-l3-protocol.h: ns3::Ipv4L3Protocol::PROT_NUMBER [variable]
2008-09-02 11:12:42 +01:00
cls . add_static_attribute ( ' PROT_NUMBER ' , ' uint16_t const ' , is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: static ns3::TypeId ns3::Ipv4L3Protocol::GetTypeId() [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetTypeId ' ,
' ns3::TypeId ' ,
[ ] ,
is_static = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: ns3::Ipv4L3Protocol::Ipv4L3Protocol() [constructor]
2008-07-21 15:30:15 +01:00
cls . add_constructor ( [ ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::SetNode(ns3::Ptr<ns3::Node> node) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetNode ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Node > ' , ' node ' ) ] )
2008-10-29 11:18:39 -07:00
## ipv4-l3-protocol.h: ns3::Ptr<ns3::Socket> ns3::Ipv4L3Protocol::CreateRawSocket() [member function]
cls . add_method ( ' CreateRawSocket ' ,
' ns3::Ptr< ns3::Socket > ' ,
[ ] )
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::DeleteRawSocket(ns3::Ptr<ns3::Socket> socket) [member function]
cls . add_method ( ' DeleteRawSocket ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Socket > ' , ' socket ' ) ] )
2008-09-02 17:20:32 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::Insert(ns3::Ptr<ns3::Ipv4L4Protocol> protocol) [member function]
cls . add_method ( ' Insert ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Ipv4L4Protocol > ' , ' protocol ' ) ] )
2008-10-15 15:12:05 +02:00
## ipv4-l3-protocol.h: ns3::Ptr<ns3::Ipv4L4Protocol> ns3::Ipv4L3Protocol::GetProtocol(int protocolNumber) const [member function]
2008-09-02 17:20:32 -07:00
cls . add_method ( ' GetProtocol ' ,
' ns3::Ptr< ns3::Ipv4L4Protocol > ' ,
2008-10-15 15:12:05 +02:00
[ param ( ' int ' , ' protocolNumber ' ) ] ,
is_const = True )
2008-09-02 17:20:32 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::Remove(ns3::Ptr<ns3::Ipv4L4Protocol> protocol) [member function]
cls . add_method ( ' Remove ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Ipv4L4Protocol > ' , ' protocol ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::SetDefaultTtl(uint8_t ttl) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetDefaultTtl ' ,
' void ' ,
[ param ( ' uint8_t ' , ' ttl ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: ns3::Ptr<ns3::Ipv4Interface> ns3::Ipv4L3Protocol::FindInterfaceForDevice(ns3::Ptr<const ns3::NetDevice> device) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' FindInterfaceForDevice ' ,
' ns3::Ptr< ns3::Ipv4Interface > ' ,
2008-10-06 17:39:35 +01:00
[ param ( ' ns3::Ptr< ns3::NetDevice const > ' , ' device ' ) ] )
2008-08-29 14:56:24 +01:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::Receive(ns3::Ptr<ns3::NetDevice> device, ns3::Ptr<const ns3::Packet> p, uint16_t protocol, ns3::Address const & from, ns3::Address const & to, ns3::NetDevice::PacketType packetType) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' Receive ' ,
' void ' ,
2008-10-06 17:39:35 +01:00
[ param ( ' ns3::Ptr< ns3::NetDevice > ' , ' device ' ) , param ( ' ns3::Ptr< ns3::Packet const > ' , ' p ' ) , param ( ' uint16_t ' , ' protocol ' ) , param ( ' ns3::Address const & ' , ' from ' ) , param ( ' ns3::Address const & ' , ' to ' ) , param ( ' ns3::NetDevice::PacketType ' , ' packetType ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::Send(ns3::Ptr<ns3::Packet> packet, ns3::Ipv4Address source, ns3::Ipv4Address destination, uint8_t protocol) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' Send ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Packet > ' , ' packet ' ) , param ( ' ns3::Ipv4Address ' , ' source ' ) , param ( ' ns3::Ipv4Address ' , ' destination ' ) , param ( ' uint8_t ' , ' protocol ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::AddHostRouteTo(ns3::Ipv4Address dest, ns3::Ipv4Address nextHop, uint32_t interface) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' AddHostRouteTo ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' dest ' ) , param ( ' ns3::Ipv4Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::AddHostRouteTo(ns3::Ipv4Address dest, uint32_t interface) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' AddHostRouteTo ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' dest ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::AddNetworkRouteTo(ns3::Ipv4Address network, ns3::Ipv4Mask networkMask, ns3::Ipv4Address nextHop, uint32_t interface) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' AddNetworkRouteTo ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' network ' ) , param ( ' ns3::Ipv4Mask ' , ' networkMask ' ) , param ( ' ns3::Ipv4Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::AddNetworkRouteTo(ns3::Ipv4Address network, ns3::Ipv4Mask networkMask, uint32_t interface) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' AddNetworkRouteTo ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' network ' ) , param ( ' ns3::Ipv4Mask ' , ' networkMask ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::SetDefaultRoute(ns3::Ipv4Address nextHop, uint32_t interface) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetDefaultRoute ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' nextHop ' ) , param ( ' uint32_t ' , ' interface ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::Lookup(ns3::Ipv4Header const & ipHeader, ns3::Ptr<ns3::Packet> packet, ns3::Callback<void,bool,const ns3::Ipv4Route&,ns3::Ptr<ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty> routeReply) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' Lookup ' ,
' void ' ,
2008-10-06 17:39:35 +01:00
[ param ( ' ns3::Ipv4Header const & ' , ' ipHeader ' ) , param ( ' ns3::Ptr< ns3::Packet > ' , ' packet ' ) , param ( ' ns3::Callback< void, bool, ns3::Ipv4Route const &, ns3::Ptr< ns3::Packet >, ns3::Ipv4Header const &, ns3::empty, ns3::empty > ' , ' routeReply ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: uint32_t ns3::Ipv4L3Protocol::GetNRoutes() [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetNRoutes ' ,
' uint32_t ' ,
[ ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: ns3::Ipv4Route * ns3::Ipv4L3Protocol::GetRoute(uint32_t i) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetRoute ' ,
' ns3::Ipv4Route * ' ,
[ param ( ' uint32_t ' , ' i ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::RemoveRoute(uint32_t i) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' RemoveRoute ' ,
' void ' ,
[ param ( ' uint32_t ' , ' i ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::AddMulticastRoute(ns3::Ipv4Address origin, ns3::Ipv4Address group, uint32_t inputInterface, std::vector<unsigned int, std::allocator<unsigned int> > outputInterfaces) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' AddMulticastRoute ' ,
' void ' ,
2008-08-29 14:56:24 +01:00
[ param ( ' ns3::Ipv4Address ' , ' origin ' ) , param ( ' ns3::Ipv4Address ' , ' group ' ) , param ( ' uint32_t ' , ' inputInterface ' ) , param ( ' std::vector< unsigned int > ' , ' outputInterfaces ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::SetDefaultMulticastRoute(uint32_t onputInterface) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetDefaultMulticastRoute ' ,
' void ' ,
[ param ( ' uint32_t ' , ' onputInterface ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: uint32_t ns3::Ipv4L3Protocol::GetNMulticastRoutes() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetNMulticastRoutes ' ,
' uint32_t ' ,
[ ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: ns3::Ipv4MulticastRoute * ns3::Ipv4L3Protocol::GetMulticastRoute(uint32_t i) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetMulticastRoute ' ,
' ns3::Ipv4MulticastRoute * ' ,
[ param ( ' uint32_t ' , ' i ' ) ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::RemoveMulticastRoute(ns3::Ipv4Address origin, ns3::Ipv4Address group, uint32_t inputInterface) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' RemoveMulticastRoute ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' origin ' ) , param ( ' ns3::Ipv4Address ' , ' group ' ) , param ( ' uint32_t ' , ' inputInterface ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::RemoveMulticastRoute(uint32_t i) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' RemoveMulticastRoute ' ,
' void ' ,
[ param ( ' uint32_t ' , ' i ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: uint32_t ns3::Ipv4L3Protocol::AddInterface(ns3::Ptr<ns3::NetDevice> device) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' AddInterface ' ,
' uint32_t ' ,
[ param ( ' ns3::Ptr< ns3::NetDevice > ' , ' device ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: ns3::Ptr<ns3::Ipv4Interface> ns3::Ipv4L3Protocol::GetInterface(uint32_t i) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetInterface ' ,
' ns3::Ptr< ns3::Ipv4Interface > ' ,
[ param ( ' uint32_t ' , ' i ' ) ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: uint32_t ns3::Ipv4L3Protocol::GetNInterfaces() const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetNInterfaces ' ,
' uint32_t ' ,
[ ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: uint32_t ns3::Ipv4L3Protocol::FindInterfaceForAddr(ns3::Ipv4Address addr) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' FindInterfaceForAddr ' ,
' uint32_t ' ,
[ param ( ' ns3::Ipv4Address ' , ' addr ' ) ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: uint32_t ns3::Ipv4L3Protocol::FindInterfaceForAddr(ns3::Ipv4Address addr, ns3::Ipv4Mask mask) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' FindInterfaceForAddr ' ,
' uint32_t ' ,
[ param ( ' ns3::Ipv4Address ' , ' addr ' ) , param ( ' ns3::Ipv4Mask ' , ' mask ' ) ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: int32_t ns3::Ipv4L3Protocol::FindInterfaceIndexForDevice(ns3::Ptr<ns3::NetDevice> device) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' FindInterfaceIndexForDevice ' ,
' int32_t ' ,
[ param ( ' ns3::Ptr< ns3::NetDevice > ' , ' device ' ) ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::JoinMulticastGroup(ns3::Ipv4Address origin, ns3::Ipv4Address group) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' JoinMulticastGroup ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' origin ' ) , param ( ' ns3::Ipv4Address ' , ' group ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::LeaveMulticastGroup(ns3::Ipv4Address origin, ns3::Ipv4Address group) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' LeaveMulticastGroup ' ,
' void ' ,
[ param ( ' ns3::Ipv4Address ' , ' origin ' ) , param ( ' ns3::Ipv4Address ' , ' group ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::SetAddress(uint32_t i, ns3::Ipv4Address address) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetAddress ' ,
' void ' ,
[ param ( ' uint32_t ' , ' i ' ) , param ( ' ns3::Ipv4Address ' , ' address ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::SetNetworkMask(uint32_t i, ns3::Ipv4Mask mask) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetNetworkMask ' ,
' void ' ,
[ param ( ' uint32_t ' , ' i ' ) , param ( ' ns3::Ipv4Mask ' , ' mask ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: ns3::Ipv4Mask ns3::Ipv4L3Protocol::GetNetworkMask(uint32_t t) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetNetworkMask ' ,
' ns3::Ipv4Mask ' ,
[ param ( ' uint32_t ' , ' t ' ) ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: ns3::Ipv4Address ns3::Ipv4L3Protocol::GetAddress(uint32_t i) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetAddress ' ,
' ns3::Ipv4Address ' ,
[ param ( ' uint32_t ' , ' i ' ) ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::SetMetric(uint32_t i, uint16_t metric) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetMetric ' ,
' void ' ,
[ param ( ' uint32_t ' , ' i ' ) , param ( ' uint16_t ' , ' metric ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: uint16_t ns3::Ipv4L3Protocol::GetMetric(uint32_t i) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetMetric ' ,
' uint16_t ' ,
[ param ( ' uint32_t ' , ' i ' ) ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: bool ns3::Ipv4L3Protocol::GetIfIndexForDestination(ns3::Ipv4Address destination, uint32_t & ifIndex) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetIfIndexForDestination ' ,
' bool ' ,
2008-09-02 11:12:42 +01:00
[ param ( ' ns3::Ipv4Address ' , ' destination ' ) , param ( ' uint32_t & ' , ' ifIndex ' ) ] ,
2008-07-21 15:30:15 +01:00
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: uint16_t ns3::Ipv4L3Protocol::GetMtu(uint32_t i) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' GetMtu ' ,
' uint16_t ' ,
[ param ( ' uint32_t ' , ' i ' ) ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: bool ns3::Ipv4L3Protocol::IsUp(uint32_t i) const [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' IsUp ' ,
' bool ' ,
[ param ( ' uint32_t ' , ' i ' ) ] ,
is_const = True )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::SetUp(uint32_t i) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetUp ' ,
' void ' ,
[ param ( ' uint32_t ' , ' i ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::SetDown(uint32_t i) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' SetDown ' ,
' void ' ,
[ param ( ' uint32_t ' , ' i ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::AddRoutingProtocol(ns3::Ptr<ns3::Ipv4RoutingProtocol> routingProtocol, int priority) [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' AddRoutingProtocol ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Ipv4RoutingProtocol > ' , ' routingProtocol ' ) , param ( ' int ' , ' priority ' ) ] )
2008-07-08 10:43:58 -07:00
## ipv4-l3-protocol.h: void ns3::Ipv4L3Protocol::DoDispose() [member function]
2008-09-02 11:28:03 -07:00
cls . add_method ( ' DoDispose ' ,
' void ' ,
[ ] ,
visibility = ' protected ' , is_virtual = True )
return
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 ' ) ] )
## ipv4-static-routing.h: ns3::Ipv4StaticRouting::Ipv4StaticRouting() [constructor]
cls . add_constructor ( [ ] )
## ipv4-static-routing.h: bool ns3::Ipv4StaticRouting::RequestRoute(uint32_t ifIndex, ns3::Ipv4Header const & ipHeader, ns3::Ptr<ns3::Packet> packet, ns3::Callback<void,bool,const ns3::Ipv4Route&,ns3::Ptr<ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty> routeReply) [member function]
cls . add_method ( ' RequestRoute ' ,
' bool ' ,
2008-10-06 17:39:35 +01:00
[ param ( ' uint32_t ' , ' ifIndex ' ) , param ( ' ns3::Ipv4Header const & ' , ' ipHeader ' ) , param ( ' ns3::Ptr< ns3::Packet > ' , ' packet ' ) , param ( ' ns3::Callback< void, bool, ns3::Ipv4Route const &, ns3::Ptr< ns3::Packet >, ns3::Ipv4Header const &, ns3::empty, ns3::empty > ' , ' routeReply ' ) ] ,
2008-09-02 11:28:03 -07:00
is_virtual = True )
## ipv4-static-routing.h: bool ns3::Ipv4StaticRouting::RequestIfIndex(ns3::Ipv4Address destination, uint32_t & ifIndex) [member function]
cls . add_method ( ' RequestIfIndex ' ,
' bool ' ,
[ param ( ' ns3::Ipv4Address ' , ' destination ' ) , param ( ' uint32_t & ' , ' ifIndex ' ) ] ,
is_virtual = True )
## 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::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: 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 ' ) ] )
## ipv4-static-routing.h: uint32_t ns3::Ipv4StaticRouting::GetNRoutes() [member function]
cls . add_method ( ' GetNRoutes ' ,
' uint32_t ' ,
[ ] )
## ipv4-static-routing.h: ns3::Ipv4Route * ns3::Ipv4StaticRouting::GetDefaultRoute() [member function]
cls . add_method ( ' GetDefaultRoute ' ,
' ns3::Ipv4Route * ' ,
[ ] )
## ipv4-static-routing.h: ns3::Ipv4Route * ns3::Ipv4StaticRouting::GetRoute(uint32_t i) [member function]
cls . add_method ( ' GetRoute ' ,
' ns3::Ipv4Route * ' ,
[ param ( ' uint32_t ' , ' i ' ) ] )
## 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: 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::SetDefaultMulticastRoute(uint32_t outputInterface) [member function]
cls . add_method ( ' SetDefaultMulticastRoute ' ,
' void ' ,
[ param ( ' uint32_t ' , ' outputInterface ' ) ] )
## 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: ns3::Ipv4MulticastRoute * ns3::Ipv4StaticRouting::GetMulticastRoute(uint32_t i) const [member function]
cls . add_method ( ' GetMulticastRoute ' ,
' ns3::Ipv4MulticastRoute * ' ,
[ param ( ' uint32_t ' , ' i ' ) ] ,
is_const = True )
## ipv4-static-routing.h: ns3::Ipv4MulticastRoute * ns3::Ipv4StaticRouting::GetDefaultMulticastRoute() const [member function]
cls . add_method ( ' GetDefaultMulticastRoute ' ,
' ns3::Ipv4MulticastRoute * ' ,
[ ] ,
is_const = True )
## 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::DoDispose() [member function]
2008-07-21 15:30:15 +01:00
cls . add_method ( ' DoDispose ' ,
' void ' ,
[ ] ,
visibility = ' protected ' , is_virtual = True )
2008-07-08 10:43:58 -07:00
return
def register_functions ( root_module ) :
module = root_module
## internet-stack.h: extern void ns3::AddInternetStack(ns3::Ptr<ns3::Node> node) [free function]
2008-07-21 15:30:15 +01:00
module . add_function ( ' AddInternetStack ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Node > ' , ' node ' ) ] )
2008-09-02 17:20:32 -07:00
## internet-stack.h: extern void ns3::AddNscInternetStack(ns3::Ptr<ns3::Node> node, std::string const & soname) [free function]
module . add_function ( ' AddNscInternetStack ' ,
' void ' ,
[ param ( ' ns3::Ptr< ns3::Node > ' , ' node ' ) , param ( ' std::string const & ' , ' soname ' ) ] )
2008-07-08 10:43:58 -07:00
register_functions_ns3_Config ( module . get_submodule ( ' Config ' ) , root_module )
2008-11-08 15:00:28 +00:00
register_functions_ns3_TimeStepPrecision ( module . get_submodule ( ' TimeStepPrecision ' ) , root_module )
register_functions_ns3_internal ( module . get_submodule ( ' internal ' ) , root_module )
2008-07-08 10:43:58 -07:00
register_functions_ns3_olsr ( module . get_submodule ( ' olsr ' ) , root_module )
return
2008-11-08 15:00:28 +00:00
def register_functions_ns3_Config ( module , root_module ) :
2008-07-08 10:43:58 -07:00
return
def register_functions_ns3_TimeStepPrecision ( module , root_module ) :
return
2008-11-08 15:00:28 +00:00
def register_functions_ns3_internal ( module , root_module ) :
2008-07-08 10:43:58 -07:00
return
def register_functions_ns3_olsr ( module , root_module ) :
return