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 |
## mesh-wifi-beacon.h: ns3::MeshWifiBeacon [class]
|
|
7 |
module.add_class('MeshWifiBeacon')
|
|
8 |
## simple-ref-count.h: ns3::SimpleRefCount<ns3::MeshWifiInterfaceMacPlugin, ns3::empty, ns3::DefaultDeleter<ns3::MeshWifiInterfaceMacPlugin> > [class]
|
|
9 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::MeshWifiInterfaceMacPlugin', 'ns3::empty', 'ns3::DefaultDeleter<ns3::MeshWifiInterfaceMacPlugin>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
|
|
10 |
## mesh-information-element-vector.h: ns3::MeshInformationElementVector [class]
|
|
11 |
module.add_class('MeshInformationElementVector', parent=root_module['ns3::WifiInformationElementVector'])
|
|
12 |
## mesh-l2-routing-protocol.h: ns3::MeshL2RoutingProtocol [class]
|
|
13 |
module.add_class('MeshL2RoutingProtocol', parent=root_module['ns3::Object'])
|
|
14 |
## mesh-wifi-interface-mac-plugin.h: ns3::MeshWifiInterfaceMacPlugin [class]
|
|
15 |
module.add_class('MeshWifiInterfaceMacPlugin', parent=root_module['ns3::SimpleRefCount< ns3::MeshWifiInterfaceMacPlugin, ns3::empty, ns3::DefaultDeleter<ns3::MeshWifiInterfaceMacPlugin> >'])
|
|
16 |
## mesh-point-device.h: ns3::MeshPointDevice [class]
|
|
17 |
module.add_class('MeshPointDevice', parent=root_module['ns3::NetDevice'])
|
6675
|
18 |
## mesh-wifi-interface-mac.h: ns3::MeshWifiInterfaceMac [class]
|
|
19 |
module.add_class('MeshWifiInterfaceMac', parent=root_module['ns3::RegularWifiMac'])
|
6534
|
20 |
|
|
21 |
## Register a nested module for the namespace Config
|
|
22 |
|
|
23 |
nested_module = module.add_cpp_namespace('Config')
|
|
24 |
register_types_ns3_Config(nested_module)
|
|
25 |
|
|
26 |
|
|
27 |
## Register a nested module for the namespace FatalImpl
|
|
28 |
|
|
29 |
nested_module = module.add_cpp_namespace('FatalImpl')
|
|
30 |
register_types_ns3_FatalImpl(nested_module)
|
|
31 |
|
|
32 |
|
|
33 |
## Register a nested module for the namespace addressUtils
|
|
34 |
|
|
35 |
nested_module = module.add_cpp_namespace('addressUtils')
|
|
36 |
register_types_ns3_addressUtils(nested_module)
|
|
37 |
|
|
38 |
|
|
39 |
## Register a nested module for the namespace aodv
|
|
40 |
|
|
41 |
nested_module = module.add_cpp_namespace('aodv')
|
|
42 |
register_types_ns3_aodv(nested_module)
|
|
43 |
|
|
44 |
|
|
45 |
## Register a nested module for the namespace dot11s
|
|
46 |
|
|
47 |
nested_module = module.add_cpp_namespace('dot11s')
|
|
48 |
register_types_ns3_dot11s(nested_module)
|
|
49 |
|
|
50 |
|
6718
|
51 |
## Register a nested module for the namespace dsdv
|
|
52 |
|
|
53 |
nested_module = module.add_cpp_namespace('dsdv')
|
|
54 |
register_types_ns3_dsdv(nested_module)
|
|
55 |
|
|
56 |
|
6534
|
57 |
## Register a nested module for the namespace flame
|
|
58 |
|
|
59 |
nested_module = module.add_cpp_namespace('flame')
|
|
60 |
register_types_ns3_flame(nested_module)
|
|
61 |
|
|
62 |
|
|
63 |
## Register a nested module for the namespace internal
|
|
64 |
|
|
65 |
nested_module = module.add_cpp_namespace('internal')
|
|
66 |
register_types_ns3_internal(nested_module)
|
|
67 |
|
|
68 |
|
|
69 |
## Register a nested module for the namespace olsr
|
|
70 |
|
|
71 |
nested_module = module.add_cpp_namespace('olsr')
|
|
72 |
register_types_ns3_olsr(nested_module)
|
|
73 |
|
|
74 |
|
|
75 |
def register_types_ns3_Config(module):
|
|
76 |
root_module = module.get_root()
|
|
77 |
|
|
78 |
|
|
79 |
def register_types_ns3_FatalImpl(module):
|
|
80 |
root_module = module.get_root()
|
|
81 |
|
|
82 |
|
|
83 |
def register_types_ns3_addressUtils(module):
|
|
84 |
root_module = module.get_root()
|
|
85 |
|
|
86 |
|
|
87 |
def register_types_ns3_aodv(module):
|
|
88 |
root_module = module.get_root()
|
|
89 |
|
|
90 |
|
|
91 |
def register_types_ns3_dot11s(module):
|
|
92 |
root_module = module.get_root()
|
|
93 |
|
|
94 |
|
6718
|
95 |
def register_types_ns3_dsdv(module):
|
|
96 |
root_module = module.get_root()
|
|
97 |
|
|
98 |
|
6534
|
99 |
def register_types_ns3_flame(module):
|
|
100 |
root_module = module.get_root()
|
|
101 |
|
|
102 |
|
|
103 |
def register_types_ns3_internal(module):
|
|
104 |
root_module = module.get_root()
|
|
105 |
|
|
106 |
|
|
107 |
def register_types_ns3_olsr(module):
|
|
108 |
root_module = module.get_root()
|
|
109 |
|
|
110 |
|
|
111 |
def register_methods(root_module):
|
|
112 |
register_Ns3MeshWifiBeacon_methods(root_module, root_module['ns3::MeshWifiBeacon'])
|
|
113 |
register_Ns3MeshInformationElementVector_methods(root_module, root_module['ns3::MeshInformationElementVector'])
|
|
114 |
register_Ns3MeshL2RoutingProtocol_methods(root_module, root_module['ns3::MeshL2RoutingProtocol'])
|
|
115 |
register_Ns3MeshWifiInterfaceMacPlugin_methods(root_module, root_module['ns3::MeshWifiInterfaceMacPlugin'])
|
|
116 |
register_Ns3MeshPointDevice_methods(root_module, root_module['ns3::MeshPointDevice'])
|
6675
|
117 |
register_Ns3MeshWifiInterfaceMac_methods(root_module, root_module['ns3::MeshWifiInterfaceMac'])
|
6534
|
118 |
return
|
|
119 |
|
|
120 |
def register_Ns3MeshWifiBeacon_methods(root_module, cls):
|
|
121 |
## mesh-wifi-beacon.h: ns3::MeshWifiBeacon::MeshWifiBeacon(ns3::MeshWifiBeacon const & arg0) [copy constructor]
|
|
122 |
cls.add_constructor([param('ns3::MeshWifiBeacon const &', 'arg0')])
|
|
123 |
## mesh-wifi-beacon.h: ns3::MeshWifiBeacon::MeshWifiBeacon(ns3::Ssid ssid, ns3::SupportedRates rates, uint64_t us) [constructor]
|
|
124 |
cls.add_constructor([param('ns3::Ssid', 'ssid'), param('ns3::SupportedRates', 'rates'), param('uint64_t', 'us')])
|
|
125 |
## mesh-wifi-beacon.h: void ns3::MeshWifiBeacon::AddInformationElement(ns3::Ptr<ns3::WifiInformationElement> ie) [member function]
|
|
126 |
cls.add_method('AddInformationElement',
|
|
127 |
'void',
|
|
128 |
[param('ns3::Ptr< ns3::WifiInformationElement >', 'ie')])
|
|
129 |
## mesh-wifi-beacon.h: ns3::MgtBeaconHeader ns3::MeshWifiBeacon::BeaconHeader() const [member function]
|
|
130 |
cls.add_method('BeaconHeader',
|
|
131 |
'ns3::MgtBeaconHeader',
|
|
132 |
[],
|
|
133 |
is_const=True)
|
|
134 |
## mesh-wifi-beacon.h: ns3::WifiMacHeader ns3::MeshWifiBeacon::CreateHeader(ns3::Mac48Address address, ns3::Mac48Address mpAddress) [member function]
|
|
135 |
cls.add_method('CreateHeader',
|
|
136 |
'ns3::WifiMacHeader',
|
|
137 |
[param('ns3::Mac48Address', 'address'), param('ns3::Mac48Address', 'mpAddress')])
|
|
138 |
## mesh-wifi-beacon.h: ns3::Ptr<ns3::Packet> ns3::MeshWifiBeacon::CreatePacket() [member function]
|
|
139 |
cls.add_method('CreatePacket',
|
|
140 |
'ns3::Ptr< ns3::Packet >',
|
|
141 |
[])
|
|
142 |
## mesh-wifi-beacon.h: ns3::Time ns3::MeshWifiBeacon::GetBeaconInterval() const [member function]
|
|
143 |
cls.add_method('GetBeaconInterval',
|
|
144 |
'ns3::Time',
|
|
145 |
[],
|
|
146 |
is_const=True)
|
|
147 |
return
|
|
148 |
|
|
149 |
def register_Ns3MeshInformationElementVector_methods(root_module, cls):
|
|
150 |
## mesh-information-element-vector.h: ns3::MeshInformationElementVector::MeshInformationElementVector() [constructor]
|
|
151 |
cls.add_constructor([])
|
|
152 |
## mesh-information-element-vector.h: ns3::MeshInformationElementVector::MeshInformationElementVector(ns3::MeshInformationElementVector const & arg0) [copy constructor]
|
|
153 |
cls.add_constructor([param('ns3::MeshInformationElementVector const &', 'arg0')])
|
|
154 |
## mesh-information-element-vector.h: uint32_t ns3::MeshInformationElementVector::DeserializeSingleIe(ns3::Buffer::Iterator start) [member function]
|
|
155 |
cls.add_method('DeserializeSingleIe',
|
|
156 |
'uint32_t',
|
|
157 |
[param('ns3::Buffer::Iterator', 'start')],
|
|
158 |
is_virtual=True)
|
|
159 |
return
|
|
160 |
|
|
161 |
def register_Ns3MeshL2RoutingProtocol_methods(root_module, cls):
|
|
162 |
## mesh-l2-routing-protocol.h: ns3::MeshL2RoutingProtocol::MeshL2RoutingProtocol() [constructor]
|
|
163 |
cls.add_constructor([])
|
|
164 |
## mesh-l2-routing-protocol.h: ns3::MeshL2RoutingProtocol::MeshL2RoutingProtocol(ns3::MeshL2RoutingProtocol const & arg0) [copy constructor]
|
|
165 |
cls.add_constructor([param('ns3::MeshL2RoutingProtocol const &', 'arg0')])
|
|
166 |
## mesh-l2-routing-protocol.h: ns3::Ptr<ns3::MeshPointDevice> ns3::MeshL2RoutingProtocol::GetMeshPoint() const [member function]
|
|
167 |
cls.add_method('GetMeshPoint',
|
|
168 |
'ns3::Ptr< ns3::MeshPointDevice >',
|
|
169 |
[],
|
|
170 |
is_const=True)
|
|
171 |
## mesh-l2-routing-protocol.h: static ns3::TypeId ns3::MeshL2RoutingProtocol::GetTypeId() [member function]
|
|
172 |
cls.add_method('GetTypeId',
|
|
173 |
'ns3::TypeId',
|
|
174 |
[],
|
|
175 |
is_static=True)
|
|
176 |
## mesh-l2-routing-protocol.h: bool ns3::MeshL2RoutingProtocol::RemoveRoutingStuff(uint32_t fromIface, ns3::Mac48Address const source, ns3::Mac48Address const destination, ns3::Ptr<ns3::Packet> packet, uint16_t & protocolType) [member function]
|
|
177 |
cls.add_method('RemoveRoutingStuff',
|
|
178 |
'bool',
|
|
179 |
[param('uint32_t', 'fromIface'), param('ns3::Mac48Address const', 'source'), param('ns3::Mac48Address const', 'destination'), param('ns3::Ptr< ns3::Packet >', 'packet'), param('uint16_t &', 'protocolType')],
|
|
180 |
is_pure_virtual=True, is_virtual=True)
|
|
181 |
## mesh-l2-routing-protocol.h: bool ns3::MeshL2RoutingProtocol::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]
|
|
182 |
cls.add_method('RequestRoute',
|
|
183 |
'bool',
|
|
184 |
[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')],
|
|
185 |
is_pure_virtual=True, is_virtual=True)
|
|
186 |
## mesh-l2-routing-protocol.h: void ns3::MeshL2RoutingProtocol::SetMeshPoint(ns3::Ptr<ns3::MeshPointDevice> mp) [member function]
|
|
187 |
cls.add_method('SetMeshPoint',
|
|
188 |
'void',
|
|
189 |
[param('ns3::Ptr< ns3::MeshPointDevice >', 'mp')])
|
|
190 |
return
|
|
191 |
|
|
192 |
def register_Ns3MeshWifiInterfaceMacPlugin_methods(root_module, cls):
|
|
193 |
## mesh-wifi-interface-mac-plugin.h: ns3::MeshWifiInterfaceMacPlugin::MeshWifiInterfaceMacPlugin() [constructor]
|
|
194 |
cls.add_constructor([])
|
|
195 |
## mesh-wifi-interface-mac-plugin.h: ns3::MeshWifiInterfaceMacPlugin::MeshWifiInterfaceMacPlugin(ns3::MeshWifiInterfaceMacPlugin const & arg0) [copy constructor]
|
|
196 |
cls.add_constructor([param('ns3::MeshWifiInterfaceMacPlugin const &', 'arg0')])
|
|
197 |
## mesh-wifi-interface-mac-plugin.h: bool ns3::MeshWifiInterfaceMacPlugin::Receive(ns3::Ptr<ns3::Packet> packet, ns3::WifiMacHeader const & header) [member function]
|
|
198 |
cls.add_method('Receive',
|
|
199 |
'bool',
|
|
200 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::WifiMacHeader const &', 'header')],
|
|
201 |
is_pure_virtual=True, is_virtual=True)
|
|
202 |
## mesh-wifi-interface-mac-plugin.h: void ns3::MeshWifiInterfaceMacPlugin::SetParent(ns3::Ptr<ns3::MeshWifiInterfaceMac> parent) [member function]
|
|
203 |
cls.add_method('SetParent',
|
|
204 |
'void',
|
|
205 |
[param('ns3::Ptr< ns3::MeshWifiInterfaceMac >', 'parent')],
|
|
206 |
is_pure_virtual=True, is_virtual=True)
|
|
207 |
## mesh-wifi-interface-mac-plugin.h: void ns3::MeshWifiInterfaceMacPlugin::UpdateBeacon(ns3::MeshWifiBeacon & beacon) const [member function]
|
|
208 |
cls.add_method('UpdateBeacon',
|
|
209 |
'void',
|
|
210 |
[param('ns3::MeshWifiBeacon &', 'beacon')],
|
|
211 |
is_pure_virtual=True, is_const=True, is_virtual=True)
|
|
212 |
## mesh-wifi-interface-mac-plugin.h: bool ns3::MeshWifiInterfaceMacPlugin::UpdateOutcomingFrame(ns3::Ptr<ns3::Packet> packet, ns3::WifiMacHeader & header, ns3::Mac48Address from, ns3::Mac48Address to) [member function]
|
|
213 |
cls.add_method('UpdateOutcomingFrame',
|
|
214 |
'bool',
|
|
215 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::WifiMacHeader &', 'header'), param('ns3::Mac48Address', 'from'), param('ns3::Mac48Address', 'to')],
|
|
216 |
is_pure_virtual=True, is_virtual=True)
|
|
217 |
return
|
|
218 |
|
|
219 |
def register_Ns3MeshPointDevice_methods(root_module, cls):
|
|
220 |
## mesh-point-device.h: ns3::MeshPointDevice::MeshPointDevice(ns3::MeshPointDevice const & arg0) [copy constructor]
|
|
221 |
cls.add_constructor([param('ns3::MeshPointDevice const &', 'arg0')])
|
|
222 |
## mesh-point-device.h: ns3::MeshPointDevice::MeshPointDevice() [constructor]
|
|
223 |
cls.add_constructor([])
|
|
224 |
## mesh-point-device.h: void ns3::MeshPointDevice::AddInterface(ns3::Ptr<ns3::NetDevice> port) [member function]
|
|
225 |
cls.add_method('AddInterface',
|
|
226 |
'void',
|
|
227 |
[param('ns3::Ptr< ns3::NetDevice >', 'port')])
|
|
228 |
## mesh-point-device.h: void ns3::MeshPointDevice::AddLinkChangeCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function]
|
|
229 |
cls.add_method('AddLinkChangeCallback',
|
|
230 |
'void',
|
|
231 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')],
|
|
232 |
is_virtual=True)
|
|
233 |
## mesh-point-device.h: void ns3::MeshPointDevice::DoDispose() [member function]
|
|
234 |
cls.add_method('DoDispose',
|
|
235 |
'void',
|
|
236 |
[],
|
|
237 |
is_virtual=True)
|
|
238 |
## mesh-point-device.h: ns3::Address ns3::MeshPointDevice::GetAddress() const [member function]
|
|
239 |
cls.add_method('GetAddress',
|
|
240 |
'ns3::Address',
|
|
241 |
[],
|
|
242 |
is_const=True, is_virtual=True)
|
|
243 |
## mesh-point-device.h: ns3::Address ns3::MeshPointDevice::GetBroadcast() const [member function]
|
|
244 |
cls.add_method('GetBroadcast',
|
|
245 |
'ns3::Address',
|
|
246 |
[],
|
|
247 |
is_const=True, is_virtual=True)
|
|
248 |
## mesh-point-device.h: ns3::Ptr<ns3::Channel> ns3::MeshPointDevice::GetChannel() const [member function]
|
|
249 |
cls.add_method('GetChannel',
|
|
250 |
'ns3::Ptr< ns3::Channel >',
|
|
251 |
[],
|
|
252 |
is_const=True, is_virtual=True)
|
|
253 |
## mesh-point-device.h: uint32_t ns3::MeshPointDevice::GetIfIndex() const [member function]
|
|
254 |
cls.add_method('GetIfIndex',
|
|
255 |
'uint32_t',
|
|
256 |
[],
|
|
257 |
is_const=True, is_virtual=True)
|
|
258 |
## mesh-point-device.h: ns3::Ptr<ns3::NetDevice> ns3::MeshPointDevice::GetInterface(uint32_t id) const [member function]
|
|
259 |
cls.add_method('GetInterface',
|
|
260 |
'ns3::Ptr< ns3::NetDevice >',
|
|
261 |
[param('uint32_t', 'id')],
|
|
262 |
is_const=True)
|
|
263 |
## mesh-point-device.h: std::vector<ns3::Ptr<ns3::NetDevice>, std::allocator<ns3::Ptr<ns3::NetDevice> > > ns3::MeshPointDevice::GetInterfaces() const [member function]
|
|
264 |
cls.add_method('GetInterfaces',
|
|
265 |
'std::vector< ns3::Ptr< ns3::NetDevice > >',
|
|
266 |
[],
|
|
267 |
is_const=True)
|
|
268 |
## mesh-point-device.h: uint16_t ns3::MeshPointDevice::GetMtu() const [member function]
|
|
269 |
cls.add_method('GetMtu',
|
|
270 |
'uint16_t',
|
|
271 |
[],
|
|
272 |
is_const=True, is_virtual=True)
|
|
273 |
## mesh-point-device.h: ns3::Address ns3::MeshPointDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
|
|
274 |
cls.add_method('GetMulticast',
|
|
275 |
'ns3::Address',
|
|
276 |
[param('ns3::Ipv4Address', 'multicastGroup')],
|
|
277 |
is_const=True, is_virtual=True)
|
|
278 |
## mesh-point-device.h: ns3::Address ns3::MeshPointDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
|
|
279 |
cls.add_method('GetMulticast',
|
|
280 |
'ns3::Address',
|
|
281 |
[param('ns3::Ipv6Address', 'addr')],
|
|
282 |
is_const=True, is_virtual=True)
|
|
283 |
## mesh-point-device.h: uint32_t ns3::MeshPointDevice::GetNInterfaces() const [member function]
|
|
284 |
cls.add_method('GetNInterfaces',
|
|
285 |
'uint32_t',
|
|
286 |
[],
|
|
287 |
is_const=True)
|
|
288 |
## mesh-point-device.h: ns3::Ptr<ns3::Node> ns3::MeshPointDevice::GetNode() const [member function]
|
|
289 |
cls.add_method('GetNode',
|
|
290 |
'ns3::Ptr< ns3::Node >',
|
|
291 |
[],
|
|
292 |
is_const=True, is_virtual=True)
|
|
293 |
## mesh-point-device.h: ns3::Ptr<ns3::MeshL2RoutingProtocol> ns3::MeshPointDevice::GetRoutingProtocol() const [member function]
|
|
294 |
cls.add_method('GetRoutingProtocol',
|
|
295 |
'ns3::Ptr< ns3::MeshL2RoutingProtocol >',
|
|
296 |
[],
|
|
297 |
is_const=True)
|
|
298 |
## mesh-point-device.h: static ns3::TypeId ns3::MeshPointDevice::GetTypeId() [member function]
|
|
299 |
cls.add_method('GetTypeId',
|
|
300 |
'ns3::TypeId',
|
|
301 |
[],
|
|
302 |
is_static=True)
|
|
303 |
## mesh-point-device.h: bool ns3::MeshPointDevice::IsBridge() const [member function]
|
|
304 |
cls.add_method('IsBridge',
|
|
305 |
'bool',
|
|
306 |
[],
|
|
307 |
is_const=True, is_virtual=True)
|
|
308 |
## mesh-point-device.h: bool ns3::MeshPointDevice::IsBroadcast() const [member function]
|
|
309 |
cls.add_method('IsBroadcast',
|
|
310 |
'bool',
|
|
311 |
[],
|
|
312 |
is_const=True, is_virtual=True)
|
|
313 |
## mesh-point-device.h: bool ns3::MeshPointDevice::IsLinkUp() const [member function]
|
|
314 |
cls.add_method('IsLinkUp',
|
|
315 |
'bool',
|
|
316 |
[],
|
|
317 |
is_const=True, is_virtual=True)
|
|
318 |
## mesh-point-device.h: bool ns3::MeshPointDevice::IsMulticast() const [member function]
|
|
319 |
cls.add_method('IsMulticast',
|
|
320 |
'bool',
|
|
321 |
[],
|
|
322 |
is_const=True, is_virtual=True)
|
|
323 |
## mesh-point-device.h: bool ns3::MeshPointDevice::IsPointToPoint() const [member function]
|
|
324 |
cls.add_method('IsPointToPoint',
|
|
325 |
'bool',
|
|
326 |
[],
|
|
327 |
is_const=True, is_virtual=True)
|
|
328 |
## mesh-point-device.h: bool ns3::MeshPointDevice::NeedsArp() const [member function]
|
|
329 |
cls.add_method('NeedsArp',
|
|
330 |
'bool',
|
|
331 |
[],
|
|
332 |
is_const=True, is_virtual=True)
|
|
333 |
## mesh-point-device.h: void ns3::MeshPointDevice::Report(std::ostream & os) const [member function]
|
|
334 |
cls.add_method('Report',
|
|
335 |
'void',
|
|
336 |
[param('std::ostream &', 'os')],
|
|
337 |
is_const=True)
|
|
338 |
## mesh-point-device.h: void ns3::MeshPointDevice::ResetStats() [member function]
|
|
339 |
cls.add_method('ResetStats',
|
|
340 |
'void',
|
|
341 |
[])
|
|
342 |
## mesh-point-device.h: bool ns3::MeshPointDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
|
|
343 |
cls.add_method('Send',
|
|
344 |
'bool',
|
|
345 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
|
|
346 |
is_virtual=True)
|
|
347 |
## mesh-point-device.h: bool ns3::MeshPointDevice::SendFrom(ns3::Ptr<ns3::Packet> packet, ns3::Address const & source, ns3::Address const & dest, uint16_t protocolNumber) [member function]
|
|
348 |
cls.add_method('SendFrom',
|
|
349 |
'bool',
|
|
350 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')],
|
|
351 |
is_virtual=True)
|
|
352 |
## mesh-point-device.h: void ns3::MeshPointDevice::SetAddress(ns3::Address a) [member function]
|
|
353 |
cls.add_method('SetAddress',
|
|
354 |
'void',
|
|
355 |
[param('ns3::Address', 'a')],
|
|
356 |
is_virtual=True)
|
|
357 |
## mesh-point-device.h: void ns3::MeshPointDevice::SetIfIndex(uint32_t const index) [member function]
|
|
358 |
cls.add_method('SetIfIndex',
|
|
359 |
'void',
|
|
360 |
[param('uint32_t const', 'index')],
|
|
361 |
is_virtual=True)
|
|
362 |
## mesh-point-device.h: bool ns3::MeshPointDevice::SetMtu(uint16_t const mtu) [member function]
|
|
363 |
cls.add_method('SetMtu',
|
|
364 |
'bool',
|
|
365 |
[param('uint16_t const', 'mtu')],
|
|
366 |
is_virtual=True)
|
|
367 |
## mesh-point-device.h: void ns3::MeshPointDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
|
|
368 |
cls.add_method('SetNode',
|
|
369 |
'void',
|
|
370 |
[param('ns3::Ptr< ns3::Node >', 'node')],
|
|
371 |
is_virtual=True)
|
|
372 |
## mesh-point-device.h: void ns3::MeshPointDevice::SetPromiscReceiveCallback(ns3::Callback<bool, ns3::Ptr<ns3::NetDevice>, ns3::Ptr<ns3::Packet const>, unsigned short, ns3::Address const&, ns3::Address const&, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty> cb) [member function]
|
|
373 |
cls.add_method('SetPromiscReceiveCallback',
|
|
374 |
'void',
|
|
375 |
[param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, unsigned short, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
|
|
376 |
is_virtual=True)
|
|
377 |
## mesh-point-device.h: void ns3::MeshPointDevice::SetReceiveCallback(ns3::Callback<bool, ns3::Ptr<ns3::NetDevice>, ns3::Ptr<ns3::Packet const>, unsigned short, ns3::Address const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function]
|
|
378 |
cls.add_method('SetReceiveCallback',
|
|
379 |
'void',
|
|
380 |
[param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, unsigned short, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')],
|
|
381 |
is_virtual=True)
|
|
382 |
## mesh-point-device.h: void ns3::MeshPointDevice::SetRoutingProtocol(ns3::Ptr<ns3::MeshL2RoutingProtocol> protocol) [member function]
|
|
383 |
cls.add_method('SetRoutingProtocol',
|
|
384 |
'void',
|
|
385 |
[param('ns3::Ptr< ns3::MeshL2RoutingProtocol >', 'protocol')])
|
|
386 |
## mesh-point-device.h: bool ns3::MeshPointDevice::SupportsSendFrom() const [member function]
|
|
387 |
cls.add_method('SupportsSendFrom',
|
|
388 |
'bool',
|
|
389 |
[],
|
|
390 |
is_const=True, is_virtual=True)
|
|
391 |
return
|
|
392 |
|
6675
|
393 |
def register_Ns3MeshWifiInterfaceMac_methods(root_module, cls):
|
|
394 |
## mesh-wifi-interface-mac.h: ns3::MeshWifiInterfaceMac::MeshWifiInterfaceMac(ns3::MeshWifiInterfaceMac const & arg0) [copy constructor]
|
|
395 |
cls.add_constructor([param('ns3::MeshWifiInterfaceMac const &', 'arg0')])
|
|
396 |
## mesh-wifi-interface-mac.h: ns3::MeshWifiInterfaceMac::MeshWifiInterfaceMac() [constructor]
|
|
397 |
cls.add_constructor([])
|
|
398 |
## mesh-wifi-interface-mac.h: bool ns3::MeshWifiInterfaceMac::CheckSupportedRates(ns3::SupportedRates rates) const [member function]
|
|
399 |
cls.add_method('CheckSupportedRates',
|
|
400 |
'bool',
|
|
401 |
[param('ns3::SupportedRates', 'rates')],
|
|
402 |
is_const=True)
|
|
403 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function]
|
|
404 |
cls.add_method('Enqueue',
|
|
405 |
'void',
|
|
406 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')],
|
|
407 |
is_virtual=True)
|
|
408 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function]
|
|
409 |
cls.add_method('Enqueue',
|
|
410 |
'void',
|
|
411 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')],
|
|
412 |
is_virtual=True)
|
|
413 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::FinishConfigureStandard(ns3::WifiPhyStandard standard) [member function]
|
|
414 |
cls.add_method('FinishConfigureStandard',
|
|
415 |
'void',
|
|
416 |
[param('ns3::WifiPhyStandard', 'standard')],
|
|
417 |
is_virtual=True)
|
|
418 |
## mesh-wifi-interface-mac.h: ns3::Time ns3::MeshWifiInterfaceMac::GetBeaconInterval() const [member function]
|
|
419 |
cls.add_method('GetBeaconInterval',
|
|
420 |
'ns3::Time',
|
|
421 |
[],
|
|
422 |
is_const=True)
|
|
423 |
## mesh-wifi-interface-mac.h: uint16_t ns3::MeshWifiInterfaceMac::GetFrequencyChannel() const [member function]
|
|
424 |
cls.add_method('GetFrequencyChannel',
|
|
425 |
'uint16_t',
|
|
426 |
[],
|
|
427 |
is_const=True)
|
|
428 |
## mesh-wifi-interface-mac.h: uint32_t ns3::MeshWifiInterfaceMac::GetLinkMetric(ns3::Mac48Address peerAddress) [member function]
|
|
429 |
cls.add_method('GetLinkMetric',
|
|
430 |
'uint32_t',
|
|
431 |
[param('ns3::Mac48Address', 'peerAddress')])
|
|
432 |
## mesh-wifi-interface-mac.h: ns3::Mac48Address ns3::MeshWifiInterfaceMac::GetMeshPointAddress() const [member function]
|
|
433 |
cls.add_method('GetMeshPointAddress',
|
|
434 |
'ns3::Mac48Address',
|
|
435 |
[],
|
|
436 |
is_const=True)
|
|
437 |
## mesh-wifi-interface-mac.h: ns3::WifiPhyStandard ns3::MeshWifiInterfaceMac::GetPhyStandard() const [member function]
|
|
438 |
cls.add_method('GetPhyStandard',
|
|
439 |
'ns3::WifiPhyStandard',
|
|
440 |
[],
|
|
441 |
is_const=True)
|
|
442 |
## mesh-wifi-interface-mac.h: ns3::SupportedRates ns3::MeshWifiInterfaceMac::GetSupportedRates() const [member function]
|
|
443 |
cls.add_method('GetSupportedRates',
|
|
444 |
'ns3::SupportedRates',
|
|
445 |
[],
|
|
446 |
is_const=True)
|
|
447 |
## mesh-wifi-interface-mac.h: ns3::Time ns3::MeshWifiInterfaceMac::GetTbtt() const [member function]
|
|
448 |
cls.add_method('GetTbtt',
|
|
449 |
'ns3::Time',
|
|
450 |
[],
|
|
451 |
is_const=True)
|
|
452 |
## mesh-wifi-interface-mac.h: static ns3::TypeId ns3::MeshWifiInterfaceMac::GetTypeId() [member function]
|
|
453 |
cls.add_method('GetTypeId',
|
|
454 |
'ns3::TypeId',
|
|
455 |
[],
|
|
456 |
is_static=True)
|
|
457 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::InstallPlugin(ns3::Ptr<ns3::MeshWifiInterfaceMacPlugin> plugin) [member function]
|
|
458 |
cls.add_method('InstallPlugin',
|
|
459 |
'void',
|
|
460 |
[param('ns3::Ptr< ns3::MeshWifiInterfaceMacPlugin >', 'plugin')])
|
|
461 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::Report(std::ostream & arg0) const [member function]
|
|
462 |
cls.add_method('Report',
|
|
463 |
'void',
|
|
464 |
[param('std::ostream &', 'arg0')],
|
|
465 |
is_const=True)
|
|
466 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::ResetStats() [member function]
|
|
467 |
cls.add_method('ResetStats',
|
|
468 |
'void',
|
|
469 |
[])
|
|
470 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SendManagementFrame(ns3::Ptr<ns3::Packet> frame, ns3::WifiMacHeader const & hdr) [member function]
|
|
471 |
cls.add_method('SendManagementFrame',
|
|
472 |
'void',
|
|
473 |
[param('ns3::Ptr< ns3::Packet >', 'frame'), param('ns3::WifiMacHeader const &', 'hdr')])
|
|
474 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetBeaconGeneration(bool enable) [member function]
|
|
475 |
cls.add_method('SetBeaconGeneration',
|
|
476 |
'void',
|
|
477 |
[param('bool', 'enable')])
|
|
478 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetBeaconInterval(ns3::Time interval) [member function]
|
|
479 |
cls.add_method('SetBeaconInterval',
|
|
480 |
'void',
|
|
481 |
[param('ns3::Time', 'interval')])
|
|
482 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetLinkMetricCallback(ns3::Callback<unsigned int, ns3::Mac48Address, ns3::Ptr<ns3::MeshWifiInterfaceMac>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function]
|
|
483 |
cls.add_method('SetLinkMetricCallback',
|
|
484 |
'void',
|
|
485 |
[param('ns3::Callback< unsigned int, ns3::Mac48Address, ns3::Ptr< ns3::MeshWifiInterfaceMac >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')])
|
|
486 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetLinkUpCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkUp) [member function]
|
|
487 |
cls.add_method('SetLinkUpCallback',
|
|
488 |
'void',
|
|
489 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')],
|
|
490 |
is_virtual=True)
|
|
491 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetMeshPointAddress(ns3::Mac48Address arg0) [member function]
|
|
492 |
cls.add_method('SetMeshPointAddress',
|
|
493 |
'void',
|
|
494 |
[param('ns3::Mac48Address', 'arg0')])
|
|
495 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SetRandomStartDelay(ns3::Time interval) [member function]
|
|
496 |
cls.add_method('SetRandomStartDelay',
|
|
497 |
'void',
|
|
498 |
[param('ns3::Time', 'interval')])
|
|
499 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::ShiftTbtt(ns3::Time shift) [member function]
|
|
500 |
cls.add_method('ShiftTbtt',
|
|
501 |
'void',
|
|
502 |
[param('ns3::Time', 'shift')])
|
|
503 |
## mesh-wifi-interface-mac.h: bool ns3::MeshWifiInterfaceMac::SupportsSendFrom() const [member function]
|
|
504 |
cls.add_method('SupportsSendFrom',
|
|
505 |
'bool',
|
|
506 |
[],
|
|
507 |
is_const=True, is_virtual=True)
|
|
508 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::SwitchFrequencyChannel(uint16_t new_id) [member function]
|
|
509 |
cls.add_method('SwitchFrequencyChannel',
|
|
510 |
'void',
|
|
511 |
[param('uint16_t', 'new_id')])
|
|
512 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::DoDispose() [member function]
|
|
513 |
cls.add_method('DoDispose',
|
|
514 |
'void',
|
|
515 |
[],
|
|
516 |
visibility='private', is_virtual=True)
|
|
517 |
## mesh-wifi-interface-mac.h: void ns3::MeshWifiInterfaceMac::Receive(ns3::Ptr<ns3::Packet> packet, ns3::WifiMacHeader const * hdr) [member function]
|
|
518 |
cls.add_method('Receive',
|
|
519 |
'void',
|
|
520 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::WifiMacHeader const *', 'hdr')],
|
|
521 |
visibility='private', is_virtual=True)
|
|
522 |
return
|
|
523 |
|
6534
|
524 |
def register_functions(root_module):
|
|
525 |
module = root_module
|
|
526 |
register_functions_ns3_Config(module.get_submodule('Config'), root_module)
|
|
527 |
register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
|
|
528 |
register_functions_ns3_addressUtils(module.get_submodule('addressUtils'), root_module)
|
|
529 |
register_functions_ns3_aodv(module.get_submodule('aodv'), root_module)
|
|
530 |
register_functions_ns3_dot11s(module.get_submodule('dot11s'), root_module)
|
6718
|
531 |
register_functions_ns3_dsdv(module.get_submodule('dsdv'), root_module)
|
6534
|
532 |
register_functions_ns3_flame(module.get_submodule('flame'), root_module)
|
|
533 |
register_functions_ns3_internal(module.get_submodule('internal'), root_module)
|
|
534 |
register_functions_ns3_olsr(module.get_submodule('olsr'), root_module)
|
|
535 |
return
|
|
536 |
|
|
537 |
def register_functions_ns3_Config(module, root_module):
|
|
538 |
return
|
|
539 |
|
|
540 |
def register_functions_ns3_FatalImpl(module, root_module):
|
|
541 |
return
|
|
542 |
|
|
543 |
def register_functions_ns3_addressUtils(module, root_module):
|
|
544 |
return
|
|
545 |
|
|
546 |
def register_functions_ns3_aodv(module, root_module):
|
|
547 |
return
|
|
548 |
|
|
549 |
def register_functions_ns3_dot11s(module, root_module):
|
|
550 |
return
|
|
551 |
|
6718
|
552 |
def register_functions_ns3_dsdv(module, root_module):
|
|
553 |
return
|
|
554 |
|
6534
|
555 |
def register_functions_ns3_flame(module, root_module):
|
|
556 |
return
|
|
557 |
|
|
558 |
def register_functions_ns3_internal(module, root_module):
|
|
559 |
return
|
|
560 |
|
|
561 |
def register_functions_ns3_olsr(module, root_module):
|
|
562 |
return
|
|
563 |
|