6534
|
1 |
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
|
|
2 |
|
|
3 |
def register_types(module):
|
|
4 |
root_module = module.get_root()
|
|
5 |
|
|
6 |
## simple-ref-count.h: ns3::SimpleRefCount<ns3::dot11s::IeBeaconTimingUnit, ns3::empty, ns3::DefaultDeleter<ns3::dot11s::IeBeaconTimingUnit> > [class]
|
|
7 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::dot11s::IeBeaconTimingUnit', 'ns3::empty', 'ns3::DefaultDeleter<ns3::dot11s::IeBeaconTimingUnit>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
|
|
8 |
|
|
9 |
## Register a nested module for the namespace Config
|
|
10 |
|
|
11 |
nested_module = module.add_cpp_namespace('Config')
|
|
12 |
register_types_ns3_Config(nested_module)
|
|
13 |
|
|
14 |
|
|
15 |
## Register a nested module for the namespace FatalImpl
|
|
16 |
|
|
17 |
nested_module = module.add_cpp_namespace('FatalImpl')
|
|
18 |
register_types_ns3_FatalImpl(nested_module)
|
|
19 |
|
|
20 |
|
|
21 |
## Register a nested module for the namespace addressUtils
|
|
22 |
|
|
23 |
nested_module = module.add_cpp_namespace('addressUtils')
|
|
24 |
register_types_ns3_addressUtils(nested_module)
|
|
25 |
|
|
26 |
|
|
27 |
## Register a nested module for the namespace aodv
|
|
28 |
|
|
29 |
nested_module = module.add_cpp_namespace('aodv')
|
|
30 |
register_types_ns3_aodv(nested_module)
|
|
31 |
|
|
32 |
|
|
33 |
## Register a nested module for the namespace dot11s
|
|
34 |
|
|
35 |
nested_module = module.add_cpp_namespace('dot11s')
|
|
36 |
register_types_ns3_dot11s(nested_module)
|
|
37 |
|
|
38 |
|
6718
|
39 |
## Register a nested module for the namespace dsdv
|
|
40 |
|
|
41 |
nested_module = module.add_cpp_namespace('dsdv')
|
|
42 |
register_types_ns3_dsdv(nested_module)
|
|
43 |
|
|
44 |
|
6534
|
45 |
## Register a nested module for the namespace flame
|
|
46 |
|
|
47 |
nested_module = module.add_cpp_namespace('flame')
|
|
48 |
register_types_ns3_flame(nested_module)
|
|
49 |
|
|
50 |
|
|
51 |
## Register a nested module for the namespace internal
|
|
52 |
|
|
53 |
nested_module = module.add_cpp_namespace('internal')
|
|
54 |
register_types_ns3_internal(nested_module)
|
|
55 |
|
|
56 |
|
|
57 |
## Register a nested module for the namespace olsr
|
|
58 |
|
|
59 |
nested_module = module.add_cpp_namespace('olsr')
|
|
60 |
register_types_ns3_olsr(nested_module)
|
|
61 |
|
|
62 |
|
|
63 |
def register_types_ns3_Config(module):
|
|
64 |
root_module = module.get_root()
|
|
65 |
|
|
66 |
|
|
67 |
def register_types_ns3_FatalImpl(module):
|
|
68 |
root_module = module.get_root()
|
|
69 |
|
|
70 |
|
|
71 |
def register_types_ns3_addressUtils(module):
|
|
72 |
root_module = module.get_root()
|
|
73 |
|
|
74 |
|
|
75 |
def register_types_ns3_aodv(module):
|
|
76 |
root_module = module.get_root()
|
|
77 |
|
|
78 |
|
|
79 |
def register_types_ns3_dot11s(module):
|
|
80 |
root_module = module.get_root()
|
|
81 |
|
6691
|
82 |
## ie-dot11s-configuration.h: ns3::dot11s::dot11sCongestionControlMode [enumeration]
|
|
83 |
module.add_enum('dot11sCongestionControlMode', ['CONGESTION_SIGNALING', 'CONGESTION_NULL'])
|
|
84 |
## ie-dot11s-configuration.h: ns3::dot11s::dot11sAuthenticationProtocol [enumeration]
|
|
85 |
module.add_enum('dot11sAuthenticationProtocol', ['AUTH_NULL', 'AUTH_SAE'])
|
6534
|
86 |
## ie-dot11s-configuration.h: ns3::dot11s::dot11sPathSelectionProtocol [enumeration]
|
|
87 |
module.add_enum('dot11sPathSelectionProtocol', ['PROTOCOL_HWMP'])
|
|
88 |
## ie-dot11s-configuration.h: ns3::dot11s::dot11sSynchronizationProtocolIdentifier [enumeration]
|
|
89 |
module.add_enum('dot11sSynchronizationProtocolIdentifier', ['SYNC_NEIGHBOUR_OFFSET', 'SYNC_NULL'])
|
6691
|
90 |
## ie-dot11s-peer-management.h: ns3::dot11s::PmpReasonCode [enumeration]
|
|
91 |
module.add_enum('PmpReasonCode', ['REASON11S_PEERING_CANCELLED', 'REASON11S_MESH_MAX_PEERS', 'REASON11S_MESH_CAPABILITY_POLICY_VIOLATION', 'REASON11S_MESH_CLOSE_RCVD', 'REASON11S_MESH_MAX_RETRIES', 'REASON11S_MESH_CONFIRM_TIMEOUT', 'REASON11S_MESH_INVALID_GTK', 'REASON11S_MESH_INCONSISTENT_PARAMETERS', 'REASON11S_MESH_INVALID_SECURITY_CAPABILITY', 'REASON11S_RESERVED'])
|
6782
|
92 |
## ie-dot11s-configuration.h: ns3::dot11s::dot11sPathSelectionMetric [enumeration]
|
|
93 |
module.add_enum('dot11sPathSelectionMetric', ['METRIC_AIRTIME'])
|
6534
|
94 |
## ie-dot11s-configuration.h: ns3::dot11s::Dot11sMeshCapability [class]
|
|
95 |
module.add_class('Dot11sMeshCapability')
|
|
96 |
## hwmp-protocol.h: ns3::dot11s::HwmpProtocol [class]
|
|
97 |
module.add_class('HwmpProtocol', parent=root_module['ns3::MeshL2RoutingProtocol'])
|
|
98 |
## hwmp-protocol.h: ns3::dot11s::HwmpProtocol::FailedDestination [struct]
|
|
99 |
module.add_class('FailedDestination', outer_class=root_module['ns3::dot11s::HwmpProtocol'])
|
|
100 |
## ie-dot11s-beacon-timing.h: ns3::dot11s::IeBeaconTiming [class]
|
|
101 |
module.add_class('IeBeaconTiming', parent=root_module['ns3::WifiInformationElement'])
|
|
102 |
## ie-dot11s-beacon-timing.h: ns3::dot11s::IeBeaconTimingUnit [class]
|
|
103 |
module.add_class('IeBeaconTimingUnit', parent=root_module['ns3::SimpleRefCount< ns3::dot11s::IeBeaconTimingUnit, ns3::empty, ns3::DefaultDeleter<ns3::dot11s::IeBeaconTimingUnit> >'])
|
|
104 |
## ie-dot11s-configuration.h: ns3::dot11s::IeConfiguration [class]
|
|
105 |
module.add_class('IeConfiguration', parent=root_module['ns3::WifiInformationElement'])
|
|
106 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshId [class]
|
|
107 |
module.add_class('IeMeshId', parent=root_module['ns3::WifiInformationElement'])
|
|
108 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshIdChecker [class]
|
|
109 |
module.add_class('IeMeshIdChecker', parent=root_module['ns3::AttributeChecker'])
|
|
110 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshIdValue [class]
|
|
111 |
module.add_class('IeMeshIdValue', parent=root_module['ns3::AttributeValue'])
|
|
112 |
## ie-dot11s-peer-management.h: ns3::dot11s::IePeerManagement [class]
|
|
113 |
module.add_class('IePeerManagement', parent=root_module['ns3::WifiInformationElement'])
|
|
114 |
## ie-dot11s-peer-management.h: ns3::dot11s::IePeerManagement::Subtype [enumeration]
|
|
115 |
module.add_enum('Subtype', ['PEER_OPEN', 'PEER_CONFIRM', 'PEER_CLOSE'], outer_class=root_module['ns3::dot11s::IePeerManagement'])
|
|
116 |
## peer-link.h: ns3::dot11s::PeerLink [class]
|
|
117 |
module.add_class('PeerLink', parent=root_module['ns3::Object'])
|
|
118 |
## peer-link.h: ns3::dot11s::PeerLink::PeerState [enumeration]
|
|
119 |
module.add_enum('PeerState', ['IDLE', 'OPN_SNT', 'CNF_RCVD', 'OPN_RCVD', 'ESTAB', 'HOLDING'], outer_class=root_module['ns3::dot11s::PeerLink'])
|
|
120 |
## peer-management-protocol.h: ns3::dot11s::PeerManagementProtocol [class]
|
|
121 |
module.add_class('PeerManagementProtocol', parent=root_module['ns3::Object'])
|
|
122 |
|
6718
|
123 |
def register_types_ns3_dsdv(module):
|
|
124 |
root_module = module.get_root()
|
|
125 |
|
|
126 |
|
6534
|
127 |
def register_types_ns3_flame(module):
|
|
128 |
root_module = module.get_root()
|
|
129 |
|
|
130 |
|
|
131 |
def register_types_ns3_internal(module):
|
|
132 |
root_module = module.get_root()
|
|
133 |
|
|
134 |
|
|
135 |
def register_types_ns3_olsr(module):
|
|
136 |
root_module = module.get_root()
|
|
137 |
|
|
138 |
|
|
139 |
def register_methods(root_module):
|
|
140 |
register_Ns3Dot11sDot11sMeshCapability_methods(root_module, root_module['ns3::dot11s::Dot11sMeshCapability'])
|
|
141 |
register_Ns3Dot11sHwmpProtocol_methods(root_module, root_module['ns3::dot11s::HwmpProtocol'])
|
|
142 |
register_Ns3Dot11sHwmpProtocolFailedDestination_methods(root_module, root_module['ns3::dot11s::HwmpProtocol::FailedDestination'])
|
|
143 |
register_Ns3Dot11sIeBeaconTiming_methods(root_module, root_module['ns3::dot11s::IeBeaconTiming'])
|
|
144 |
register_Ns3Dot11sIeBeaconTimingUnit_methods(root_module, root_module['ns3::dot11s::IeBeaconTimingUnit'])
|
|
145 |
register_Ns3Dot11sIeConfiguration_methods(root_module, root_module['ns3::dot11s::IeConfiguration'])
|
|
146 |
register_Ns3Dot11sIeMeshId_methods(root_module, root_module['ns3::dot11s::IeMeshId'])
|
|
147 |
register_Ns3Dot11sIeMeshIdChecker_methods(root_module, root_module['ns3::dot11s::IeMeshIdChecker'])
|
|
148 |
register_Ns3Dot11sIeMeshIdValue_methods(root_module, root_module['ns3::dot11s::IeMeshIdValue'])
|
|
149 |
register_Ns3Dot11sIePeerManagement_methods(root_module, root_module['ns3::dot11s::IePeerManagement'])
|
|
150 |
register_Ns3Dot11sPeerLink_methods(root_module, root_module['ns3::dot11s::PeerLink'])
|
|
151 |
register_Ns3Dot11sPeerManagementProtocol_methods(root_module, root_module['ns3::dot11s::PeerManagementProtocol'])
|
|
152 |
return
|
|
153 |
|
|
154 |
def register_Ns3Dot11sDot11sMeshCapability_methods(root_module, cls):
|
|
155 |
cls.add_binary_comparison_operator('==')
|
|
156 |
## ie-dot11s-configuration.h: ns3::dot11s::Dot11sMeshCapability::Dot11sMeshCapability(ns3::dot11s::Dot11sMeshCapability const & arg0) [copy constructor]
|
|
157 |
cls.add_constructor([param('ns3::dot11s::Dot11sMeshCapability const &', 'arg0')])
|
|
158 |
## ie-dot11s-configuration.h: ns3::dot11s::Dot11sMeshCapability::Dot11sMeshCapability() [constructor]
|
|
159 |
cls.add_constructor([])
|
|
160 |
## ie-dot11s-configuration.h: ns3::Buffer::Iterator ns3::dot11s::Dot11sMeshCapability::Deserialize(ns3::Buffer::Iterator i) [member function]
|
|
161 |
cls.add_method('Deserialize',
|
|
162 |
'ns3::Buffer::Iterator',
|
|
163 |
[param('ns3::Buffer::Iterator', 'i')])
|
|
164 |
## ie-dot11s-configuration.h: uint8_t ns3::dot11s::Dot11sMeshCapability::GetSerializedSize() const [member function]
|
|
165 |
cls.add_method('GetSerializedSize',
|
|
166 |
'uint8_t',
|
|
167 |
[],
|
|
168 |
is_const=True)
|
|
169 |
## ie-dot11s-configuration.h: uint16_t ns3::dot11s::Dot11sMeshCapability::GetUint16() const [member function]
|
|
170 |
cls.add_method('GetUint16',
|
|
171 |
'uint16_t',
|
|
172 |
[],
|
|
173 |
is_const=True)
|
|
174 |
## ie-dot11s-configuration.h: bool ns3::dot11s::Dot11sMeshCapability::Is(uint16_t cap, uint8_t n) const [member function]
|
|
175 |
cls.add_method('Is',
|
|
176 |
'bool',
|
|
177 |
[param('uint16_t', 'cap'), param('uint8_t', 'n')],
|
|
178 |
is_const=True)
|
|
179 |
## ie-dot11s-configuration.h: ns3::Buffer::Iterator ns3::dot11s::Dot11sMeshCapability::Serialize(ns3::Buffer::Iterator i) const [member function]
|
|
180 |
cls.add_method('Serialize',
|
|
181 |
'ns3::Buffer::Iterator',
|
|
182 |
[param('ns3::Buffer::Iterator', 'i')],
|
|
183 |
is_const=True)
|
|
184 |
## ie-dot11s-configuration.h: ns3::dot11s::Dot11sMeshCapability::MCCAEnabled [variable]
|
|
185 |
cls.add_instance_attribute('MCCAEnabled', 'bool', is_const=False)
|
|
186 |
## ie-dot11s-configuration.h: ns3::dot11s::Dot11sMeshCapability::MCCASupported [variable]
|
|
187 |
cls.add_instance_attribute('MCCASupported', 'bool', is_const=False)
|
|
188 |
## ie-dot11s-configuration.h: ns3::dot11s::Dot11sMeshCapability::TBTTAdjustment [variable]
|
|
189 |
cls.add_instance_attribute('TBTTAdjustment', 'bool', is_const=False)
|
|
190 |
## ie-dot11s-configuration.h: ns3::dot11s::Dot11sMeshCapability::acceptPeerLinks [variable]
|
|
191 |
cls.add_instance_attribute('acceptPeerLinks', 'bool', is_const=False)
|
|
192 |
## ie-dot11s-configuration.h: ns3::dot11s::Dot11sMeshCapability::beaconTimingReport [variable]
|
|
193 |
cls.add_instance_attribute('beaconTimingReport', 'bool', is_const=False)
|
|
194 |
## ie-dot11s-configuration.h: ns3::dot11s::Dot11sMeshCapability::forwarding [variable]
|
|
195 |
cls.add_instance_attribute('forwarding', 'bool', is_const=False)
|
|
196 |
## ie-dot11s-configuration.h: ns3::dot11s::Dot11sMeshCapability::powerSaveLevel [variable]
|
|
197 |
cls.add_instance_attribute('powerSaveLevel', 'bool', is_const=False)
|
|
198 |
return
|
|
199 |
|
|
200 |
def register_Ns3Dot11sHwmpProtocol_methods(root_module, cls):
|
|
201 |
## hwmp-protocol.h: ns3::dot11s::HwmpProtocol::HwmpProtocol() [constructor]
|
|
202 |
cls.add_constructor([])
|
|
203 |
## hwmp-protocol.h: void ns3::dot11s::HwmpProtocol::DoDispose() [member function]
|
|
204 |
cls.add_method('DoDispose',
|
|
205 |
'void',
|
|
206 |
[],
|
|
207 |
is_virtual=True)
|
|
208 |
## hwmp-protocol.h: static ns3::TypeId ns3::dot11s::HwmpProtocol::GetTypeId() [member function]
|
|
209 |
cls.add_method('GetTypeId',
|
|
210 |
'ns3::TypeId',
|
|
211 |
[],
|
|
212 |
is_static=True)
|
|
213 |
## hwmp-protocol.h: bool ns3::dot11s::HwmpProtocol::Install(ns3::Ptr<ns3::MeshPointDevice> arg0) [member function]
|
|
214 |
cls.add_method('Install',
|
|
215 |
'bool',
|
|
216 |
[param('ns3::Ptr< ns3::MeshPointDevice >', 'arg0')])
|
|
217 |
## hwmp-protocol.h: void ns3::dot11s::HwmpProtocol::PeerLinkStatus(ns3::Mac48Address meshPontAddress, ns3::Mac48Address peerAddress, uint32_t interface, bool status) [member function]
|
|
218 |
cls.add_method('PeerLinkStatus',
|
|
219 |
'void',
|
|
220 |
[param('ns3::Mac48Address', 'meshPontAddress'), param('ns3::Mac48Address', 'peerAddress'), param('uint32_t', 'interface'), param('bool', 'status')])
|
|
221 |
## hwmp-protocol.h: bool ns3::dot11s::HwmpProtocol::RemoveRoutingStuff(uint32_t fromIface, ns3::Mac48Address const source, ns3::Mac48Address const destination, ns3::Ptr<ns3::Packet> packet, uint16_t & protocolType) [member function]
|
|
222 |
cls.add_method('RemoveRoutingStuff',
|
|
223 |
'bool',
|
|
224 |
[param('uint32_t', 'fromIface'), param('ns3::Mac48Address const', 'source'), param('ns3::Mac48Address const', 'destination'), param('ns3::Ptr< ns3::Packet >', 'packet'), param('uint16_t &', 'protocolType')],
|
|
225 |
is_virtual=True)
|
|
226 |
## hwmp-protocol.h: void ns3::dot11s::HwmpProtocol::Report(std::ostream & arg0) const [member function]
|
|
227 |
cls.add_method('Report',
|
|
228 |
'void',
|
|
229 |
[param('std::ostream &', 'arg0')],
|
|
230 |
is_const=True)
|
|
231 |
## hwmp-protocol.h: bool ns3::dot11s::HwmpProtocol::RequestRoute(uint32_t sourceIface, ns3::Mac48Address const source, ns3::Mac48Address const destination, ns3::Ptr<ns3::Packet const> packet, uint16_t protocolType, ns3::Callback<void, bool, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, unsigned short, unsigned int, ns3::empty, ns3::empty, ns3::empty> routeReply) [member function]
|
|
232 |
cls.add_method('RequestRoute',
|
|
233 |
'bool',
|
|
234 |
[param('uint32_t', 'sourceIface'), param('ns3::Mac48Address const', 'source'), param('ns3::Mac48Address const', 'destination'), param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint16_t', 'protocolType'), param('ns3::Callback< void, bool, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, unsigned short, unsigned int, ns3::empty, ns3::empty, ns3::empty >', 'routeReply')],
|
|
235 |
is_virtual=True)
|
|
236 |
## hwmp-protocol.h: void ns3::dot11s::HwmpProtocol::ResetStats() [member function]
|
|
237 |
cls.add_method('ResetStats',
|
|
238 |
'void',
|
|
239 |
[])
|
|
240 |
## hwmp-protocol.h: void ns3::dot11s::HwmpProtocol::SetNeighboursCallback(ns3::Callback<std::vector<ns3::Mac48Address, std::allocator<ns3::Mac48Address> >, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function]
|
|
241 |
cls.add_method('SetNeighboursCallback',
|
|
242 |
'void',
|
|
243 |
[param('ns3::Callback< std::vector< ns3::Mac48Address >, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')])
|
|
244 |
## hwmp-protocol.h: void ns3::dot11s::HwmpProtocol::SetRoot() [member function]
|
|
245 |
cls.add_method('SetRoot',
|
|
246 |
'void',
|
|
247 |
[])
|
|
248 |
## hwmp-protocol.h: void ns3::dot11s::HwmpProtocol::UnsetRoot() [member function]
|
|
249 |
cls.add_method('UnsetRoot',
|
|
250 |
'void',
|
|
251 |
[])
|
|
252 |
return
|
|
253 |
|
|
254 |
def register_Ns3Dot11sHwmpProtocolFailedDestination_methods(root_module, cls):
|
|
255 |
## hwmp-protocol.h: ns3::dot11s::HwmpProtocol::FailedDestination::FailedDestination() [constructor]
|
|
256 |
cls.add_constructor([])
|
|
257 |
## hwmp-protocol.h: ns3::dot11s::HwmpProtocol::FailedDestination::FailedDestination(ns3::dot11s::HwmpProtocol::FailedDestination const & arg0) [copy constructor]
|
|
258 |
cls.add_constructor([param('ns3::dot11s::HwmpProtocol::FailedDestination const &', 'arg0')])
|
|
259 |
## hwmp-protocol.h: ns3::dot11s::HwmpProtocol::FailedDestination::destination [variable]
|
|
260 |
cls.add_instance_attribute('destination', 'ns3::Mac48Address', is_const=False)
|
|
261 |
## hwmp-protocol.h: ns3::dot11s::HwmpProtocol::FailedDestination::seqnum [variable]
|
|
262 |
cls.add_instance_attribute('seqnum', 'uint32_t', is_const=False)
|
|
263 |
return
|
|
264 |
|
|
265 |
def register_Ns3Dot11sIeBeaconTiming_methods(root_module, cls):
|
|
266 |
cls.add_output_stream_operator()
|
|
267 |
## ie-dot11s-beacon-timing.h: ns3::dot11s::IeBeaconTiming::IeBeaconTiming(ns3::dot11s::IeBeaconTiming const & arg0) [copy constructor]
|
|
268 |
cls.add_constructor([param('ns3::dot11s::IeBeaconTiming const &', 'arg0')])
|
|
269 |
## ie-dot11s-beacon-timing.h: ns3::dot11s::IeBeaconTiming::IeBeaconTiming() [constructor]
|
|
270 |
cls.add_constructor([])
|
|
271 |
## ie-dot11s-beacon-timing.h: void ns3::dot11s::IeBeaconTiming::AddNeighboursTimingElementUnit(uint16_t aid, ns3::Time last_beacon, ns3::Time beacon_interval) [member function]
|
|
272 |
cls.add_method('AddNeighboursTimingElementUnit',
|
|
273 |
'void',
|
|
274 |
[param('uint16_t', 'aid'), param('ns3::Time', 'last_beacon'), param('ns3::Time', 'beacon_interval')])
|
|
275 |
## ie-dot11s-beacon-timing.h: void ns3::dot11s::IeBeaconTiming::ClearTimingElement() [member function]
|
|
276 |
cls.add_method('ClearTimingElement',
|
|
277 |
'void',
|
|
278 |
[])
|
|
279 |
## ie-dot11s-beacon-timing.h: void ns3::dot11s::IeBeaconTiming::DelNeighboursTimingElementUnit(uint16_t aid, ns3::Time last_beacon, ns3::Time beacon_interval) [member function]
|
|
280 |
cls.add_method('DelNeighboursTimingElementUnit',
|
|
281 |
'void',
|
|
282 |
[param('uint16_t', 'aid'), param('ns3::Time', 'last_beacon'), param('ns3::Time', 'beacon_interval')])
|
|
283 |
## ie-dot11s-beacon-timing.h: uint8_t ns3::dot11s::IeBeaconTiming::DeserializeInformationField(ns3::Buffer::Iterator i, uint8_t length) [member function]
|
|
284 |
cls.add_method('DeserializeInformationField',
|
|
285 |
'uint8_t',
|
|
286 |
[param('ns3::Buffer::Iterator', 'i'), param('uint8_t', 'length')],
|
|
287 |
is_virtual=True)
|
|
288 |
## ie-dot11s-beacon-timing.h: ns3::WifiInformationElementId ns3::dot11s::IeBeaconTiming::ElementId() const [member function]
|
|
289 |
cls.add_method('ElementId',
|
|
290 |
'ns3::WifiInformationElementId',
|
|
291 |
[],
|
|
292 |
is_const=True, is_virtual=True)
|
|
293 |
## ie-dot11s-beacon-timing.h: uint8_t ns3::dot11s::IeBeaconTiming::GetInformationFieldSize() const [member function]
|
|
294 |
cls.add_method('GetInformationFieldSize',
|
|
295 |
'uint8_t',
|
|
296 |
[],
|
|
297 |
is_const=True, is_virtual=True)
|
|
298 |
## ie-dot11s-beacon-timing.h: std::vector<ns3::Ptr<ns3::dot11s::IeBeaconTimingUnit>, std::allocator<ns3::Ptr<ns3::dot11s::IeBeaconTimingUnit> > > ns3::dot11s::IeBeaconTiming::GetNeighboursTimingElementsList() [member function]
|
|
299 |
cls.add_method('GetNeighboursTimingElementsList',
|
|
300 |
'std::vector< ns3::Ptr< ns3::dot11s::IeBeaconTimingUnit > >',
|
|
301 |
[])
|
|
302 |
## ie-dot11s-beacon-timing.h: void ns3::dot11s::IeBeaconTiming::Print(std::ostream & os) const [member function]
|
|
303 |
cls.add_method('Print',
|
|
304 |
'void',
|
|
305 |
[param('std::ostream &', 'os')],
|
|
306 |
is_const=True, is_virtual=True)
|
|
307 |
## ie-dot11s-beacon-timing.h: void ns3::dot11s::IeBeaconTiming::SerializeInformationField(ns3::Buffer::Iterator i) const [member function]
|
|
308 |
cls.add_method('SerializeInformationField',
|
|
309 |
'void',
|
|
310 |
[param('ns3::Buffer::Iterator', 'i')],
|
|
311 |
is_const=True, is_virtual=True)
|
|
312 |
return
|
|
313 |
|
|
314 |
def register_Ns3Dot11sIeBeaconTimingUnit_methods(root_module, cls):
|
|
315 |
cls.add_binary_comparison_operator('==')
|
|
316 |
## ie-dot11s-beacon-timing.h: ns3::dot11s::IeBeaconTimingUnit::IeBeaconTimingUnit(ns3::dot11s::IeBeaconTimingUnit const & arg0) [copy constructor]
|
|
317 |
cls.add_constructor([param('ns3::dot11s::IeBeaconTimingUnit const &', 'arg0')])
|
|
318 |
## ie-dot11s-beacon-timing.h: ns3::dot11s::IeBeaconTimingUnit::IeBeaconTimingUnit() [constructor]
|
|
319 |
cls.add_constructor([])
|
|
320 |
## ie-dot11s-beacon-timing.h: uint8_t ns3::dot11s::IeBeaconTimingUnit::GetAid() const [member function]
|
|
321 |
cls.add_method('GetAid',
|
|
322 |
'uint8_t',
|
|
323 |
[],
|
|
324 |
is_const=True)
|
|
325 |
## ie-dot11s-beacon-timing.h: uint16_t ns3::dot11s::IeBeaconTimingUnit::GetBeaconInterval() const [member function]
|
|
326 |
cls.add_method('GetBeaconInterval',
|
|
327 |
'uint16_t',
|
|
328 |
[],
|
|
329 |
is_const=True)
|
|
330 |
## ie-dot11s-beacon-timing.h: uint16_t ns3::dot11s::IeBeaconTimingUnit::GetLastBeacon() const [member function]
|
|
331 |
cls.add_method('GetLastBeacon',
|
|
332 |
'uint16_t',
|
|
333 |
[],
|
|
334 |
is_const=True)
|
|
335 |
## ie-dot11s-beacon-timing.h: void ns3::dot11s::IeBeaconTimingUnit::SetAid(uint8_t aid) [member function]
|
|
336 |
cls.add_method('SetAid',
|
|
337 |
'void',
|
|
338 |
[param('uint8_t', 'aid')])
|
|
339 |
## ie-dot11s-beacon-timing.h: void ns3::dot11s::IeBeaconTimingUnit::SetBeaconInterval(uint16_t beaconInterval) [member function]
|
|
340 |
cls.add_method('SetBeaconInterval',
|
|
341 |
'void',
|
|
342 |
[param('uint16_t', 'beaconInterval')])
|
|
343 |
## ie-dot11s-beacon-timing.h: void ns3::dot11s::IeBeaconTimingUnit::SetLastBeacon(uint16_t lastBeacon) [member function]
|
|
344 |
cls.add_method('SetLastBeacon',
|
|
345 |
'void',
|
|
346 |
[param('uint16_t', 'lastBeacon')])
|
|
347 |
return
|
|
348 |
|
|
349 |
def register_Ns3Dot11sIeConfiguration_methods(root_module, cls):
|
|
350 |
cls.add_output_stream_operator()
|
|
351 |
cls.add_binary_comparison_operator('==')
|
|
352 |
## ie-dot11s-configuration.h: ns3::dot11s::IeConfiguration::IeConfiguration(ns3::dot11s::IeConfiguration const & arg0) [copy constructor]
|
|
353 |
cls.add_constructor([param('ns3::dot11s::IeConfiguration const &', 'arg0')])
|
|
354 |
## ie-dot11s-configuration.h: ns3::dot11s::IeConfiguration::IeConfiguration() [constructor]
|
|
355 |
cls.add_constructor([])
|
|
356 |
## ie-dot11s-configuration.h: uint8_t ns3::dot11s::IeConfiguration::DeserializeInformationField(ns3::Buffer::Iterator i, uint8_t length) [member function]
|
|
357 |
cls.add_method('DeserializeInformationField',
|
|
358 |
'uint8_t',
|
|
359 |
[param('ns3::Buffer::Iterator', 'i'), param('uint8_t', 'length')],
|
|
360 |
is_virtual=True)
|
|
361 |
## ie-dot11s-configuration.h: ns3::WifiInformationElementId ns3::dot11s::IeConfiguration::ElementId() const [member function]
|
|
362 |
cls.add_method('ElementId',
|
|
363 |
'ns3::WifiInformationElementId',
|
|
364 |
[],
|
|
365 |
is_const=True, is_virtual=True)
|
|
366 |
## ie-dot11s-configuration.h: uint8_t ns3::dot11s::IeConfiguration::GetInformationFieldSize() const [member function]
|
|
367 |
cls.add_method('GetInformationFieldSize',
|
|
368 |
'uint8_t',
|
|
369 |
[],
|
|
370 |
is_const=True, is_virtual=True)
|
|
371 |
## ie-dot11s-configuration.h: uint8_t ns3::dot11s::IeConfiguration::GetNeighborCount() [member function]
|
|
372 |
cls.add_method('GetNeighborCount',
|
|
373 |
'uint8_t',
|
|
374 |
[])
|
|
375 |
## ie-dot11s-configuration.h: bool ns3::dot11s::IeConfiguration::IsAirtime() [member function]
|
|
376 |
cls.add_method('IsAirtime',
|
|
377 |
'bool',
|
|
378 |
[])
|
|
379 |
## ie-dot11s-configuration.h: bool ns3::dot11s::IeConfiguration::IsHWMP() [member function]
|
|
380 |
cls.add_method('IsHWMP',
|
|
381 |
'bool',
|
|
382 |
[])
|
|
383 |
## ie-dot11s-configuration.h: ns3::dot11s::Dot11sMeshCapability const & ns3::dot11s::IeConfiguration::MeshCapability() [member function]
|
|
384 |
cls.add_method('MeshCapability',
|
|
385 |
'ns3::dot11s::Dot11sMeshCapability const &',
|
|
386 |
[])
|
|
387 |
## ie-dot11s-configuration.h: void ns3::dot11s::IeConfiguration::Print(std::ostream & os) const [member function]
|
|
388 |
cls.add_method('Print',
|
|
389 |
'void',
|
|
390 |
[param('std::ostream &', 'os')],
|
|
391 |
is_const=True, is_virtual=True)
|
|
392 |
## ie-dot11s-configuration.h: void ns3::dot11s::IeConfiguration::SerializeInformationField(ns3::Buffer::Iterator i) const [member function]
|
|
393 |
cls.add_method('SerializeInformationField',
|
|
394 |
'void',
|
|
395 |
[param('ns3::Buffer::Iterator', 'i')],
|
|
396 |
is_const=True, is_virtual=True)
|
|
397 |
## ie-dot11s-configuration.h: void ns3::dot11s::IeConfiguration::SetMetric(ns3::dot11s::dot11sPathSelectionMetric metricId) [member function]
|
|
398 |
cls.add_method('SetMetric',
|
|
399 |
'void',
|
|
400 |
[param('ns3::dot11s::dot11sPathSelectionMetric', 'metricId')])
|
|
401 |
## ie-dot11s-configuration.h: void ns3::dot11s::IeConfiguration::SetNeighborCount(uint8_t neighbors) [member function]
|
|
402 |
cls.add_method('SetNeighborCount',
|
|
403 |
'void',
|
|
404 |
[param('uint8_t', 'neighbors')])
|
|
405 |
## ie-dot11s-configuration.h: void ns3::dot11s::IeConfiguration::SetRouting(ns3::dot11s::dot11sPathSelectionProtocol routingId) [member function]
|
|
406 |
cls.add_method('SetRouting',
|
|
407 |
'void',
|
|
408 |
[param('ns3::dot11s::dot11sPathSelectionProtocol', 'routingId')])
|
|
409 |
return
|
|
410 |
|
|
411 |
def register_Ns3Dot11sIeMeshId_methods(root_module, cls):
|
|
412 |
cls.add_output_stream_operator()
|
|
413 |
cls.add_binary_comparison_operator('==')
|
|
414 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshId::IeMeshId(ns3::dot11s::IeMeshId const & arg0) [copy constructor]
|
|
415 |
cls.add_constructor([param('ns3::dot11s::IeMeshId const &', 'arg0')])
|
|
416 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshId::IeMeshId() [constructor]
|
|
417 |
cls.add_constructor([])
|
|
418 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshId::IeMeshId(std::string s) [constructor]
|
|
419 |
cls.add_constructor([param('std::string', 's')])
|
|
420 |
## ie-dot11s-id.h: uint8_t ns3::dot11s::IeMeshId::DeserializeInformationField(ns3::Buffer::Iterator start, uint8_t length) [member function]
|
|
421 |
cls.add_method('DeserializeInformationField',
|
|
422 |
'uint8_t',
|
|
423 |
[param('ns3::Buffer::Iterator', 'start'), param('uint8_t', 'length')],
|
|
424 |
is_virtual=True)
|
|
425 |
## ie-dot11s-id.h: ns3::WifiInformationElementId ns3::dot11s::IeMeshId::ElementId() const [member function]
|
|
426 |
cls.add_method('ElementId',
|
|
427 |
'ns3::WifiInformationElementId',
|
|
428 |
[],
|
|
429 |
is_const=True, is_virtual=True)
|
|
430 |
## ie-dot11s-id.h: uint8_t ns3::dot11s::IeMeshId::GetInformationFieldSize() const [member function]
|
|
431 |
cls.add_method('GetInformationFieldSize',
|
|
432 |
'uint8_t',
|
|
433 |
[],
|
|
434 |
is_const=True, is_virtual=True)
|
|
435 |
## ie-dot11s-id.h: bool ns3::dot11s::IeMeshId::IsBroadcast() const [member function]
|
|
436 |
cls.add_method('IsBroadcast',
|
|
437 |
'bool',
|
|
438 |
[],
|
|
439 |
is_const=True)
|
|
440 |
## ie-dot11s-id.h: bool ns3::dot11s::IeMeshId::IsEqual(ns3::dot11s::IeMeshId const & o) const [member function]
|
|
441 |
cls.add_method('IsEqual',
|
|
442 |
'bool',
|
|
443 |
[param('ns3::dot11s::IeMeshId const &', 'o')],
|
|
444 |
is_const=True)
|
|
445 |
## ie-dot11s-id.h: char * ns3::dot11s::IeMeshId::PeekString() const [member function]
|
|
446 |
cls.add_method('PeekString',
|
|
447 |
'char *',
|
|
448 |
[],
|
|
449 |
is_const=True)
|
|
450 |
## ie-dot11s-id.h: void ns3::dot11s::IeMeshId::Print(std::ostream & os) const [member function]
|
|
451 |
cls.add_method('Print',
|
|
452 |
'void',
|
|
453 |
[param('std::ostream &', 'os')],
|
|
454 |
is_const=True, is_virtual=True)
|
|
455 |
## ie-dot11s-id.h: void ns3::dot11s::IeMeshId::SerializeInformationField(ns3::Buffer::Iterator i) const [member function]
|
|
456 |
cls.add_method('SerializeInformationField',
|
|
457 |
'void',
|
|
458 |
[param('ns3::Buffer::Iterator', 'i')],
|
|
459 |
is_const=True, is_virtual=True)
|
|
460 |
return
|
|
461 |
|
|
462 |
def register_Ns3Dot11sIeMeshIdChecker_methods(root_module, cls):
|
|
463 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshIdChecker::IeMeshIdChecker() [constructor]
|
|
464 |
cls.add_constructor([])
|
|
465 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshIdChecker::IeMeshIdChecker(ns3::dot11s::IeMeshIdChecker const & arg0) [copy constructor]
|
|
466 |
cls.add_constructor([param('ns3::dot11s::IeMeshIdChecker const &', 'arg0')])
|
|
467 |
return
|
|
468 |
|
|
469 |
def register_Ns3Dot11sIeMeshIdValue_methods(root_module, cls):
|
|
470 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshIdValue::IeMeshIdValue() [constructor]
|
|
471 |
cls.add_constructor([])
|
|
472 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshIdValue::IeMeshIdValue(ns3::dot11s::IeMeshIdValue const & arg0) [copy constructor]
|
|
473 |
cls.add_constructor([param('ns3::dot11s::IeMeshIdValue const &', 'arg0')])
|
|
474 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshIdValue::IeMeshIdValue(ns3::dot11s::IeMeshId const & value) [constructor]
|
|
475 |
cls.add_constructor([param('ns3::dot11s::IeMeshId const &', 'value')])
|
|
476 |
## ie-dot11s-id.h: ns3::Ptr<ns3::AttributeValue> ns3::dot11s::IeMeshIdValue::Copy() const [member function]
|
|
477 |
cls.add_method('Copy',
|
|
478 |
'ns3::Ptr< ns3::AttributeValue >',
|
|
479 |
[],
|
|
480 |
is_const=True, is_virtual=True)
|
|
481 |
## ie-dot11s-id.h: bool ns3::dot11s::IeMeshIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
|
|
482 |
cls.add_method('DeserializeFromString',
|
|
483 |
'bool',
|
|
484 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
485 |
is_virtual=True)
|
|
486 |
## ie-dot11s-id.h: ns3::dot11s::IeMeshId ns3::dot11s::IeMeshIdValue::Get() const [member function]
|
|
487 |
cls.add_method('Get',
|
|
488 |
'ns3::dot11s::IeMeshId',
|
|
489 |
[],
|
|
490 |
is_const=True)
|
|
491 |
## ie-dot11s-id.h: std::string ns3::dot11s::IeMeshIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
|
|
492 |
cls.add_method('SerializeToString',
|
|
493 |
'std::string',
|
|
494 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')],
|
|
495 |
is_const=True, is_virtual=True)
|
|
496 |
## ie-dot11s-id.h: void ns3::dot11s::IeMeshIdValue::Set(ns3::dot11s::IeMeshId const & value) [member function]
|
|
497 |
cls.add_method('Set',
|
|
498 |
'void',
|
|
499 |
[param('ns3::dot11s::IeMeshId const &', 'value')])
|
|
500 |
return
|
|
501 |
|
|
502 |
def register_Ns3Dot11sIePeerManagement_methods(root_module, cls):
|
|
503 |
cls.add_output_stream_operator()
|
|
504 |
cls.add_binary_comparison_operator('==')
|
|
505 |
## ie-dot11s-peer-management.h: ns3::dot11s::IePeerManagement::IePeerManagement(ns3::dot11s::IePeerManagement const & arg0) [copy constructor]
|
|
506 |
cls.add_constructor([param('ns3::dot11s::IePeerManagement const &', 'arg0')])
|
|
507 |
## ie-dot11s-peer-management.h: ns3::dot11s::IePeerManagement::IePeerManagement() [constructor]
|
|
508 |
cls.add_constructor([])
|
|
509 |
## ie-dot11s-peer-management.h: uint8_t ns3::dot11s::IePeerManagement::DeserializeInformationField(ns3::Buffer::Iterator i, uint8_t length) [member function]
|
|
510 |
cls.add_method('DeserializeInformationField',
|
|
511 |
'uint8_t',
|
|
512 |
[param('ns3::Buffer::Iterator', 'i'), param('uint8_t', 'length')],
|
|
513 |
is_virtual=True)
|
|
514 |
## ie-dot11s-peer-management.h: ns3::WifiInformationElementId ns3::dot11s::IePeerManagement::ElementId() const [member function]
|
|
515 |
cls.add_method('ElementId',
|
|
516 |
'ns3::WifiInformationElementId',
|
|
517 |
[],
|
|
518 |
is_const=True, is_virtual=True)
|
|
519 |
## ie-dot11s-peer-management.h: uint8_t ns3::dot11s::IePeerManagement::GetInformationFieldSize() const [member function]
|
|
520 |
cls.add_method('GetInformationFieldSize',
|
|
521 |
'uint8_t',
|
|
522 |
[],
|
|
523 |
is_const=True, is_virtual=True)
|
|
524 |
## ie-dot11s-peer-management.h: uint16_t ns3::dot11s::IePeerManagement::GetLocalLinkId() const [member function]
|
|
525 |
cls.add_method('GetLocalLinkId',
|
|
526 |
'uint16_t',
|
|
527 |
[],
|
|
528 |
is_const=True)
|
|
529 |
## ie-dot11s-peer-management.h: uint16_t ns3::dot11s::IePeerManagement::GetPeerLinkId() const [member function]
|
|
530 |
cls.add_method('GetPeerLinkId',
|
|
531 |
'uint16_t',
|
|
532 |
[],
|
|
533 |
is_const=True)
|
|
534 |
## ie-dot11s-peer-management.h: ns3::dot11s::PmpReasonCode ns3::dot11s::IePeerManagement::GetReasonCode() const [member function]
|
|
535 |
cls.add_method('GetReasonCode',
|
|
536 |
'ns3::dot11s::PmpReasonCode',
|
|
537 |
[],
|
|
538 |
is_const=True)
|
|
539 |
## ie-dot11s-peer-management.h: uint8_t ns3::dot11s::IePeerManagement::GetSubtype() const [member function]
|
|
540 |
cls.add_method('GetSubtype',
|
|
541 |
'uint8_t',
|
|
542 |
[],
|
|
543 |
is_const=True)
|
|
544 |
## ie-dot11s-peer-management.h: void ns3::dot11s::IePeerManagement::Print(std::ostream & os) const [member function]
|
|
545 |
cls.add_method('Print',
|
|
546 |
'void',
|
|
547 |
[param('std::ostream &', 'os')],
|
|
548 |
is_const=True, is_virtual=True)
|
|
549 |
## ie-dot11s-peer-management.h: void ns3::dot11s::IePeerManagement::SerializeInformationField(ns3::Buffer::Iterator i) const [member function]
|
|
550 |
cls.add_method('SerializeInformationField',
|
|
551 |
'void',
|
|
552 |
[param('ns3::Buffer::Iterator', 'i')],
|
|
553 |
is_const=True, is_virtual=True)
|
|
554 |
## ie-dot11s-peer-management.h: void ns3::dot11s::IePeerManagement::SetPeerClose(uint16_t localLinkID, uint16_t peerLinkId, ns3::dot11s::PmpReasonCode reasonCode) [member function]
|
|
555 |
cls.add_method('SetPeerClose',
|
|
556 |
'void',
|
|
557 |
[param('uint16_t', 'localLinkID'), param('uint16_t', 'peerLinkId'), param('ns3::dot11s::PmpReasonCode', 'reasonCode')])
|
|
558 |
## ie-dot11s-peer-management.h: void ns3::dot11s::IePeerManagement::SetPeerConfirm(uint16_t localLinkID, uint16_t peerLinkId) [member function]
|
|
559 |
cls.add_method('SetPeerConfirm',
|
|
560 |
'void',
|
|
561 |
[param('uint16_t', 'localLinkID'), param('uint16_t', 'peerLinkId')])
|
|
562 |
## ie-dot11s-peer-management.h: void ns3::dot11s::IePeerManagement::SetPeerOpen(uint16_t localLinkId) [member function]
|
|
563 |
cls.add_method('SetPeerOpen',
|
|
564 |
'void',
|
|
565 |
[param('uint16_t', 'localLinkId')])
|
|
566 |
## ie-dot11s-peer-management.h: bool ns3::dot11s::IePeerManagement::SubtypeIsClose() const [member function]
|
|
567 |
cls.add_method('SubtypeIsClose',
|
|
568 |
'bool',
|
|
569 |
[],
|
|
570 |
is_const=True)
|
|
571 |
## ie-dot11s-peer-management.h: bool ns3::dot11s::IePeerManagement::SubtypeIsConfirm() const [member function]
|
|
572 |
cls.add_method('SubtypeIsConfirm',
|
|
573 |
'bool',
|
|
574 |
[],
|
|
575 |
is_const=True)
|
|
576 |
## ie-dot11s-peer-management.h: bool ns3::dot11s::IePeerManagement::SubtypeIsOpen() const [member function]
|
|
577 |
cls.add_method('SubtypeIsOpen',
|
|
578 |
'bool',
|
|
579 |
[],
|
|
580 |
is_const=True)
|
|
581 |
return
|
|
582 |
|
|
583 |
def register_Ns3Dot11sPeerLink_methods(root_module, cls):
|
|
584 |
## peer-link.h: static ns3::TypeId ns3::dot11s::PeerLink::GetTypeId() [member function]
|
|
585 |
cls.add_method('GetTypeId',
|
|
586 |
'ns3::TypeId',
|
|
587 |
[],
|
|
588 |
is_static=True)
|
|
589 |
## peer-link.h: ns3::dot11s::PeerLink::PeerLink() [constructor]
|
|
590 |
cls.add_constructor([])
|
|
591 |
## peer-link.h: void ns3::dot11s::PeerLink::DoDispose() [member function]
|
|
592 |
cls.add_method('DoDispose',
|
|
593 |
'void',
|
|
594 |
[],
|
|
595 |
is_virtual=True)
|
|
596 |
## peer-link.h: void ns3::dot11s::PeerLink::SetBeaconInformation(ns3::Time lastBeacon, ns3::Time BeaconInterval) [member function]
|
|
597 |
cls.add_method('SetBeaconInformation',
|
|
598 |
'void',
|
|
599 |
[param('ns3::Time', 'lastBeacon'), param('ns3::Time', 'BeaconInterval')])
|
|
600 |
## peer-link.h: void ns3::dot11s::PeerLink::SetLinkStatusCallback(ns3::Callback<void,unsigned int,ns3::Mac48Address,bool,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
|
|
601 |
cls.add_method('SetLinkStatusCallback',
|
|
602 |
'void',
|
|
603 |
[param('ns3::Callback< void, unsigned int, ns3::Mac48Address, bool, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')])
|
|
604 |
## peer-link.h: void ns3::dot11s::PeerLink::SetPeerAddress(ns3::Mac48Address macaddr) [member function]
|
|
605 |
cls.add_method('SetPeerAddress',
|
|
606 |
'void',
|
|
607 |
[param('ns3::Mac48Address', 'macaddr')])
|
|
608 |
## peer-link.h: void ns3::dot11s::PeerLink::SetPeerMeshPointAddress(ns3::Mac48Address macaddr) [member function]
|
|
609 |
cls.add_method('SetPeerMeshPointAddress',
|
|
610 |
'void',
|
|
611 |
[param('ns3::Mac48Address', 'macaddr')])
|
|
612 |
## peer-link.h: void ns3::dot11s::PeerLink::SetInterface(uint32_t interface) [member function]
|
|
613 |
cls.add_method('SetInterface',
|
|
614 |
'void',
|
|
615 |
[param('uint32_t', 'interface')])
|
|
616 |
## peer-link.h: void ns3::dot11s::PeerLink::SetLocalLinkId(uint16_t id) [member function]
|
|
617 |
cls.add_method('SetLocalLinkId',
|
|
618 |
'void',
|
|
619 |
[param('uint16_t', 'id')])
|
|
620 |
## peer-link.h: void ns3::dot11s::PeerLink::SetLocalAid(uint16_t aid) [member function]
|
|
621 |
cls.add_method('SetLocalAid',
|
|
622 |
'void',
|
|
623 |
[param('uint16_t', 'aid')])
|
|
624 |
## peer-link.h: uint16_t ns3::dot11s::PeerLink::GetPeerAid() const [member function]
|
|
625 |
cls.add_method('GetPeerAid',
|
|
626 |
'uint16_t',
|
|
627 |
[],
|
|
628 |
is_const=True)
|
|
629 |
## peer-link.h: void ns3::dot11s::PeerLink::SetBeaconTimingElement(ns3::dot11s::IeBeaconTiming beaconTiming) [member function]
|
|
630 |
cls.add_method('SetBeaconTimingElement',
|
|
631 |
'void',
|
|
632 |
[param('ns3::dot11s::IeBeaconTiming', 'beaconTiming')])
|
|
633 |
## peer-link.h: ns3::Mac48Address ns3::dot11s::PeerLink::GetPeerAddress() const [member function]
|
|
634 |
cls.add_method('GetPeerAddress',
|
|
635 |
'ns3::Mac48Address',
|
|
636 |
[],
|
|
637 |
is_const=True)
|
|
638 |
## peer-link.h: uint16_t ns3::dot11s::PeerLink::GetLocalAid() const [member function]
|
|
639 |
cls.add_method('GetLocalAid',
|
|
640 |
'uint16_t',
|
|
641 |
[],
|
|
642 |
is_const=True)
|
|
643 |
## peer-link.h: ns3::Time ns3::dot11s::PeerLink::GetLastBeacon() const [member function]
|
|
644 |
cls.add_method('GetLastBeacon',
|
|
645 |
'ns3::Time',
|
|
646 |
[],
|
|
647 |
is_const=True)
|
|
648 |
## peer-link.h: ns3::Time ns3::dot11s::PeerLink::GetBeaconInterval() const [member function]
|
|
649 |
cls.add_method('GetBeaconInterval',
|
|
650 |
'ns3::Time',
|
|
651 |
[],
|
|
652 |
is_const=True)
|
|
653 |
## peer-link.h: ns3::dot11s::IeBeaconTiming ns3::dot11s::PeerLink::GetBeaconTimingElement() const [member function]
|
|
654 |
cls.add_method('GetBeaconTimingElement',
|
|
655 |
'ns3::dot11s::IeBeaconTiming',
|
|
656 |
[],
|
|
657 |
is_const=True)
|
|
658 |
## peer-link.h: void ns3::dot11s::PeerLink::MLMECancelPeerLink(ns3::dot11s::PmpReasonCode reason) [member function]
|
|
659 |
cls.add_method('MLMECancelPeerLink',
|
|
660 |
'void',
|
|
661 |
[param('ns3::dot11s::PmpReasonCode', 'reason')])
|
|
662 |
## peer-link.h: void ns3::dot11s::PeerLink::MLMEActivePeerLinkOpen() [member function]
|
|
663 |
cls.add_method('MLMEActivePeerLinkOpen',
|
|
664 |
'void',
|
|
665 |
[])
|
|
666 |
## peer-link.h: void ns3::dot11s::PeerLink::MLMEPeeringRequestReject() [member function]
|
|
667 |
cls.add_method('MLMEPeeringRequestReject',
|
|
668 |
'void',
|
|
669 |
[])
|
|
670 |
## peer-link.h: void ns3::dot11s::PeerLink::MLMESetSignalStatusCallback(ns3::Callback<void, unsigned int, ns3::Mac48Address, ns3::Mac48Address, ns3::dot11s::PeerLink::PeerState, ns3::dot11s::PeerLink::PeerState, ns3::empty, ns3::empty, ns3::empty, ns3::empty> arg0) [member function]
|
|
671 |
cls.add_method('MLMESetSignalStatusCallback',
|
|
672 |
'void',
|
|
673 |
[param('ns3::Callback< void, unsigned int, ns3::Mac48Address, ns3::Mac48Address, ns3::dot11s::PeerLink::PeerState, ns3::dot11s::PeerLink::PeerState, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'arg0')])
|
|
674 |
## peer-link.h: void ns3::dot11s::PeerLink::TransmissionSuccess() [member function]
|
|
675 |
cls.add_method('TransmissionSuccess',
|
|
676 |
'void',
|
|
677 |
[])
|
|
678 |
## peer-link.h: void ns3::dot11s::PeerLink::TransmissionFailure() [member function]
|
|
679 |
cls.add_method('TransmissionFailure',
|
|
680 |
'void',
|
|
681 |
[])
|
|
682 |
## peer-link.h: void ns3::dot11s::PeerLink::Report(std::ostream & os) const [member function]
|
|
683 |
cls.add_method('Report',
|
|
684 |
'void',
|
|
685 |
[param('std::ostream &', 'os')],
|
|
686 |
is_const=True)
|
|
687 |
return
|
|
688 |
|
|
689 |
def register_Ns3Dot11sPeerManagementProtocol_methods(root_module, cls):
|
|
690 |
## peer-management-protocol.h: ns3::dot11s::PeerManagementProtocol::PeerManagementProtocol() [constructor]
|
|
691 |
cls.add_constructor([])
|
|
692 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::ConfigurationMismatch(uint32_t interface, ns3::Mac48Address peerAddress) [member function]
|
|
693 |
cls.add_method('ConfigurationMismatch',
|
|
694 |
'void',
|
|
695 |
[param('uint32_t', 'interface'), param('ns3::Mac48Address', 'peerAddress')])
|
|
696 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::DoDispose() [member function]
|
|
697 |
cls.add_method('DoDispose',
|
|
698 |
'void',
|
|
699 |
[],
|
|
700 |
is_virtual=True)
|
|
701 |
## peer-management-protocol.h: ns3::Ptr<ns3::dot11s::PeerLink> ns3::dot11s::PeerManagementProtocol::FindPeerLink(uint32_t interface, ns3::Mac48Address peerAddress) [member function]
|
|
702 |
cls.add_method('FindPeerLink',
|
|
703 |
'ns3::Ptr< ns3::dot11s::PeerLink >',
|
|
704 |
[param('uint32_t', 'interface'), param('ns3::Mac48Address', 'peerAddress')])
|
|
705 |
## peer-management-protocol.h: ns3::Mac48Address ns3::dot11s::PeerManagementProtocol::GetAddress() [member function]
|
|
706 |
cls.add_method('GetAddress',
|
|
707 |
'ns3::Mac48Address',
|
|
708 |
[])
|
|
709 |
## peer-management-protocol.h: bool ns3::dot11s::PeerManagementProtocol::GetBeaconCollisionAvoidance() const [member function]
|
|
710 |
cls.add_method('GetBeaconCollisionAvoidance',
|
|
711 |
'bool',
|
|
712 |
[],
|
|
713 |
is_const=True)
|
|
714 |
## peer-management-protocol.h: ns3::Ptr<ns3::dot11s::IeBeaconTiming> ns3::dot11s::PeerManagementProtocol::GetBeaconTimingElement(uint32_t interface) [member function]
|
|
715 |
cls.add_method('GetBeaconTimingElement',
|
|
716 |
'ns3::Ptr< ns3::dot11s::IeBeaconTiming >',
|
|
717 |
[param('uint32_t', 'interface')])
|
|
718 |
## peer-management-protocol.h: ns3::Ptr<ns3::dot11s::IeMeshId> ns3::dot11s::PeerManagementProtocol::GetMeshId() const [member function]
|
|
719 |
cls.add_method('GetMeshId',
|
|
720 |
'ns3::Ptr< ns3::dot11s::IeMeshId >',
|
|
721 |
[],
|
|
722 |
is_const=True)
|
|
723 |
## peer-management-protocol.h: uint8_t ns3::dot11s::PeerManagementProtocol::GetNumberOfLinks() [member function]
|
|
724 |
cls.add_method('GetNumberOfLinks',
|
|
725 |
'uint8_t',
|
|
726 |
[])
|
|
727 |
## peer-management-protocol.h: std::vector<ns3::Ptr<ns3::dot11s::PeerLink>,std::allocator<ns3::Ptr<ns3::dot11s::PeerLink> > > ns3::dot11s::PeerManagementProtocol::GetPeerLinks() const [member function]
|
|
728 |
cls.add_method('GetPeerLinks',
|
|
729 |
'std::vector< ns3::Ptr< ns3::dot11s::PeerLink > >',
|
|
730 |
[],
|
|
731 |
is_const=True)
|
|
732 |
## peer-management-protocol.h: std::vector<ns3::Mac48Address,std::allocator<ns3::Mac48Address> > ns3::dot11s::PeerManagementProtocol::GetPeers(uint32_t interface) const [member function]
|
|
733 |
cls.add_method('GetPeers',
|
|
734 |
'std::vector< ns3::Mac48Address >',
|
|
735 |
[param('uint32_t', 'interface')],
|
|
736 |
is_const=True)
|
|
737 |
## peer-management-protocol.h: static ns3::TypeId ns3::dot11s::PeerManagementProtocol::GetTypeId() [member function]
|
|
738 |
cls.add_method('GetTypeId',
|
|
739 |
'ns3::TypeId',
|
|
740 |
[],
|
|
741 |
is_static=True)
|
|
742 |
## peer-management-protocol.h: bool ns3::dot11s::PeerManagementProtocol::Install(ns3::Ptr<ns3::MeshPointDevice> arg0) [member function]
|
|
743 |
cls.add_method('Install',
|
|
744 |
'bool',
|
|
745 |
[param('ns3::Ptr< ns3::MeshPointDevice >', 'arg0')])
|
|
746 |
## peer-management-protocol.h: bool ns3::dot11s::PeerManagementProtocol::IsActiveLink(uint32_t interface, ns3::Mac48Address peerAddress) [member function]
|
|
747 |
cls.add_method('IsActiveLink',
|
|
748 |
'bool',
|
|
749 |
[param('uint32_t', 'interface'), param('ns3::Mac48Address', 'peerAddress')])
|
|
750 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::NotifyBeaconSent(uint32_t interface, ns3::Time beaconInterval) [member function]
|
|
751 |
cls.add_method('NotifyBeaconSent',
|
|
752 |
'void',
|
|
753 |
[param('uint32_t', 'interface'), param('ns3::Time', 'beaconInterval')])
|
|
754 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::ReceiveBeacon(uint32_t interface, ns3::Mac48Address peerAddress, ns3::Time beaconInterval, ns3::Ptr<ns3::dot11s::IeBeaconTiming> beaconTiming) [member function]
|
|
755 |
cls.add_method('ReceiveBeacon',
|
|
756 |
'void',
|
|
757 |
[param('uint32_t', 'interface'), param('ns3::Mac48Address', 'peerAddress'), param('ns3::Time', 'beaconInterval'), param('ns3::Ptr< ns3::dot11s::IeBeaconTiming >', 'beaconTiming')])
|
|
758 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::ReceivePeerLinkFrame(uint32_t interface, ns3::Mac48Address peerAddress, ns3::Mac48Address peerMeshPointAddress, uint16_t aid, ns3::dot11s::IePeerManagement peerManagementElement, ns3::dot11s::IeConfiguration meshConfig) [member function]
|
|
759 |
cls.add_method('ReceivePeerLinkFrame',
|
|
760 |
'void',
|
|
761 |
[param('uint32_t', 'interface'), param('ns3::Mac48Address', 'peerAddress'), param('ns3::Mac48Address', 'peerMeshPointAddress'), param('uint16_t', 'aid'), param('ns3::dot11s::IePeerManagement', 'peerManagementElement'), param('ns3::dot11s::IeConfiguration', 'meshConfig')])
|
|
762 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::Report(std::ostream & arg0) const [member function]
|
|
763 |
cls.add_method('Report',
|
|
764 |
'void',
|
|
765 |
[param('std::ostream &', 'arg0')],
|
|
766 |
is_const=True)
|
|
767 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::ResetStats() [member function]
|
|
768 |
cls.add_method('ResetStats',
|
|
769 |
'void',
|
|
770 |
[])
|
|
771 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::SetBeaconCollisionAvoidance(bool enable) [member function]
|
|
772 |
cls.add_method('SetBeaconCollisionAvoidance',
|
|
773 |
'void',
|
|
774 |
[param('bool', 'enable')])
|
|
775 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::SetMeshId(std::string s) [member function]
|
|
776 |
cls.add_method('SetMeshId',
|
|
777 |
'void',
|
|
778 |
[param('std::string', 's')])
|
|
779 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::SetPeerLinkStatusCallback(ns3::Callback<void, ns3::Mac48Address, ns3::Mac48Address, unsigned int, bool, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function]
|
|
780 |
cls.add_method('SetPeerLinkStatusCallback',
|
|
781 |
'void',
|
|
782 |
[param('ns3::Callback< void, ns3::Mac48Address, ns3::Mac48Address, unsigned int, bool, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')])
|
|
783 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::TransmissionFailure(uint32_t interface, ns3::Mac48Address const peerAddress) [member function]
|
|
784 |
cls.add_method('TransmissionFailure',
|
|
785 |
'void',
|
|
786 |
[param('uint32_t', 'interface'), param('ns3::Mac48Address const', 'peerAddress')])
|
|
787 |
## peer-management-protocol.h: void ns3::dot11s::PeerManagementProtocol::TransmissionSuccess(uint32_t interface, ns3::Mac48Address const peerAddress) [member function]
|
|
788 |
cls.add_method('TransmissionSuccess',
|
|
789 |
'void',
|
|
790 |
[param('uint32_t', 'interface'), param('ns3::Mac48Address const', 'peerAddress')])
|
|
791 |
return
|
|
792 |
|
|
793 |
def register_functions(root_module):
|
|
794 |
module = root_module
|
|
795 |
register_functions_ns3_Config(module.get_submodule('Config'), root_module)
|
|
796 |
register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
|
|
797 |
register_functions_ns3_addressUtils(module.get_submodule('addressUtils'), root_module)
|
|
798 |
register_functions_ns3_aodv(module.get_submodule('aodv'), root_module)
|
|
799 |
register_functions_ns3_dot11s(module.get_submodule('dot11s'), root_module)
|
6718
|
800 |
register_functions_ns3_dsdv(module.get_submodule('dsdv'), root_module)
|
6534
|
801 |
register_functions_ns3_flame(module.get_submodule('flame'), root_module)
|
|
802 |
register_functions_ns3_internal(module.get_submodule('internal'), root_module)
|
|
803 |
register_functions_ns3_olsr(module.get_submodule('olsr'), root_module)
|
|
804 |
return
|
|
805 |
|
|
806 |
def register_functions_ns3_Config(module, root_module):
|
|
807 |
return
|
|
808 |
|
|
809 |
def register_functions_ns3_FatalImpl(module, root_module):
|
|
810 |
return
|
|
811 |
|
|
812 |
def register_functions_ns3_addressUtils(module, root_module):
|
|
813 |
return
|
|
814 |
|
|
815 |
def register_functions_ns3_aodv(module, root_module):
|
|
816 |
return
|
|
817 |
|
|
818 |
def register_functions_ns3_dot11s(module, root_module):
|
|
819 |
## ie-dot11s-id.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::dot11s::MakeIeMeshIdChecker() [free function]
|
|
820 |
module.add_function('MakeIeMeshIdChecker',
|
|
821 |
'ns3::Ptr< ns3::AttributeChecker const >',
|
|
822 |
[])
|
|
823 |
return
|
|
824 |
|
6718
|
825 |
def register_functions_ns3_dsdv(module, root_module):
|
|
826 |
return
|
|
827 |
|
6534
|
828 |
def register_functions_ns3_flame(module, root_module):
|
|
829 |
return
|
|
830 |
|
|
831 |
def register_functions_ns3_internal(module, root_module):
|
|
832 |
return
|
|
833 |
|
|
834 |
def register_functions_ns3_olsr(module, root_module):
|
|
835 |
return
|
|
836 |
|