author | Mathieu Lacage <mathieu.lacage@sophia.inria.fr> |
Thu, 25 Jun 2009 14:30:40 +0200 | |
changeset 4595 | 13a5b15fbe34 |
parent 4589 | c9374dcfd09a |
child 4688 | 840515a00b38 |
permissions | -rw-r--r-- |
4474
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
1 |
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers |
3408 | 2 |
|
3 |
def register_types(module): |
|
4 |
root_module = module.get_root() |
|
5 |
||
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
6 |
## wifi-mac-header.h: ns3::WifiMacType [enumeration] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
7 |
module.add_enum('WifiMacType', ['WIFI_MAC_CTL_RTS', 'WIFI_MAC_CTL_CTS', 'WIFI_MAC_CTL_ACK', 'WIFI_MAC_CTL_BACKREQ', 'WIFI_MAC_CTL_BACKRESP', 'WIFI_MAC_MGT_BEACON', 'WIFI_MAC_MGT_ASSOCIATION_REQUEST', 'WIFI_MAC_MGT_ASSOCIATION_RESPONSE', 'WIFI_MAC_MGT_DISASSOCIATION', 'WIFI_MAC_MGT_REASSOCIATION_REQUEST', 'WIFI_MAC_MGT_REASSOCIATION_RESPONSE', 'WIFI_MAC_MGT_PROBE_REQUEST', 'WIFI_MAC_MGT_PROBE_RESPONSE', 'WIFI_MAC_MGT_AUTHENTICATION', 'WIFI_MAC_MGT_DEAUTHENTICATION', 'WIFI_MAC_DATA', 'WIFI_MAC_DATA_CFACK', 'WIFI_MAC_DATA_CFPOLL', 'WIFI_MAC_DATA_CFACK_CFPOLL', 'WIFI_MAC_DATA_NULL', 'WIFI_MAC_DATA_NULL_CFACK', 'WIFI_MAC_DATA_NULL_CFPOLL', 'WIFI_MAC_DATA_NULL_CFACK_CFPOLL', 'WIFI_MAC_QOSDATA', 'WIFI_MAC_QOSDATA_CFACK', 'WIFI_MAC_QOSDATA_CFPOLL', 'WIFI_MAC_QOSDATA_CFACK_CFPOLL', 'WIFI_MAC_QOSDATA_NULL', 'WIFI_MAC_QOSDATA_NULL_CFPOLL', 'WIFI_MAC_QOSDATA_NULL_CFACK_CFPOLL']) |
3408 | 8 |
## wifi-preamble.h: ns3::WifiPreamble [enumeration] |
9 |
module.add_enum('WifiPreamble', ['WIFI_PREAMBLE_LONG', 'WIFI_PREAMBLE_SHORT']) |
|
10 |
## wifi-phy-standard.h: ns3::WifiPhyStandard [enumeration] |
|
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
11 |
module.add_enum('WifiPhyStandard', ['WIFI_PHY_STANDARD_80211a', 'WIFI_PHY_STANDARD_80211b', 'WIFI_PHY_STANDARD_holland']) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
12 |
## qos-utils.h: ns3::AccessClass [enumeration] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
13 |
module.add_enum('AccessClass', ['AC_VO', 'AC_VI', 'AC_BE', 'AC_BK', 'AC_UNDEF']) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
14 |
## edca-txop-n.h: ns3::TypeOfStation [enumeration] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
15 |
module.add_enum('TypeOfStation', ['STA', 'AP', 'ADHOC_STA']) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
16 |
## interference-helper.h: ns3::InterferenceHelper [class] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
17 |
module.add_class('InterferenceHelper', allow_subclassing=False) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
18 |
## interference-helper.h: ns3::InterferenceHelper::SnrPer [struct] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
19 |
module.add_class('SnrPer', outer_class=root_module['ns3::InterferenceHelper']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
20 |
## ssid.h: ns3::Ssid [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
21 |
module.add_class('Ssid') |
3408 | 22 |
## supported-rates.h: ns3::SupportedRates [class] |
23 |
module.add_class('SupportedRates') |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
24 |
## rraa-wifi-manager.h: ns3::ThresholdsItem [struct] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
25 |
module.add_class('ThresholdsItem') |
3408 | 26 |
## wifi-mode.h: ns3::WifiMode [class] |
27 |
module.add_class('WifiMode') |
|
28 |
## wifi-mode.h: ns3::WifiMode::ModulationType [enumeration] |
|
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
29 |
module.add_enum('ModulationType', ['BPSK', 'DBPSK', 'DQPSK', 'QAM'], outer_class=root_module['ns3::WifiMode']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
30 |
## wifi-mode.h: ns3::WifiModeFactory [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
31 |
module.add_class('WifiModeFactory') |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
32 |
## wifi-phy.h: ns3::WifiPhyListener [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
33 |
module.add_class('WifiPhyListener', allow_subclassing=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
34 |
## wifi-remote-station-manager.h: ns3::WifiRemoteStation [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
35 |
module.add_class('WifiRemoteStation', allow_subclassing=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
36 |
## amrr-wifi-manager.h: ns3::AmrrWifiRemoteStation [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
37 |
module.add_class('AmrrWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
38 |
## arf-wifi-manager.h: ns3::ArfWifiRemoteStation [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
39 |
module.add_class('ArfWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
40 |
## constant-rate-wifi-manager.h: ns3::ConstantRateWifiRemoteStation [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
41 |
module.add_class('ConstantRateWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
42 |
## ideal-wifi-manager.h: ns3::IdealWifiRemoteStation [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
43 |
module.add_class('IdealWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
44 |
## onoe-wifi-manager.h: ns3::OnoeWifiRemoteStation [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
45 |
module.add_class('OnoeWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
46 |
## propagation-delay-model.h: ns3::PropagationDelayModel [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
47 |
module.add_class('PropagationDelayModel', parent=root_module['ns3::Object']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
48 |
## propagation-loss-model.h: ns3::PropagationLossModel [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
49 |
module.add_class('PropagationLossModel', parent=root_module['ns3::Object']) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
50 |
## qos-tag.h: ns3::QosTag [class] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
51 |
module.add_class('QosTag', parent=root_module['ns3::Tag']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
52 |
## propagation-delay-model.h: ns3::RandomPropagationDelayModel [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
53 |
module.add_class('RandomPropagationDelayModel', parent=root_module['ns3::PropagationDelayModel']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
54 |
## propagation-loss-model.h: ns3::RandomPropagationLossModel [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
55 |
module.add_class('RandomPropagationLossModel', parent=root_module['ns3::PropagationLossModel']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
56 |
## rraa-wifi-manager.h: ns3::RraaWifiRemoteStation [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
57 |
module.add_class('RraaWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation']) |
3408 | 58 |
## ssid.h: ns3::SsidChecker [class] |
59 |
module.add_class('SsidChecker', parent=root_module['ns3::AttributeChecker']) |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
60 |
## ssid.h: ns3::SsidValue [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
61 |
module.add_class('SsidValue', parent=root_module['ns3::AttributeValue']) |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
62 |
## propagation-loss-model.h: ns3::ThreeLogDistancePropagationLossModel [class] |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
63 |
module.add_class('ThreeLogDistancePropagationLossModel', parent=root_module['ns3::PropagationLossModel']) |
3408 | 64 |
## wifi-mac.h: ns3::WifiMac [class] |
3457 | 65 |
module.add_class('WifiMac', parent=root_module['ns3::Object']) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
66 |
## wifi-mac-header.h: ns3::WifiMacHeader [class] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
67 |
module.add_class('WifiMacHeader', parent=root_module['ns3::Header']) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
68 |
## wifi-mac-header.h: ns3::WifiMacHeader::QosAckPolicy [enumeration] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
69 |
module.add_enum('QosAckPolicy', ['NORMAL_ACK', 'NO_ACK', 'NO_EXPLICIT_ACK', 'BLOCK_ACK'], outer_class=root_module['ns3::WifiMacHeader']) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
70 |
## wifi-mac-header.h: ns3::WifiMacHeader::AddressType [enumeration] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
71 |
module.add_enum('AddressType', ['ADDR1', 'ADDR2', 'ADDR3', 'ADDR4'], outer_class=root_module['ns3::WifiMacHeader']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
72 |
## wifi-mode.h: ns3::WifiModeChecker [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
73 |
module.add_class('WifiModeChecker', parent=root_module['ns3::AttributeChecker']) |
3408 | 74 |
## wifi-mode.h: ns3::WifiModeValue [class] |
3457 | 75 |
module.add_class('WifiModeValue', parent=root_module['ns3::AttributeValue']) |
3408 | 76 |
## wifi-phy.h: ns3::WifiPhy [class] |
3457 | 77 |
module.add_class('WifiPhy', parent=root_module['ns3::Object']) |
3408 | 78 |
## wifi-phy.h: ns3::WifiPhy::State [enumeration] |
79 |
module.add_enum('State', ['SYNC', 'TX', 'CCA_BUSY', 'IDLE'], outer_class=root_module['ns3::WifiPhy']) |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
80 |
## wifi-remote-station-manager.h: ns3::WifiRemoteStationManager [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
81 |
module.add_class('WifiRemoteStationManager', parent=root_module['ns3::Object']) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
82 |
## yans-wifi-phy.h: ns3::YansWifiPhy [class] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
83 |
module.add_class('YansWifiPhy', parent=root_module['ns3::WifiPhy']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
84 |
## aarf-wifi-manager.h: ns3::AarfWifiRemoteStation [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
85 |
module.add_class('AarfWifiRemoteStation', parent=root_module['ns3::ArfWifiRemoteStation']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
86 |
## adhoc-wifi-mac.h: ns3::AdhocWifiMac [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
87 |
module.add_class('AdhocWifiMac', parent=root_module['ns3::WifiMac']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
88 |
## amrr-wifi-manager.h: ns3::AmrrWifiManager [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
89 |
module.add_class('AmrrWifiManager', parent=root_module['ns3::WifiRemoteStationManager']) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
90 |
## amsdu-subframe-header.h: ns3::AmsduSubframeHeader [class] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
91 |
module.add_class('AmsduSubframeHeader', parent=root_module['ns3::Header']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
92 |
## arf-wifi-manager.h: ns3::ArfWifiManager [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
93 |
module.add_class('ArfWifiManager', parent=root_module['ns3::WifiRemoteStationManager']) |
3408 | 94 |
## constant-rate-wifi-manager.h: ns3::ConstantRateWifiManager [class] |
3457 | 95 |
module.add_class('ConstantRateWifiManager', parent=root_module['ns3::WifiRemoteStationManager']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
96 |
## propagation-delay-model.h: ns3::ConstantSpeedPropagationDelayModel [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
97 |
module.add_class('ConstantSpeedPropagationDelayModel', parent=root_module['ns3::PropagationDelayModel']) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
98 |
## dca-txop.h: ns3::DcaTxop [class] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
99 |
module.add_class('DcaTxop', parent=root_module['ns3::Object']) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
100 |
## edca-txop-n.h: ns3::EdcaTxopN [class] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
101 |
module.add_class('EdcaTxopN', parent=root_module['ns3::Object']) |
3912
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
102 |
## error-rate-model.h: ns3::ErrorRateModel [class] |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
103 |
module.add_class('ErrorRateModel', parent=root_module['ns3::Object']) |
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
104 |
## propagation-loss-model.h: ns3::FixedRssLossModel [class] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
105 |
module.add_class('FixedRssLossModel', parent=root_module['ns3::PropagationLossModel']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
106 |
## propagation-loss-model.h: ns3::FriisPropagationLossModel [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
107 |
module.add_class('FriisPropagationLossModel', parent=root_module['ns3::PropagationLossModel']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
108 |
## ideal-wifi-manager.h: ns3::IdealWifiManager [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
109 |
module.add_class('IdealWifiManager', parent=root_module['ns3::WifiRemoteStationManager']) |
3408 | 110 |
## jakes-propagation-loss-model.h: ns3::JakesPropagationLossModel [class] |
3457 | 111 |
module.add_class('JakesPropagationLossModel', parent=root_module['ns3::PropagationLossModel']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
112 |
## propagation-loss-model.h: ns3::LogDistancePropagationLossModel [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
113 |
module.add_class('LogDistancePropagationLossModel', parent=root_module['ns3::PropagationLossModel']) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
114 |
## msdu-aggregator.h: ns3::MsduAggregator [class] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
115 |
module.add_class('MsduAggregator', parent=root_module['ns3::Object']) |
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
116 |
## propagation-loss-model.h: ns3::NakagamiPropagationLossModel [class] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
117 |
module.add_class('NakagamiPropagationLossModel', parent=root_module['ns3::PropagationLossModel']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
118 |
## nqap-wifi-mac.h: ns3::NqapWifiMac [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
119 |
module.add_class('NqapWifiMac', parent=root_module['ns3::WifiMac']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
120 |
## nqsta-wifi-mac.h: ns3::NqstaWifiMac [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
121 |
module.add_class('NqstaWifiMac', parent=root_module['ns3::WifiMac']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
122 |
## onoe-wifi-manager.h: ns3::OnoeWifiManager [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
123 |
module.add_class('OnoeWifiManager', parent=root_module['ns3::WifiRemoteStationManager']) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
124 |
## qadhoc-wifi-mac.h: ns3::QadhocWifiMac [class] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
125 |
module.add_class('QadhocWifiMac', parent=root_module['ns3::WifiMac']) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
126 |
## qap-wifi-mac.h: ns3::QapWifiMac [class] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
127 |
module.add_class('QapWifiMac', parent=root_module['ns3::WifiMac']) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
128 |
## qsta-wifi-mac.h: ns3::QstaWifiMac [class] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
129 |
module.add_class('QstaWifiMac', parent=root_module['ns3::WifiMac']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
130 |
## rraa-wifi-manager.h: ns3::RraaWifiManager [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
131 |
module.add_class('RraaWifiManager', parent=root_module['ns3::WifiRemoteStationManager']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
132 |
## wifi-channel.h: ns3::WifiChannel [class] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
133 |
module.add_class('WifiChannel', parent=root_module['ns3::Channel']) |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
134 |
## wifi-net-device.h: ns3::WifiNetDevice [class] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
135 |
module.add_class('WifiNetDevice', parent=root_module['ns3::NetDevice']) |
4038
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
136 |
## yans-error-rate-model.h: ns3::YansErrorRateModel [class] |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
137 |
module.add_class('YansErrorRateModel', parent=root_module['ns3::ErrorRateModel']) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
138 |
## yans-wifi-channel.h: ns3::YansWifiChannel [class] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
139 |
module.add_class('YansWifiChannel', parent=root_module['ns3::WifiChannel']) |
3408 | 140 |
## aarf-wifi-manager.h: ns3::AarfWifiManager [class] |
3457 | 141 |
module.add_class('AarfWifiManager', parent=root_module['ns3::ArfWifiManager']) |
4474
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
142 |
typehandlers.add_type_alias('std::vector< ns3::ThresholdsItem, std::allocator< ns3::ThresholdsItem > >', 'ns3::Thresholds') |
3408 | 143 |
|
3855
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
144 |
## Register a nested module for the namespace Config |
3408 | 145 |
|
3855
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
146 |
nested_module = module.add_cpp_namespace('Config') |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
147 |
register_types_ns3_Config(nested_module) |
3408 | 148 |
|
149 |
||
150 |
## Register a nested module for the namespace TimeStepPrecision |
|
151 |
||
152 |
nested_module = module.add_cpp_namespace('TimeStepPrecision') |
|
153 |
register_types_ns3_TimeStepPrecision(nested_module) |
|
154 |
||
155 |
||
4474
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
156 |
## Register a nested module for the namespace addressUtils |
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
157 |
|
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
158 |
nested_module = module.add_cpp_namespace('addressUtils') |
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
159 |
register_types_ns3_addressUtils(nested_module) |
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
160 |
|
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
161 |
|
3855
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
162 |
## Register a nested module for the namespace internal |
3408 | 163 |
|
3855
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
164 |
nested_module = module.add_cpp_namespace('internal') |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
165 |
register_types_ns3_internal(nested_module) |
3408 | 166 |
|
167 |
||
168 |
## Register a nested module for the namespace olsr |
|
169 |
||
170 |
nested_module = module.add_cpp_namespace('olsr') |
|
171 |
register_types_ns3_olsr(nested_module) |
|
172 |
||
173 |
||
3855
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
174 |
def register_types_ns3_Config(module): |
3408 | 175 |
root_module = module.get_root() |
176 |
||
177 |
||
178 |
def register_types_ns3_TimeStepPrecision(module): |
|
179 |
root_module = module.get_root() |
|
180 |
||
181 |
||
4474
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
182 |
def register_types_ns3_addressUtils(module): |
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
183 |
root_module = module.get_root() |
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
184 |
|
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
185 |
|
3855
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
186 |
def register_types_ns3_internal(module): |
3408 | 187 |
root_module = module.get_root() |
188 |
||
189 |
||
190 |
def register_types_ns3_olsr(module): |
|
191 |
root_module = module.get_root() |
|
192 |
||
193 |
||
194 |
def register_methods(root_module): |
|
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
195 |
register_Ns3InterferenceHelper_methods(root_module, root_module['ns3::InterferenceHelper']) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
196 |
register_Ns3InterferenceHelperSnrPer_methods(root_module, root_module['ns3::InterferenceHelper::SnrPer']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
197 |
register_Ns3Ssid_methods(root_module, root_module['ns3::Ssid']) |
3408 | 198 |
register_Ns3SupportedRates_methods(root_module, root_module['ns3::SupportedRates']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
199 |
register_Ns3ThresholdsItem_methods(root_module, root_module['ns3::ThresholdsItem']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
200 |
register_Ns3WifiMode_methods(root_module, root_module['ns3::WifiMode']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
201 |
register_Ns3WifiModeFactory_methods(root_module, root_module['ns3::WifiModeFactory']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
202 |
register_Ns3WifiPhyListener_methods(root_module, root_module['ns3::WifiPhyListener']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
203 |
register_Ns3WifiRemoteStation_methods(root_module, root_module['ns3::WifiRemoteStation']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
204 |
register_Ns3AmrrWifiRemoteStation_methods(root_module, root_module['ns3::AmrrWifiRemoteStation']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
205 |
register_Ns3ArfWifiRemoteStation_methods(root_module, root_module['ns3::ArfWifiRemoteStation']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
206 |
register_Ns3ConstantRateWifiRemoteStation_methods(root_module, root_module['ns3::ConstantRateWifiRemoteStation']) |
3408 | 207 |
register_Ns3IdealWifiRemoteStation_methods(root_module, root_module['ns3::IdealWifiRemoteStation']) |
208 |
register_Ns3OnoeWifiRemoteStation_methods(root_module, root_module['ns3::OnoeWifiRemoteStation']) |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
209 |
register_Ns3PropagationDelayModel_methods(root_module, root_module['ns3::PropagationDelayModel']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
210 |
register_Ns3PropagationLossModel_methods(root_module, root_module['ns3::PropagationLossModel']) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
211 |
register_Ns3QosTag_methods(root_module, root_module['ns3::QosTag']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
212 |
register_Ns3RandomPropagationDelayModel_methods(root_module, root_module['ns3::RandomPropagationDelayModel']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
213 |
register_Ns3RandomPropagationLossModel_methods(root_module, root_module['ns3::RandomPropagationLossModel']) |
3408 | 214 |
register_Ns3RraaWifiRemoteStation_methods(root_module, root_module['ns3::RraaWifiRemoteStation']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
215 |
register_Ns3SsidChecker_methods(root_module, root_module['ns3::SsidChecker']) |
3408 | 216 |
register_Ns3SsidValue_methods(root_module, root_module['ns3::SsidValue']) |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
217 |
register_Ns3ThreeLogDistancePropagationLossModel_methods(root_module, root_module['ns3::ThreeLogDistancePropagationLossModel']) |
3408 | 218 |
register_Ns3WifiMac_methods(root_module, root_module['ns3::WifiMac']) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
219 |
register_Ns3WifiMacHeader_methods(root_module, root_module['ns3::WifiMacHeader']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
220 |
register_Ns3WifiModeChecker_methods(root_module, root_module['ns3::WifiModeChecker']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
221 |
register_Ns3WifiModeValue_methods(root_module, root_module['ns3::WifiModeValue']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
222 |
register_Ns3WifiPhy_methods(root_module, root_module['ns3::WifiPhy']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
223 |
register_Ns3WifiRemoteStationManager_methods(root_module, root_module['ns3::WifiRemoteStationManager']) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
224 |
register_Ns3YansWifiPhy_methods(root_module, root_module['ns3::YansWifiPhy']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
225 |
register_Ns3AarfWifiRemoteStation_methods(root_module, root_module['ns3::AarfWifiRemoteStation']) |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
226 |
register_Ns3AdhocWifiMac_methods(root_module, root_module['ns3::AdhocWifiMac']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
227 |
register_Ns3AmrrWifiManager_methods(root_module, root_module['ns3::AmrrWifiManager']) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
228 |
register_Ns3AmsduSubframeHeader_methods(root_module, root_module['ns3::AmsduSubframeHeader']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
229 |
register_Ns3ArfWifiManager_methods(root_module, root_module['ns3::ArfWifiManager']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
230 |
register_Ns3ConstantRateWifiManager_methods(root_module, root_module['ns3::ConstantRateWifiManager']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
231 |
register_Ns3ConstantSpeedPropagationDelayModel_methods(root_module, root_module['ns3::ConstantSpeedPropagationDelayModel']) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
232 |
register_Ns3DcaTxop_methods(root_module, root_module['ns3::DcaTxop']) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
233 |
register_Ns3EdcaTxopN_methods(root_module, root_module['ns3::EdcaTxopN']) |
3912
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
234 |
register_Ns3ErrorRateModel_methods(root_module, root_module['ns3::ErrorRateModel']) |
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
235 |
register_Ns3FixedRssLossModel_methods(root_module, root_module['ns3::FixedRssLossModel']) |
3408 | 236 |
register_Ns3FriisPropagationLossModel_methods(root_module, root_module['ns3::FriisPropagationLossModel']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
237 |
register_Ns3IdealWifiManager_methods(root_module, root_module['ns3::IdealWifiManager']) |
3408 | 238 |
register_Ns3JakesPropagationLossModel_methods(root_module, root_module['ns3::JakesPropagationLossModel']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
239 |
register_Ns3LogDistancePropagationLossModel_methods(root_module, root_module['ns3::LogDistancePropagationLossModel']) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
240 |
register_Ns3MsduAggregator_methods(root_module, root_module['ns3::MsduAggregator']) |
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
241 |
register_Ns3NakagamiPropagationLossModel_methods(root_module, root_module['ns3::NakagamiPropagationLossModel']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
242 |
register_Ns3NqapWifiMac_methods(root_module, root_module['ns3::NqapWifiMac']) |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
243 |
register_Ns3NqstaWifiMac_methods(root_module, root_module['ns3::NqstaWifiMac']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
244 |
register_Ns3OnoeWifiManager_methods(root_module, root_module['ns3::OnoeWifiManager']) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
245 |
register_Ns3QadhocWifiMac_methods(root_module, root_module['ns3::QadhocWifiMac']) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
246 |
register_Ns3QapWifiMac_methods(root_module, root_module['ns3::QapWifiMac']) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
247 |
register_Ns3QstaWifiMac_methods(root_module, root_module['ns3::QstaWifiMac']) |
3408 | 248 |
register_Ns3RraaWifiManager_methods(root_module, root_module['ns3::RraaWifiManager']) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
249 |
register_Ns3WifiChannel_methods(root_module, root_module['ns3::WifiChannel']) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
250 |
register_Ns3WifiNetDevice_methods(root_module, root_module['ns3::WifiNetDevice']) |
4038
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
251 |
register_Ns3YansErrorRateModel_methods(root_module, root_module['ns3::YansErrorRateModel']) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
252 |
register_Ns3YansWifiChannel_methods(root_module, root_module['ns3::YansWifiChannel']) |
3408 | 253 |
register_Ns3AarfWifiManager_methods(root_module, root_module['ns3::AarfWifiManager']) |
254 |
return |
|
255 |
||
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
256 |
def register_Ns3InterferenceHelper_methods(root_module, cls): |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
257 |
## interference-helper.h: ns3::InterferenceHelper::InterferenceHelper() [constructor] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
258 |
cls.add_constructor([]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
259 |
## interference-helper.h: ns3::Ptr<ns3::InterferenceHelper::Event> ns3::InterferenceHelper::Add(uint32_t size, ns3::WifiMode payloadMode, ns3::WifiPreamble preamble, ns3::Time duration, double rxPower) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
260 |
cls.add_method('Add', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
261 |
'ns3::Ptr< ns3::InterferenceHelper::Event >', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
262 |
[param('uint32_t', 'size'), param('ns3::WifiMode', 'payloadMode'), param('ns3::WifiPreamble', 'preamble'), param('ns3::Time', 'duration'), param('double', 'rxPower')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
263 |
## interference-helper.h: ns3::InterferenceHelper::SnrPer ns3::InterferenceHelper::CalculateSnrPer(ns3::Ptr<ns3::InterferenceHelper::Event> event) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
264 |
cls.add_method('CalculateSnrPer', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
265 |
'ns3::InterferenceHelper::SnrPer', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
266 |
[param('ns3::Ptr< ns3::InterferenceHelper::Event >', 'event')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
267 |
## interference-helper.h: ns3::Time ns3::InterferenceHelper::CalculateTxDuration(uint32_t size, ns3::WifiMode payloadMode, ns3::WifiPreamble preamble) const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
268 |
cls.add_method('CalculateTxDuration', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
269 |
'ns3::Time', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
270 |
[param('uint32_t', 'size'), param('ns3::WifiMode', 'payloadMode'), param('ns3::WifiPreamble', 'preamble')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
271 |
is_const=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
272 |
## interference-helper.h: void ns3::InterferenceHelper::Configure80211aParameters() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
273 |
cls.add_method('Configure80211aParameters', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
274 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
275 |
[]) |
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
276 |
## interference-helper.h: void ns3::InterferenceHelper::Configure80211bParameters() [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
277 |
cls.add_method('Configure80211bParameters', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
278 |
'void', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
279 |
[]) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
280 |
## interference-helper.h: ns3::Time ns3::InterferenceHelper::GetEnergyDuration(double energyW) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
281 |
cls.add_method('GetEnergyDuration', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
282 |
'ns3::Time', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
283 |
[param('double', 'energyW')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
284 |
## interference-helper.h: ns3::Ptr<ns3::ErrorRateModel> ns3::InterferenceHelper::GetErrorRateModel() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
285 |
cls.add_method('GetErrorRateModel', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
286 |
'ns3::Ptr< ns3::ErrorRateModel >', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
287 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
288 |
is_const=True) |
4316
6fb63a0725a8
scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4279
diff
changeset
|
289 |
## interference-helper.h: double ns3::InterferenceHelper::GetNoiseFigure() const [member function] |
6fb63a0725a8
scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4279
diff
changeset
|
290 |
cls.add_method('GetNoiseFigure', |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
291 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
292 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
293 |
is_const=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
294 |
## interference-helper.h: void ns3::InterferenceHelper::SetErrorRateModel(ns3::Ptr<ns3::ErrorRateModel> rate) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
295 |
cls.add_method('SetErrorRateModel', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
296 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
297 |
[param('ns3::Ptr< ns3::ErrorRateModel >', 'rate')]) |
4316
6fb63a0725a8
scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4279
diff
changeset
|
298 |
## interference-helper.h: void ns3::InterferenceHelper::SetNoiseFigure(double value) [member function] |
6fb63a0725a8
scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4279
diff
changeset
|
299 |
cls.add_method('SetNoiseFigure', |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
300 |
'void', |
4316
6fb63a0725a8
scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4279
diff
changeset
|
301 |
[param('double', 'value')]) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
302 |
return |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
303 |
|
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
304 |
def register_Ns3InterferenceHelperSnrPer_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
305 |
## interference-helper.h: ns3::InterferenceHelper::SnrPer::SnrPer() [constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
306 |
cls.add_constructor([]) |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
307 |
## interference-helper.h: ns3::InterferenceHelper::SnrPer::SnrPer(ns3::InterferenceHelper::SnrPer const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
308 |
cls.add_constructor([param('ns3::InterferenceHelper::SnrPer const &', 'arg0')]) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
309 |
## interference-helper.h: ns3::InterferenceHelper::SnrPer::per [variable] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
310 |
cls.add_instance_attribute('per', 'double', is_const=False) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
311 |
## interference-helper.h: ns3::InterferenceHelper::SnrPer::snr [variable] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
312 |
cls.add_instance_attribute('snr', 'double', is_const=False) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
313 |
return |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
314 |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
315 |
def register_Ns3Ssid_methods(root_module, cls): |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
316 |
cls.add_output_stream_operator() |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
317 |
## ssid.h: ns3::Ssid::Ssid(ns3::Ssid const & arg0) [copy constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
318 |
cls.add_constructor([param('ns3::Ssid const &', 'arg0')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
319 |
## ssid.h: ns3::Ssid::Ssid() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
320 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
321 |
## ssid.h: ns3::Ssid::Ssid(std::string s) [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
322 |
cls.add_constructor([param('std::string', 's')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
323 |
## ssid.h: ns3::Ssid::Ssid(char const * ssid, uint8_t length) [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
324 |
cls.add_constructor([param('char const *', 'ssid'), param('uint8_t', 'length')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
325 |
## ssid.h: ns3::Buffer::Iterator ns3::Ssid::Deserialize(ns3::Buffer::Iterator i) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
326 |
cls.add_method('Deserialize', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
327 |
'ns3::Buffer::Iterator', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
328 |
[param('ns3::Buffer::Iterator', 'i')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
329 |
## ssid.h: uint32_t ns3::Ssid::GetLength() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
330 |
cls.add_method('GetLength', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
331 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
332 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
333 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
334 |
## ssid.h: uint32_t ns3::Ssid::GetSerializedSize() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
335 |
cls.add_method('GetSerializedSize', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
336 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
337 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
338 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
339 |
## ssid.h: bool ns3::Ssid::IsBroadcast() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
340 |
cls.add_method('IsBroadcast', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
341 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
342 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
343 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
344 |
## ssid.h: bool ns3::Ssid::IsEqual(ns3::Ssid const & o) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
345 |
cls.add_method('IsEqual', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
346 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
347 |
[param('ns3::Ssid const &', 'o')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
348 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
349 |
## ssid.h: char * ns3::Ssid::PeekString() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
350 |
cls.add_method('PeekString', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
351 |
'char *', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
352 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
353 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
354 |
## ssid.h: ns3::Buffer::Iterator ns3::Ssid::Serialize(ns3::Buffer::Iterator i) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
355 |
cls.add_method('Serialize', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
356 |
'ns3::Buffer::Iterator', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
357 |
[param('ns3::Buffer::Iterator', 'i')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
358 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
359 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
360 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
361 |
def register_Ns3SupportedRates_methods(root_module, cls): |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
362 |
cls.add_output_stream_operator() |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
363 |
## supported-rates.h: ns3::SupportedRates::SupportedRates(ns3::SupportedRates const & arg0) [copy constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
364 |
cls.add_constructor([param('ns3::SupportedRates const &', 'arg0')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
365 |
## supported-rates.h: ns3::SupportedRates::SupportedRates() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
366 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
367 |
## supported-rates.h: void ns3::SupportedRates::AddSupportedRate(uint32_t bs) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
368 |
cls.add_method('AddSupportedRate', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
369 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
370 |
[param('uint32_t', 'bs')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
371 |
## supported-rates.h: ns3::Buffer::Iterator ns3::SupportedRates::Deserialize(ns3::Buffer::Iterator start) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
372 |
cls.add_method('Deserialize', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
373 |
'ns3::Buffer::Iterator', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
374 |
[param('ns3::Buffer::Iterator', 'start')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
375 |
## supported-rates.h: uint8_t ns3::SupportedRates::GetNRates() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
376 |
cls.add_method('GetNRates', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
377 |
'uint8_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
378 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
379 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
380 |
## supported-rates.h: uint32_t ns3::SupportedRates::GetRate(uint8_t i) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
381 |
cls.add_method('GetRate', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
382 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
383 |
[param('uint8_t', 'i')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
384 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
385 |
## supported-rates.h: uint32_t ns3::SupportedRates::GetSerializedSize() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
386 |
cls.add_method('GetSerializedSize', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
387 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
388 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
389 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
390 |
## supported-rates.h: bool ns3::SupportedRates::IsBasicRate(uint32_t bs) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
391 |
cls.add_method('IsBasicRate', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
392 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
393 |
[param('uint32_t', 'bs')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
394 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
395 |
## supported-rates.h: bool ns3::SupportedRates::IsSupportedRate(uint32_t bs) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
396 |
cls.add_method('IsSupportedRate', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
397 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
398 |
[param('uint32_t', 'bs')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
399 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
400 |
## supported-rates.h: ns3::Buffer::Iterator ns3::SupportedRates::Serialize(ns3::Buffer::Iterator start) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
401 |
cls.add_method('Serialize', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
402 |
'ns3::Buffer::Iterator', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
403 |
[param('ns3::Buffer::Iterator', 'start')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
404 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
405 |
## supported-rates.h: void ns3::SupportedRates::SetBasicRate(uint32_t bs) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
406 |
cls.add_method('SetBasicRate', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
407 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
408 |
[param('uint32_t', 'bs')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
409 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
410 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
411 |
def register_Ns3ThresholdsItem_methods(root_module, cls): |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
412 |
## rraa-wifi-manager.h: ns3::ThresholdsItem::datarate [variable] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
413 |
cls.add_instance_attribute('datarate', 'uint32_t', is_const=False) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
414 |
## rraa-wifi-manager.h: ns3::ThresholdsItem::pori [variable] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
415 |
cls.add_instance_attribute('pori', 'double', is_const=False) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
416 |
## rraa-wifi-manager.h: ns3::ThresholdsItem::pmtl [variable] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
417 |
cls.add_instance_attribute('pmtl', 'double', is_const=False) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
418 |
## rraa-wifi-manager.h: ns3::ThresholdsItem::ewnd [variable] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
419 |
cls.add_instance_attribute('ewnd', 'uint32_t', is_const=False) |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
420 |
## rraa-wifi-manager.h: ns3::ThresholdsItem::ThresholdsItem(ns3::ThresholdsItem const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
421 |
cls.add_constructor([param('ns3::ThresholdsItem const &', 'arg0')]) |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
422 |
## rraa-wifi-manager.h: ns3::ThresholdsItem::ThresholdsItem() [constructor] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
423 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
424 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
425 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
426 |
def register_Ns3WifiMode_methods(root_module, cls): |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
427 |
cls.add_output_stream_operator() |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
428 |
cls.add_binary_comparison_operator('==') |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
429 |
## wifi-mode.h: ns3::WifiMode::WifiMode(ns3::WifiMode const & arg0) [copy constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
430 |
cls.add_constructor([param('ns3::WifiMode const &', 'arg0')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
431 |
## wifi-mode.h: ns3::WifiMode::WifiMode() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
432 |
cls.add_constructor([]) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
433 |
## wifi-mode.h: ns3::WifiMode::WifiMode(std::string name) [constructor] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
434 |
cls.add_constructor([param('std::string', 'name')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
435 |
## wifi-mode.h: uint32_t ns3::WifiMode::GetBandwidth() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
436 |
cls.add_method('GetBandwidth', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
437 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
438 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
439 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
440 |
## wifi-mode.h: uint8_t ns3::WifiMode::GetConstellationSize() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
441 |
cls.add_method('GetConstellationSize', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
442 |
'uint8_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
443 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
444 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
445 |
## wifi-mode.h: uint32_t ns3::WifiMode::GetDataRate() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
446 |
cls.add_method('GetDataRate', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
447 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
448 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
449 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
450 |
## wifi-mode.h: ns3::WifiMode::ModulationType ns3::WifiMode::GetModulationType() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
451 |
cls.add_method('GetModulationType', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
452 |
'ns3::WifiMode::ModulationType', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
453 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
454 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
455 |
## wifi-mode.h: uint32_t ns3::WifiMode::GetPhyRate() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
456 |
cls.add_method('GetPhyRate', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
457 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
458 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
459 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
460 |
## wifi-mode.h: uint32_t ns3::WifiMode::GetUid() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
461 |
cls.add_method('GetUid', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
462 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
463 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
464 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
465 |
## wifi-mode.h: std::string ns3::WifiMode::GetUniqueName() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
466 |
cls.add_method('GetUniqueName', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
467 |
'std::string', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
468 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
469 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
470 |
## wifi-mode.h: bool ns3::WifiMode::IsMandatory() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
471 |
cls.add_method('IsMandatory', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
472 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
473 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
474 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
475 |
## wifi-mode.h: bool ns3::WifiMode::IsModulationBpsk() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
476 |
cls.add_method('IsModulationBpsk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
477 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
478 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
479 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
480 |
## wifi-mode.h: bool ns3::WifiMode::IsModulationQam() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
481 |
cls.add_method('IsModulationQam', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
482 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
483 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
484 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
485 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
486 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
487 |
def register_Ns3WifiModeFactory_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
488 |
## wifi-mode.h: ns3::WifiModeFactory::WifiModeFactory(ns3::WifiModeFactory const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
489 |
cls.add_constructor([param('ns3::WifiModeFactory const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
490 |
## wifi-mode.h: static ns3::WifiMode ns3::WifiModeFactory::CreateBpsk(std::string uniqueName, bool isMandatory, uint32_t bandwidth, uint32_t dataRate, uint32_t phyRate) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
491 |
cls.add_method('CreateBpsk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
492 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
493 |
[param('std::string', 'uniqueName'), param('bool', 'isMandatory'), param('uint32_t', 'bandwidth'), param('uint32_t', 'dataRate'), param('uint32_t', 'phyRate')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
494 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
495 |
## wifi-mode.h: static ns3::WifiMode ns3::WifiModeFactory::CreateQam(std::string uniqueName, bool isMandatory, uint32_t bandwidth, uint32_t dataRate, uint32_t phyRate, uint8_t constellationSize) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
496 |
cls.add_method('CreateQam', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
497 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
498 |
[param('std::string', 'uniqueName'), param('bool', 'isMandatory'), param('uint32_t', 'bandwidth'), param('uint32_t', 'dataRate'), param('uint32_t', 'phyRate'), param('uint8_t', 'constellationSize')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
499 |
is_static=True) |
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
500 |
## wifi-mode.h: static ns3::WifiMode ns3::WifiModeFactory::CreateDbpsk(std::string uniqueName, bool isMandatory, uint32_t bandwidth, uint32_t dataRate, uint32_t phyRate) [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
501 |
cls.add_method('CreateDbpsk', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
502 |
'ns3::WifiMode', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
503 |
[param('std::string', 'uniqueName'), param('bool', 'isMandatory'), param('uint32_t', 'bandwidth'), param('uint32_t', 'dataRate'), param('uint32_t', 'phyRate')], |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
504 |
is_static=True) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
505 |
## wifi-mode.h: static ns3::WifiMode ns3::WifiModeFactory::CreateDqpsk(std::string uniqueName, bool isMandatory, uint32_t bandwidth, uint32_t dataRate, uint32_t phyRate) [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
506 |
cls.add_method('CreateDqpsk', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
507 |
'ns3::WifiMode', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
508 |
[param('std::string', 'uniqueName'), param('bool', 'isMandatory'), param('uint32_t', 'bandwidth'), param('uint32_t', 'dataRate'), param('uint32_t', 'phyRate')], |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
509 |
is_static=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
510 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
511 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
512 |
def register_Ns3WifiPhyListener_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
513 |
## wifi-phy.h: ns3::WifiPhyListener::WifiPhyListener(ns3::WifiPhyListener const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
514 |
cls.add_constructor([param('ns3::WifiPhyListener const &', 'arg0')]) |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
515 |
## wifi-phy.h: ns3::WifiPhyListener::WifiPhyListener() [constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
516 |
cls.add_constructor([]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
517 |
## wifi-phy.h: void ns3::WifiPhyListener::NotifyRxStart(ns3::Time duration) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
518 |
cls.add_method('NotifyRxStart', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
519 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
520 |
[param('ns3::Time', 'duration')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
521 |
is_pure_virtual=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
522 |
## wifi-phy.h: void ns3::WifiPhyListener::NotifyRxEndOk() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
523 |
cls.add_method('NotifyRxEndOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
524 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
525 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
526 |
is_pure_virtual=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
527 |
## wifi-phy.h: void ns3::WifiPhyListener::NotifyRxEndError() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
528 |
cls.add_method('NotifyRxEndError', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
529 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
530 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
531 |
is_pure_virtual=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
532 |
## wifi-phy.h: void ns3::WifiPhyListener::NotifyTxStart(ns3::Time duration) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
533 |
cls.add_method('NotifyTxStart', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
534 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
535 |
[param('ns3::Time', 'duration')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
536 |
is_pure_virtual=True, is_virtual=True) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
537 |
## wifi-phy.h: void ns3::WifiPhyListener::NotifyMaybeCcaBusyStart(ns3::Time duration) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
538 |
cls.add_method('NotifyMaybeCcaBusyStart', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
539 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
540 |
[param('ns3::Time', 'duration')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
541 |
is_pure_virtual=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
542 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
543 |
|
3408 | 544 |
def register_Ns3WifiRemoteStation_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
545 |
## wifi-remote-station-manager.h: ns3::WifiRemoteStation::WifiRemoteStation(ns3::WifiRemoteStation const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
546 |
cls.add_constructor([param('ns3::WifiRemoteStation const &', 'arg0')]) |
3408 | 547 |
## wifi-remote-station-manager.h: static ns3::TypeId ns3::WifiRemoteStation::GetTypeId() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
548 |
cls.add_method('GetTypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
549 |
'ns3::TypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
550 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
551 |
is_static=True) |
3408 | 552 |
## wifi-remote-station-manager.h: ns3::WifiRemoteStation::WifiRemoteStation() [constructor] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
553 |
cls.add_constructor([]) |
3408 | 554 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::Reset() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
555 |
cls.add_method('Reset', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
556 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
557 |
[]) |
3408 | 558 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::AddSupportedMode(ns3::WifiMode mode) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
559 |
cls.add_method('AddSupportedMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
560 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
561 |
[param('ns3::WifiMode', 'mode')]) |
3408 | 562 |
## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::IsBrandNew() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
563 |
cls.add_method('IsBrandNew', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
564 |
'bool', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
565 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
566 |
is_const=True) |
3408 | 567 |
## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::IsAssociated() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
568 |
cls.add_method('IsAssociated', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
569 |
'bool', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
570 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
571 |
is_const=True) |
3408 | 572 |
## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::IsWaitAssocTxOk() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
573 |
cls.add_method('IsWaitAssocTxOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
574 |
'bool', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
575 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
576 |
is_const=True) |
3408 | 577 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::RecordWaitAssocTxOk() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
578 |
cls.add_method('RecordWaitAssocTxOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
579 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
580 |
[]) |
3408 | 581 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::RecordGotAssocTxOk() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
582 |
cls.add_method('RecordGotAssocTxOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
583 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
584 |
[]) |
3408 | 585 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::RecordGotAssocTxFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
586 |
cls.add_method('RecordGotAssocTxFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
587 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
588 |
[]) |
3408 | 589 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::RecordDisassociated() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
590 |
cls.add_method('RecordDisassociated', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
591 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
592 |
[]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
593 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::PrepareForQueue(ns3::Ptr<ns3::Packet const> packet, uint32_t fullPacketSize) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
594 |
cls.add_method('PrepareForQueue', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
595 |
'void', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
596 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint32_t', 'fullPacketSize')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
597 |
## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::GetDataMode(ns3::Ptr<ns3::Packet const> packet, uint32_t fullPacketSize) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
598 |
cls.add_method('GetDataMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
599 |
'ns3::WifiMode', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
600 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint32_t', 'fullPacketSize')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
601 |
## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::GetRtsMode(ns3::Ptr<ns3::Packet const> packet) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
602 |
cls.add_method('GetRtsMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
603 |
'ns3::WifiMode', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
604 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
3408 | 605 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportRtsFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
606 |
cls.add_method('ReportRtsFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
607 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
608 |
[]) |
3408 | 609 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportDataFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
610 |
cls.add_method('ReportDataFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
611 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
612 |
[]) |
3408 | 613 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
614 |
cls.add_method('ReportRtsOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
615 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
616 |
[param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')]) |
3408 | 617 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
618 |
cls.add_method('ReportDataOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
619 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
620 |
[param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')]) |
3408 | 621 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportFinalRtsFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
622 |
cls.add_method('ReportFinalRtsFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
623 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
624 |
[]) |
3408 | 625 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportFinalDataFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
626 |
cls.add_method('ReportFinalDataFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
627 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
628 |
[]) |
3408 | 629 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
630 |
cls.add_method('ReportRxOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
631 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
632 |
[param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
633 |
## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::NeedRts(ns3::Ptr<ns3::Packet const> packet) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
634 |
cls.add_method('NeedRts', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
635 |
'bool', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
636 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
637 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
638 |
## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::NeedRtsRetransmission(ns3::Ptr<ns3::Packet const> packet) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
639 |
cls.add_method('NeedRtsRetransmission', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
640 |
'bool', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
641 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
642 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
643 |
## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::NeedDataRetransmission(ns3::Ptr<ns3::Packet const> packet) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
644 |
cls.add_method('NeedDataRetransmission', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
645 |
'bool', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
646 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
647 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
648 |
## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::NeedFragmentation(ns3::Ptr<ns3::Packet const> packet) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
649 |
cls.add_method('NeedFragmentation', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
650 |
'bool', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
651 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
652 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
653 |
## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStation::GetFragmentSize(ns3::Ptr<ns3::Packet const> packet, uint32_t fragmentNumber) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
654 |
cls.add_method('GetFragmentSize', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
655 |
'uint32_t', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
656 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint32_t', 'fragmentNumber')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
657 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
658 |
## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStation::GetFragmentOffset(ns3::Ptr<ns3::Packet const> packet, uint32_t fragmentNumber) [member function] |
3745
73e7bb607014
bug 372: fragmentation is broken
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3743
diff
changeset
|
659 |
cls.add_method('GetFragmentOffset', |
73e7bb607014
bug 372: fragmentation is broken
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3743
diff
changeset
|
660 |
'uint32_t', |
73e7bb607014
bug 372: fragmentation is broken
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3743
diff
changeset
|
661 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint32_t', 'fragmentNumber')], |
73e7bb607014
bug 372: fragmentation is broken
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3743
diff
changeset
|
662 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
663 |
## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::IsLastFragment(ns3::Ptr<ns3::Packet const> packet, uint32_t fragmentNumber) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
664 |
cls.add_method('IsLastFragment', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
665 |
'bool', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
666 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint32_t', 'fragmentNumber')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
667 |
is_virtual=True) |
3408 | 668 |
## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::GetCtsMode(ns3::WifiMode rtsMode) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
669 |
cls.add_method('GetCtsMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
670 |
'ns3::WifiMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
671 |
[param('ns3::WifiMode', 'rtsMode')]) |
3408 | 672 |
## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::GetAckMode(ns3::WifiMode dataMode) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
673 |
cls.add_method('GetAckMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
674 |
'ns3::WifiMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
675 |
[param('ns3::WifiMode', 'dataMode')]) |
3408 | 676 |
## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStation::GetNSupportedModes() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
677 |
cls.add_method('GetNSupportedModes', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
678 |
'uint32_t', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
679 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
680 |
is_const=True, visibility='protected') |
3408 | 681 |
## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::GetSupportedMode(uint32_t i) const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
682 |
cls.add_method('GetSupportedMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
683 |
'ns3::WifiMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
684 |
[param('uint32_t', 'i')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
685 |
is_const=True, visibility='protected') |
3408 | 686 |
## wifi-remote-station-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::WifiRemoteStation::GetManager() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
687 |
cls.add_method('GetManager', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
688 |
'ns3::Ptr< ns3::WifiRemoteStationManager >', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
689 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
690 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
3408 | 691 |
## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::DoGetDataMode(uint32_t size) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
692 |
cls.add_method('DoGetDataMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
693 |
'ns3::WifiMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
694 |
[param('uint32_t', 'size')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
695 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
3408 | 696 |
## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::DoGetRtsMode() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
697 |
cls.add_method('DoGetRtsMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
698 |
'ns3::WifiMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
699 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
700 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
4382 | 701 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportRtsFailed() [member function] |
702 |
cls.add_method('DoReportRtsFailed', |
|
703 |
'void', |
|
704 |
[], |
|
705 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
|
706 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportDataFailed() [member function] |
|
707 |
cls.add_method('DoReportDataFailed', |
|
708 |
'void', |
|
709 |
[], |
|
710 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
|
711 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function] |
|
712 |
cls.add_method('DoReportRtsOk', |
|
713 |
'void', |
|
714 |
[param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], |
|
715 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
|
716 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function] |
|
717 |
cls.add_method('DoReportDataOk', |
|
718 |
'void', |
|
719 |
[param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], |
|
720 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
|
721 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportFinalRtsFailed() [member function] |
|
722 |
cls.add_method('DoReportFinalRtsFailed', |
|
723 |
'void', |
|
724 |
[], |
|
725 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
|
726 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportFinalDataFailed() [member function] |
|
727 |
cls.add_method('DoReportFinalDataFailed', |
|
728 |
'void', |
|
729 |
[], |
|
730 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
|
731 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function] |
|
732 |
cls.add_method('DoReportRxOk', |
|
733 |
'void', |
|
734 |
[param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], |
|
735 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
|
3408 | 736 |
return |
737 |
||
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
738 |
def register_Ns3AmrrWifiRemoteStation_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
739 |
## amrr-wifi-manager.h: ns3::AmrrWifiRemoteStation::AmrrWifiRemoteStation(ns3::AmrrWifiRemoteStation const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
740 |
cls.add_constructor([param('ns3::AmrrWifiRemoteStation const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
741 |
## amrr-wifi-manager.h: ns3::AmrrWifiRemoteStation::AmrrWifiRemoteStation(ns3::Ptr<ns3::AmrrWifiManager> stations) [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
742 |
cls.add_constructor([param('ns3::Ptr< ns3::AmrrWifiManager >', 'stations')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
743 |
## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
744 |
cls.add_method('DoReportRxOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
745 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
746 |
[param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
747 |
visibility='protected', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
748 |
## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportRtsFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
749 |
cls.add_method('DoReportRtsFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
750 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
751 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
752 |
visibility='protected', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
753 |
## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportDataFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
754 |
cls.add_method('DoReportDataFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
755 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
756 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
757 |
visibility='protected', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
758 |
## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
759 |
cls.add_method('DoReportRtsOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
760 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
761 |
[param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
762 |
visibility='protected', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
763 |
## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
764 |
cls.add_method('DoReportDataOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
765 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
766 |
[param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
767 |
visibility='protected', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
768 |
## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportFinalRtsFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
769 |
cls.add_method('DoReportFinalRtsFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
770 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
771 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
772 |
visibility='protected', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
773 |
## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportFinalDataFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
774 |
cls.add_method('DoReportFinalDataFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
775 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
776 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
777 |
visibility='protected', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
778 |
## amrr-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::AmrrWifiRemoteStation::GetManager() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
779 |
cls.add_method('GetManager', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
780 |
'ns3::Ptr< ns3::WifiRemoteStationManager >', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
781 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
782 |
is_const=True, visibility='private', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
783 |
## amrr-wifi-manager.h: ns3::WifiMode ns3::AmrrWifiRemoteStation::DoGetDataMode(uint32_t size) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
784 |
cls.add_method('DoGetDataMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
785 |
'ns3::WifiMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
786 |
[param('uint32_t', 'size')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
787 |
visibility='private', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
788 |
## amrr-wifi-manager.h: ns3::WifiMode ns3::AmrrWifiRemoteStation::DoGetRtsMode() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
789 |
cls.add_method('DoGetRtsMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
790 |
'ns3::WifiMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
791 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
792 |
visibility='private', is_virtual=True) |
3408 | 793 |
return |
794 |
||
795 |
def register_Ns3ArfWifiRemoteStation_methods(root_module, cls): |
|
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
796 |
## arf-wifi-manager.h: ns3::ArfWifiRemoteStation::ArfWifiRemoteStation(ns3::ArfWifiRemoteStation const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
797 |
cls.add_constructor([param('ns3::ArfWifiRemoteStation const &', 'arg0')]) |
4341
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
798 |
## arf-wifi-manager.h: ns3::ArfWifiRemoteStation::ArfWifiRemoteStation(ns3::Ptr<ns3::ArfWifiManager> manager) [constructor] |
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
799 |
cls.add_constructor([param('ns3::Ptr< ns3::ArfWifiManager >', 'manager')]) |
3408 | 800 |
## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
801 |
cls.add_method('DoReportRxOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
802 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
803 |
[param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
804 |
visibility='protected', is_virtual=True) |
3408 | 805 |
## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportRtsFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
806 |
cls.add_method('DoReportRtsFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
807 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
808 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
809 |
visibility='protected', is_virtual=True) |
3408 | 810 |
## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportDataFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
811 |
cls.add_method('DoReportDataFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
812 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
813 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
814 |
visibility='protected', is_virtual=True) |
3408 | 815 |
## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
816 |
cls.add_method('DoReportRtsOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
817 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
818 |
[param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
819 |
visibility='protected', is_virtual=True) |
3408 | 820 |
## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
821 |
cls.add_method('DoReportDataOk', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
822 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
823 |
[param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
824 |
visibility='protected', is_virtual=True) |
3408 | 825 |
## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportFinalRtsFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
826 |
cls.add_method('DoReportFinalRtsFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
827 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
828 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
829 |
visibility='protected', is_virtual=True) |
3408 | 830 |
## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportFinalDataFailed() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
831 |
cls.add_method('DoReportFinalDataFailed', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
832 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
833 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
834 |
visibility='protected', is_virtual=True) |
3408 | 835 |
## arf-wifi-manager.h: uint32_t ns3::ArfWifiRemoteStation::GetMinTimerTimeout() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
836 |
cls.add_method('GetMinTimerTimeout', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
837 |
'uint32_t', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
838 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
839 |
visibility='protected') |
3408 | 840 |
## arf-wifi-manager.h: uint32_t ns3::ArfWifiRemoteStation::GetMinSuccessThreshold() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
841 |
cls.add_method('GetMinSuccessThreshold', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
842 |
'uint32_t', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
843 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
844 |
visibility='protected') |
3408 | 845 |
## arf-wifi-manager.h: uint32_t ns3::ArfWifiRemoteStation::GetTimerTimeout() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
846 |
cls.add_method('GetTimerTimeout', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
847 |
'uint32_t', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
848 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
849 |
visibility='protected') |
3408 | 850 |
## arf-wifi-manager.h: uint32_t ns3::ArfWifiRemoteStation::GetSuccessThreshold() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
851 |
cls.add_method('GetSuccessThreshold', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
852 |
'uint32_t', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
853 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
854 |
visibility='protected') |
3408 | 855 |
## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::SetTimerTimeout(uint32_t timerTimeout) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
856 |
cls.add_method('SetTimerTimeout', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
857 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
858 |
[param('uint32_t', 'timerTimeout')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
859 |
visibility='protected') |
3408 | 860 |
## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::SetSuccessThreshold(uint32_t successThreshold) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
861 |
cls.add_method('SetSuccessThreshold', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
862 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
863 |
[param('uint32_t', 'successThreshold')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
864 |
visibility='protected') |
3408 | 865 |
## arf-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::ArfWifiRemoteStation::GetManager() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
866 |
cls.add_method('GetManager', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
867 |
'ns3::Ptr< ns3::WifiRemoteStationManager >', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
868 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
869 |
is_const=True, visibility='private', is_virtual=True) |
3408 | 870 |
## arf-wifi-manager.h: ns3::WifiMode ns3::ArfWifiRemoteStation::DoGetDataMode(uint32_t size) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
871 |
cls.add_method('DoGetDataMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
872 |
'ns3::WifiMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
873 |
[param('uint32_t', 'size')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
874 |
visibility='private', is_virtual=True) |
3408 | 875 |
## arf-wifi-manager.h: ns3::WifiMode ns3::ArfWifiRemoteStation::DoGetRtsMode() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
876 |
cls.add_method('DoGetRtsMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
877 |
'ns3::WifiMode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
878 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
879 |
visibility='private', is_virtual=True) |
3408 | 880 |
## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::ReportRecoveryFailure() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
881 |
cls.add_method('ReportRecoveryFailure', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
882 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
883 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
884 |
visibility='private', is_virtual=True) |
3408 | 885 |
## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::ReportFailure() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
886 |
cls.add_method('ReportFailure', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
887 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
888 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
889 |
visibility='private', is_virtual=True) |
3408 | 890 |
return |
891 |
||
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
892 |
def register_Ns3ConstantRateWifiRemoteStation_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
893 |
## constant-rate-wifi-manager.h: ns3::ConstantRateWifiRemoteStation::ConstantRateWifiRemoteStation(ns3::ConstantRateWifiRemoteStation const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
894 |
cls.add_constructor([param('ns3::ConstantRateWifiRemoteStation const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
895 |
## constant-rate-wifi-manager.h: ns3::ConstantRateWifiRemoteStation::ConstantRateWifiRemoteStation(ns3::Ptr<ns3::ConstantRateWifiManager> stations) [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
896 |
cls.add_constructor([param('ns3::Ptr< ns3::ConstantRateWifiManager >', 'stations')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
897 |
## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
898 |
cls.add_method('DoReportRxOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
899 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
900 |
[param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
901 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
902 |
## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportRtsFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
903 |
cls.add_method('DoReportRtsFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
904 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
905 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
906 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
907 |
## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportDataFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
908 |
cls.add_method('DoReportDataFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
909 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
910 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
911 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
912 |
## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
913 |
cls.add_method('DoReportRtsOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
914 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
915 |
[param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
916 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
917 |
## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
918 |
cls.add_method('DoReportDataOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
919 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
920 |
[param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
921 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
922 |
## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportFinalRtsFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
923 |
cls.add_method('DoReportFinalRtsFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
924 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
925 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
926 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
927 |
## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportFinalDataFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
928 |
cls.add_method('DoReportFinalDataFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
929 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
930 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
931 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
932 |
## constant-rate-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::ConstantRateWifiRemoteStation::GetManager() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
933 |
cls.add_method('GetManager', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
934 |
'ns3::Ptr< ns3::WifiRemoteStationManager >', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
935 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
936 |
is_const=True, visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
937 |
## constant-rate-wifi-manager.h: ns3::WifiMode ns3::ConstantRateWifiRemoteStation::DoGetDataMode(uint32_t size) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
938 |
cls.add_method('DoGetDataMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
939 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
940 |
[param('uint32_t', 'size')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
941 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
942 |
## constant-rate-wifi-manager.h: ns3::WifiMode ns3::ConstantRateWifiRemoteStation::DoGetRtsMode() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
943 |
cls.add_method('DoGetRtsMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
944 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
945 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
946 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
947 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
948 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
949 |
def register_Ns3IdealWifiRemoteStation_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
950 |
## ideal-wifi-manager.h: ns3::IdealWifiRemoteStation::IdealWifiRemoteStation(ns3::IdealWifiRemoteStation const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
951 |
cls.add_constructor([param('ns3::IdealWifiRemoteStation const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
952 |
## ideal-wifi-manager.h: ns3::IdealWifiRemoteStation::IdealWifiRemoteStation(ns3::Ptr<ns3::IdealWifiManager> stations) [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
953 |
cls.add_constructor([param('ns3::Ptr< ns3::IdealWifiManager >', 'stations')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
954 |
## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
955 |
cls.add_method('DoReportRxOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
956 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
957 |
[param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
958 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
959 |
## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportRtsFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
960 |
cls.add_method('DoReportRtsFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
961 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
962 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
963 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
964 |
## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportDataFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
965 |
cls.add_method('DoReportDataFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
966 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
967 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
968 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
969 |
## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
970 |
cls.add_method('DoReportRtsOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
971 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
972 |
[param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
973 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
974 |
## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
975 |
cls.add_method('DoReportDataOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
976 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
977 |
[param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
978 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
979 |
## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportFinalRtsFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
980 |
cls.add_method('DoReportFinalRtsFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
981 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
982 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
983 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
984 |
## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportFinalDataFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
985 |
cls.add_method('DoReportFinalDataFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
986 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
987 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
988 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
989 |
## ideal-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::IdealWifiRemoteStation::GetManager() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
990 |
cls.add_method('GetManager', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
991 |
'ns3::Ptr< ns3::WifiRemoteStationManager >', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
992 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
993 |
is_const=True, visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
994 |
## ideal-wifi-manager.h: ns3::WifiMode ns3::IdealWifiRemoteStation::DoGetDataMode(uint32_t size) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
995 |
cls.add_method('DoGetDataMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
996 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
997 |
[param('uint32_t', 'size')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
998 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
999 |
## ideal-wifi-manager.h: ns3::WifiMode ns3::IdealWifiRemoteStation::DoGetRtsMode() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1000 |
cls.add_method('DoGetRtsMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1001 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1002 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1003 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1004 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1005 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1006 |
def register_Ns3OnoeWifiRemoteStation_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1007 |
## onoe-wifi-manager.h: ns3::OnoeWifiRemoteStation::OnoeWifiRemoteStation(ns3::OnoeWifiRemoteStation const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1008 |
cls.add_constructor([param('ns3::OnoeWifiRemoteStation const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1009 |
## onoe-wifi-manager.h: ns3::OnoeWifiRemoteStation::OnoeWifiRemoteStation(ns3::Ptr<ns3::OnoeWifiManager> stations) [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1010 |
cls.add_constructor([param('ns3::Ptr< ns3::OnoeWifiManager >', 'stations')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1011 |
## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1012 |
cls.add_method('DoReportRxOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1013 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1014 |
[param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1015 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1016 |
## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportRtsFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1017 |
cls.add_method('DoReportRtsFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1018 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1019 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1020 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1021 |
## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportDataFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1022 |
cls.add_method('DoReportDataFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1023 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1024 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1025 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1026 |
## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1027 |
cls.add_method('DoReportRtsOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1028 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1029 |
[param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1030 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1031 |
## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1032 |
cls.add_method('DoReportDataOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1033 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1034 |
[param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1035 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1036 |
## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportFinalRtsFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1037 |
cls.add_method('DoReportFinalRtsFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1038 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1039 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1040 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1041 |
## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportFinalDataFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1042 |
cls.add_method('DoReportFinalDataFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1043 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1044 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1045 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1046 |
## onoe-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::OnoeWifiRemoteStation::GetManager() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1047 |
cls.add_method('GetManager', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1048 |
'ns3::Ptr< ns3::WifiRemoteStationManager >', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1049 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1050 |
is_const=True, visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1051 |
## onoe-wifi-manager.h: ns3::WifiMode ns3::OnoeWifiRemoteStation::DoGetDataMode(uint32_t size) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1052 |
cls.add_method('DoGetDataMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1053 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1054 |
[param('uint32_t', 'size')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1055 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1056 |
## onoe-wifi-manager.h: ns3::WifiMode ns3::OnoeWifiRemoteStation::DoGetRtsMode() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1057 |
cls.add_method('DoGetRtsMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1058 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1059 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1060 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1061 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1062 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1063 |
def register_Ns3PropagationDelayModel_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1064 |
## propagation-delay-model.h: ns3::PropagationDelayModel::PropagationDelayModel(ns3::PropagationDelayModel const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1065 |
cls.add_constructor([param('ns3::PropagationDelayModel const &', 'arg0')]) |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1066 |
## propagation-delay-model.h: ns3::PropagationDelayModel::PropagationDelayModel() [constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1067 |
cls.add_constructor([]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1068 |
## propagation-delay-model.h: static ns3::TypeId ns3::PropagationDelayModel::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1069 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1070 |
'ns3::TypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1071 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1072 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1073 |
## propagation-delay-model.h: ns3::Time ns3::PropagationDelayModel::GetDelay(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1074 |
cls.add_method('GetDelay', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1075 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1076 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1077 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1078 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1079 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1080 |
def register_Ns3PropagationLossModel_methods(root_module, cls): |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1081 |
## propagation-loss-model.h: static ns3::TypeId ns3::PropagationLossModel::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1082 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1083 |
'ns3::TypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1084 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1085 |
is_static=True) |
3907
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
1086 |
## propagation-loss-model.h: ns3::PropagationLossModel::PropagationLossModel() [constructor] |
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
1087 |
cls.add_constructor([]) |
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
1088 |
## propagation-loss-model.h: void ns3::PropagationLossModel::SetNext(ns3::Ptr<ns3::PropagationLossModel> next) [member function] |
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
1089 |
cls.add_method('SetNext', |
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
1090 |
'void', |
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
1091 |
[param('ns3::Ptr< ns3::PropagationLossModel >', 'next')]) |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1092 |
## propagation-loss-model.h: double ns3::PropagationLossModel::CalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1093 |
cls.add_method('CalcRxPower', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1094 |
'double', |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1095 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
3907
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
1096 |
is_const=True) |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1097 |
## propagation-loss-model.h: double ns3::PropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1098 |
cls.add_method('DoCalcRxPower', |
3907
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
1099 |
'double', |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1100 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
3907
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
1101 |
is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1102 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1103 |
|
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1104 |
def register_Ns3QosTag_methods(root_module, cls): |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1105 |
## qos-tag.h: ns3::QosTag::QosTag(ns3::QosTag const & arg0) [copy constructor] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1106 |
cls.add_constructor([param('ns3::QosTag const &', 'arg0')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1107 |
## qos-tag.h: static ns3::TypeId ns3::QosTag::GetTypeId() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1108 |
cls.add_method('GetTypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1109 |
'ns3::TypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1110 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1111 |
is_static=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1112 |
## qos-tag.h: ns3::TypeId ns3::QosTag::GetInstanceTypeId() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1113 |
cls.add_method('GetInstanceTypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1114 |
'ns3::TypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1115 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1116 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1117 |
## qos-tag.h: ns3::QosTag::QosTag() [constructor] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1118 |
cls.add_constructor([]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1119 |
## qos-tag.h: void ns3::QosTag::Serialize(ns3::TagBuffer i) const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1120 |
cls.add_method('Serialize', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1121 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1122 |
[param('ns3::TagBuffer', 'i')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1123 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1124 |
## qos-tag.h: void ns3::QosTag::Deserialize(ns3::TagBuffer i) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1125 |
cls.add_method('Deserialize', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1126 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1127 |
[param('ns3::TagBuffer', 'i')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1128 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1129 |
## qos-tag.h: uint32_t ns3::QosTag::GetSerializedSize() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1130 |
cls.add_method('GetSerializedSize', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1131 |
'uint32_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1132 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1133 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1134 |
## qos-tag.h: void ns3::QosTag::Print(std::ostream & os) const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1135 |
cls.add_method('Print', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1136 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1137 |
[param('std::ostream &', 'os')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1138 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1139 |
## qos-tag.h: uint8_t ns3::QosTag::Get() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1140 |
cls.add_method('Get', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1141 |
'uint8_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1142 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1143 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1144 |
## qos-tag.h: void ns3::QosTag::Set(uint8_t tid) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1145 |
cls.add_method('Set', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1146 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1147 |
[param('uint8_t', 'tid')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1148 |
return |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
1149 |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1150 |
def register_Ns3RandomPropagationDelayModel_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1151 |
## propagation-delay-model.h: ns3::RandomPropagationDelayModel::RandomPropagationDelayModel(ns3::RandomPropagationDelayModel const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1152 |
cls.add_constructor([param('ns3::RandomPropagationDelayModel const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1153 |
## propagation-delay-model.h: static ns3::TypeId ns3::RandomPropagationDelayModel::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1154 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1155 |
'ns3::TypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1156 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1157 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1158 |
## propagation-delay-model.h: ns3::RandomPropagationDelayModel::RandomPropagationDelayModel() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1159 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1160 |
## propagation-delay-model.h: ns3::Time ns3::RandomPropagationDelayModel::GetDelay(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1161 |
cls.add_method('GetDelay', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1162 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1163 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1164 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1165 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1166 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1167 |
def register_Ns3RandomPropagationLossModel_methods(root_module, cls): |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1168 |
## propagation-loss-model.h: static ns3::TypeId ns3::RandomPropagationLossModel::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1169 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1170 |
'ns3::TypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1171 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1172 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1173 |
## propagation-loss-model.h: ns3::RandomPropagationLossModel::RandomPropagationLossModel() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1174 |
cls.add_constructor([]) |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1175 |
## propagation-loss-model.h: double ns3::RandomPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1176 |
cls.add_method('DoCalcRxPower', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1177 |
'double', |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1178 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
3907
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
1179 |
is_const=True, visibility='private', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1180 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1181 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1182 |
def register_Ns3RraaWifiRemoteStation_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1183 |
## rraa-wifi-manager.h: ns3::RraaWifiRemoteStation::RraaWifiRemoteStation(ns3::RraaWifiRemoteStation const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1184 |
cls.add_constructor([param('ns3::RraaWifiRemoteStation const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1185 |
## rraa-wifi-manager.h: ns3::RraaWifiRemoteStation::RraaWifiRemoteStation(ns3::Ptr<ns3::RraaWifiManager> stations) [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1186 |
cls.add_constructor([param('ns3::Ptr< ns3::RraaWifiManager >', 'stations')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1187 |
## rraa-wifi-manager.h: bool ns3::RraaWifiRemoteStation::NeedRts(ns3::Ptr<ns3::Packet const> packet) [member function] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1188 |
cls.add_method('NeedRts', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1189 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1190 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1191 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1192 |
## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1193 |
cls.add_method('DoReportRxOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1194 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1195 |
[param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1196 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1197 |
## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportRtsFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1198 |
cls.add_method('DoReportRtsFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1199 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1200 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1201 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1202 |
## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportDataFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1203 |
cls.add_method('DoReportDataFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1204 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1205 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1206 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1207 |
## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1208 |
cls.add_method('DoReportRtsOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1209 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1210 |
[param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1211 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1212 |
## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1213 |
cls.add_method('DoReportDataOk', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1214 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1215 |
[param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1216 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1217 |
## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportFinalRtsFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1218 |
cls.add_method('DoReportFinalRtsFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1219 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1220 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1221 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1222 |
## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportFinalDataFailed() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1223 |
cls.add_method('DoReportFinalDataFailed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1224 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1225 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1226 |
visibility='protected', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1227 |
## rraa-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::RraaWifiRemoteStation::GetManager() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1228 |
cls.add_method('GetManager', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1229 |
'ns3::Ptr< ns3::WifiRemoteStationManager >', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1230 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1231 |
is_const=True, visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1232 |
## rraa-wifi-manager.h: ns3::WifiMode ns3::RraaWifiRemoteStation::DoGetDataMode(uint32_t size) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1233 |
cls.add_method('DoGetDataMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1234 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1235 |
[param('uint32_t', 'size')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1236 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1237 |
## rraa-wifi-manager.h: ns3::WifiMode ns3::RraaWifiRemoteStation::DoGetRtsMode() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1238 |
cls.add_method('DoGetRtsMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1239 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1240 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1241 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1242 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1243 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1244 |
def register_Ns3SsidChecker_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1245 |
## ssid.h: ns3::SsidChecker::SsidChecker(ns3::SsidChecker const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1246 |
cls.add_constructor([param('ns3::SsidChecker const &', 'arg0')]) |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1247 |
## ssid.h: ns3::SsidChecker::SsidChecker() [constructor] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1248 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1249 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1250 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1251 |
def register_Ns3SsidValue_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1252 |
## ssid.h: ns3::SsidValue::SsidValue(ns3::SsidValue const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1253 |
cls.add_constructor([param('ns3::SsidValue const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1254 |
## ssid.h: ns3::SsidValue::SsidValue() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1255 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1256 |
## ssid.h: ns3::SsidValue::SsidValue(ns3::Ssid const & value) [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1257 |
cls.add_constructor([param('ns3::Ssid const &', 'value')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1258 |
## ssid.h: void ns3::SsidValue::Set(ns3::Ssid const & value) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1259 |
cls.add_method('Set', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1260 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1261 |
[param('ns3::Ssid const &', 'value')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1262 |
## ssid.h: ns3::Ssid ns3::SsidValue::Get() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1263 |
cls.add_method('Get', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1264 |
'ns3::Ssid', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1265 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1266 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1267 |
## ssid.h: ns3::Ptr<ns3::AttributeValue> ns3::SsidValue::Copy() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1268 |
cls.add_method('Copy', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1269 |
'ns3::Ptr< ns3::AttributeValue >', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1270 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1271 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1272 |
## ssid.h: std::string ns3::SsidValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1273 |
cls.add_method('SerializeToString', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1274 |
'std::string', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1275 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1276 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1277 |
## ssid.h: bool ns3::SsidValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1278 |
cls.add_method('DeserializeFromString', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1279 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1280 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1281 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1282 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1283 |
|
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1284 |
def register_Ns3ThreeLogDistancePropagationLossModel_methods(root_module, cls): |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1285 |
## propagation-loss-model.h: static ns3::TypeId ns3::ThreeLogDistancePropagationLossModel::GetTypeId() [member function] |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1286 |
cls.add_method('GetTypeId', |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1287 |
'ns3::TypeId', |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1288 |
[], |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1289 |
is_static=True) |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1290 |
## propagation-loss-model.h: ns3::ThreeLogDistancePropagationLossModel::ThreeLogDistancePropagationLossModel() [constructor] |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1291 |
cls.add_constructor([]) |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1292 |
## propagation-loss-model.h: double ns3::ThreeLogDistancePropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1293 |
cls.add_method('DoCalcRxPower', |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1294 |
'double', |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1295 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1296 |
is_const=True, visibility='private', is_virtual=True) |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1297 |
return |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
1298 |
|
3408 | 1299 |
def register_Ns3WifiMac_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1300 |
## wifi-mac.h: ns3::WifiMac::WifiMac(ns3::WifiMac const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1301 |
cls.add_constructor([param('ns3::WifiMac const &', 'arg0')]) |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1302 |
## wifi-mac.h: ns3::WifiMac::WifiMac() [constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1303 |
cls.add_constructor([]) |
3408 | 1304 |
## wifi-mac.h: static ns3::TypeId ns3::WifiMac::GetTypeId() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1305 |
cls.add_method('GetTypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1306 |
'ns3::TypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1307 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1308 |
is_static=True) |
3408 | 1309 |
## wifi-mac.h: void ns3::WifiMac::SetSlot(ns3::Time slotTime) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1310 |
cls.add_method('SetSlot', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1311 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1312 |
[param('ns3::Time', 'slotTime')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1313 |
is_pure_virtual=True, is_virtual=True) |
3408 | 1314 |
## wifi-mac.h: void ns3::WifiMac::SetSifs(ns3::Time sifs) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1315 |
cls.add_method('SetSifs', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1316 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1317 |
[param('ns3::Time', 'sifs')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1318 |
is_pure_virtual=True, is_virtual=True) |
3408 | 1319 |
## wifi-mac.h: void ns3::WifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1320 |
cls.add_method('SetEifsNoDifs', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1321 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1322 |
[param('ns3::Time', 'eifsNoDifs')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1323 |
is_pure_virtual=True, is_virtual=True) |
3408 | 1324 |
## wifi-mac.h: void ns3::WifiMac::SetPifs(ns3::Time pifs) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1325 |
cls.add_method('SetPifs', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1326 |
'void', |
3600
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
1327 |
[param('ns3::Time', 'pifs')], |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
1328 |
is_pure_virtual=True, is_virtual=True) |
3408 | 1329 |
## wifi-mac.h: void ns3::WifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1330 |
cls.add_method('SetCtsTimeout', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1331 |
'void', |
3600
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
1332 |
[param('ns3::Time', 'ctsTimeout')], |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
1333 |
is_pure_virtual=True, is_virtual=True) |
3408 | 1334 |
## wifi-mac.h: void ns3::WifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1335 |
cls.add_method('SetAckTimeout', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1336 |
'void', |
3600
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
1337 |
[param('ns3::Time', 'ackTimeout')], |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
1338 |
is_pure_virtual=True, is_virtual=True) |
3408 | 1339 |
## wifi-mac.h: void ns3::WifiMac::SetMaxPropagationDelay(ns3::Time delay) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1340 |
cls.add_method('SetMaxPropagationDelay', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1341 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1342 |
[param('ns3::Time', 'delay')]) |
3408 | 1343 |
## wifi-mac.h: ns3::Time ns3::WifiMac::GetPifs() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1344 |
cls.add_method('GetPifs', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1345 |
'ns3::Time', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1346 |
[], |
3600
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
1347 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3408 | 1348 |
## wifi-mac.h: ns3::Time ns3::WifiMac::GetSifs() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1349 |
cls.add_method('GetSifs', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1350 |
'ns3::Time', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1351 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1352 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3408 | 1353 |
## wifi-mac.h: ns3::Time ns3::WifiMac::GetSlot() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1354 |
cls.add_method('GetSlot', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1355 |
'ns3::Time', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1356 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1357 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3408 | 1358 |
## wifi-mac.h: ns3::Time ns3::WifiMac::GetEifsNoDifs() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1359 |
cls.add_method('GetEifsNoDifs', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1360 |
'ns3::Time', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1361 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1362 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3408 | 1363 |
## wifi-mac.h: ns3::Time ns3::WifiMac::GetCtsTimeout() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1364 |
cls.add_method('GetCtsTimeout', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1365 |
'ns3::Time', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1366 |
[], |
3600
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
1367 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3408 | 1368 |
## wifi-mac.h: ns3::Time ns3::WifiMac::GetAckTimeout() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1369 |
cls.add_method('GetAckTimeout', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1370 |
'ns3::Time', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1371 |
[], |
3600
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
1372 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3408 | 1373 |
## wifi-mac.h: ns3::Time ns3::WifiMac::GetMsduLifetime() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1374 |
cls.add_method('GetMsduLifetime', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1375 |
'ns3::Time', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1376 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1377 |
is_const=True) |
3408 | 1378 |
## wifi-mac.h: ns3::Time ns3::WifiMac::GetMaxPropagationDelay() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1379 |
cls.add_method('GetMaxPropagationDelay', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1380 |
'ns3::Time', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1381 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1382 |
is_const=True) |
3408 | 1383 |
## wifi-mac.h: uint32_t ns3::WifiMac::GetMaxMsduSize() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1384 |
cls.add_method('GetMaxMsduSize', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1385 |
'uint32_t', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1386 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1387 |
is_const=True) |
3408 | 1388 |
## wifi-mac.h: ns3::Mac48Address ns3::WifiMac::GetAddress() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1389 |
cls.add_method('GetAddress', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1390 |
'ns3::Mac48Address', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1391 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1392 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3408 | 1393 |
## wifi-mac.h: ns3::Ssid ns3::WifiMac::GetSsid() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1394 |
cls.add_method('GetSsid', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1395 |
'ns3::Ssid', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1396 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1397 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3408 | 1398 |
## wifi-mac.h: void ns3::WifiMac::SetAddress(ns3::Mac48Address address) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1399 |
cls.add_method('SetAddress', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1400 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1401 |
[param('ns3::Mac48Address', 'address')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1402 |
is_pure_virtual=True, is_virtual=True) |
3408 | 1403 |
## wifi-mac.h: void ns3::WifiMac::SetSsid(ns3::Ssid ssid) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1404 |
cls.add_method('SetSsid', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1405 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1406 |
[param('ns3::Ssid', 'ssid')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1407 |
is_pure_virtual=True, is_virtual=True) |
3743
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
1408 |
## wifi-mac.h: ns3::Mac48Address ns3::WifiMac::GetBssid() const [member function] |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
1409 |
cls.add_method('GetBssid', |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
1410 |
'ns3::Mac48Address', |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
1411 |
[], |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
1412 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1413 |
## wifi-mac.h: void ns3::WifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1414 |
cls.add_method('Enqueue', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1415 |
'void', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1416 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1417 |
is_pure_virtual=True, is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1418 |
## wifi-mac.h: void ns3::WifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function] |
3604
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
1419 |
cls.add_method('Enqueue', |
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
1420 |
'void', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1421 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1422 |
is_pure_virtual=True, is_virtual=True) |
3604
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
1423 |
## wifi-mac.h: bool ns3::WifiMac::SupportsSendFrom() const [member function] |
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
1424 |
cls.add_method('SupportsSendFrom', |
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
1425 |
'bool', |
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
1426 |
[], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1427 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3408 | 1428 |
## wifi-mac.h: void ns3::WifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1429 |
cls.add_method('SetWifiPhy', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1430 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1431 |
[param('ns3::Ptr< ns3::WifiPhy >', 'phy')], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1432 |
is_pure_virtual=True, is_virtual=True) |
3408 | 1433 |
## wifi-mac.h: void ns3::WifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1434 |
cls.add_method('SetWifiRemoteStationManager', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1435 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1436 |
[param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1437 |
is_pure_virtual=True, is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
1438 |
## wifi-mac.h: void ns3::WifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1439 |
cls.add_method('SetForwardUpCallback', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1440 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
1441 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1442 |
is_pure_virtual=True, is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
1443 |
## wifi-mac.h: void ns3::WifiMac::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] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1444 |
cls.add_method('SetLinkUpCallback', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1445 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
1446 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1447 |
is_pure_virtual=True, is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
1448 |
## wifi-mac.h: void ns3::WifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1449 |
cls.add_method('SetLinkDownCallback', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1450 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
1451 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1452 |
is_pure_virtual=True, is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1453 |
## wifi-mac.h: void ns3::WifiMac::NotifyTx(ns3::Ptr<ns3::Packet const> packet) [member function] |
4265
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1454 |
cls.add_method('NotifyTx', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1455 |
'void', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1456 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1457 |
## wifi-mac.h: void ns3::WifiMac::NotifyTxDrop(ns3::Ptr<ns3::Packet const> packet) [member function] |
4265
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1458 |
cls.add_method('NotifyTxDrop', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1459 |
'void', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1460 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1461 |
## wifi-mac.h: void ns3::WifiMac::NotifyRx(ns3::Ptr<ns3::Packet const> packet) [member function] |
4265
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1462 |
cls.add_method('NotifyRx', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1463 |
'void', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1464 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1465 |
## wifi-mac.h: void ns3::WifiMac::NotifyPromiscRx(ns3::Ptr<ns3::Packet const> packet) [member function] |
4279
7cb2938928d4
Update the python bindings
Raj Bhattacharjea <raj.b@gatech.edu>
parents:
4265
diff
changeset
|
1466 |
cls.add_method('NotifyPromiscRx', |
7cb2938928d4
Update the python bindings
Raj Bhattacharjea <raj.b@gatech.edu>
parents:
4265
diff
changeset
|
1467 |
'void', |
7cb2938928d4
Update the python bindings
Raj Bhattacharjea <raj.b@gatech.edu>
parents:
4265
diff
changeset
|
1468 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1469 |
## wifi-mac.h: void ns3::WifiMac::NotifyRxDrop(ns3::Ptr<ns3::Packet const> packet) [member function] |
4265
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1470 |
cls.add_method('NotifyRxDrop', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1471 |
'void', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
1472 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
3408 | 1473 |
return |
1474 |
||
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1475 |
def register_Ns3WifiMacHeader_methods(root_module, cls): |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1476 |
## wifi-mac-header.h: ns3::WifiMacHeader::WifiMacHeader(ns3::WifiMacHeader const & arg0) [copy constructor] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1477 |
cls.add_constructor([param('ns3::WifiMacHeader const &', 'arg0')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1478 |
## wifi-mac-header.h: ns3::WifiMacHeader::WifiMacHeader() [constructor] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1479 |
cls.add_constructor([]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1480 |
## wifi-mac-header.h: static ns3::TypeId ns3::WifiMacHeader::GetTypeId() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1481 |
cls.add_method('GetTypeId', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1482 |
'ns3::TypeId', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1483 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1484 |
is_static=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1485 |
## wifi-mac-header.h: ns3::TypeId ns3::WifiMacHeader::GetInstanceTypeId() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1486 |
cls.add_method('GetInstanceTypeId', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1487 |
'ns3::TypeId', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1488 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1489 |
is_const=True, is_virtual=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1490 |
## wifi-mac-header.h: void ns3::WifiMacHeader::Print(std::ostream & os) const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1491 |
cls.add_method('Print', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1492 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1493 |
[param('std::ostream &', 'os')], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1494 |
is_const=True, is_virtual=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1495 |
## wifi-mac-header.h: uint32_t ns3::WifiMacHeader::GetSerializedSize() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1496 |
cls.add_method('GetSerializedSize', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1497 |
'uint32_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1498 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1499 |
is_const=True, is_virtual=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1500 |
## wifi-mac-header.h: void ns3::WifiMacHeader::Serialize(ns3::Buffer::Iterator start) const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1501 |
cls.add_method('Serialize', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1502 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1503 |
[param('ns3::Buffer::Iterator', 'start')], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1504 |
is_const=True, is_virtual=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1505 |
## wifi-mac-header.h: uint32_t ns3::WifiMacHeader::Deserialize(ns3::Buffer::Iterator start) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1506 |
cls.add_method('Deserialize', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1507 |
'uint32_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1508 |
[param('ns3::Buffer::Iterator', 'start')], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1509 |
is_virtual=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1510 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetAssocReq() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1511 |
cls.add_method('SetAssocReq', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1512 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1513 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1514 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetAssocResp() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1515 |
cls.add_method('SetAssocResp', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1516 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1517 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1518 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetProbeReq() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1519 |
cls.add_method('SetProbeReq', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1520 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1521 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1522 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetProbeResp() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1523 |
cls.add_method('SetProbeResp', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1524 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1525 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1526 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetBeacon() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1527 |
cls.add_method('SetBeacon', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1528 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1529 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1530 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetTypeData() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1531 |
cls.add_method('SetTypeData', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1532 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1533 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1534 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetDsFrom() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1535 |
cls.add_method('SetDsFrom', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1536 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1537 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1538 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetDsNotFrom() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1539 |
cls.add_method('SetDsNotFrom', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1540 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1541 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1542 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetDsTo() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1543 |
cls.add_method('SetDsTo', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1544 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1545 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1546 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetDsNotTo() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1547 |
cls.add_method('SetDsNotTo', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1548 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1549 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1550 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetAddr1(ns3::Mac48Address address) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1551 |
cls.add_method('SetAddr1', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1552 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1553 |
[param('ns3::Mac48Address', 'address')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1554 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetAddr2(ns3::Mac48Address address) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1555 |
cls.add_method('SetAddr2', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1556 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1557 |
[param('ns3::Mac48Address', 'address')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1558 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetAddr3(ns3::Mac48Address address) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1559 |
cls.add_method('SetAddr3', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1560 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1561 |
[param('ns3::Mac48Address', 'address')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1562 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetAddr4(ns3::Mac48Address address) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1563 |
cls.add_method('SetAddr4', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1564 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1565 |
[param('ns3::Mac48Address', 'address')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1566 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetType(ns3::WifiMacType type) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1567 |
cls.add_method('SetType', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1568 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1569 |
[param('ns3::WifiMacType', 'type')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1570 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetRawDuration(uint16_t duration) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1571 |
cls.add_method('SetRawDuration', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1572 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1573 |
[param('uint16_t', 'duration')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1574 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetDuration(ns3::Time duration) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1575 |
cls.add_method('SetDuration', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1576 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1577 |
[param('ns3::Time', 'duration')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1578 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetId(uint16_t id) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1579 |
cls.add_method('SetId', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1580 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1581 |
[param('uint16_t', 'id')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1582 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetSequenceNumber(uint16_t seq) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1583 |
cls.add_method('SetSequenceNumber', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1584 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1585 |
[param('uint16_t', 'seq')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1586 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetFragmentNumber(uint8_t frag) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1587 |
cls.add_method('SetFragmentNumber', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1588 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1589 |
[param('uint8_t', 'frag')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1590 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetNoMoreFragments() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1591 |
cls.add_method('SetNoMoreFragments', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1592 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1593 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1594 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetMoreFragments() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1595 |
cls.add_method('SetMoreFragments', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1596 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1597 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1598 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetRetry() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1599 |
cls.add_method('SetRetry', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1600 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1601 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1602 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetNoRetry() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1603 |
cls.add_method('SetNoRetry', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1604 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1605 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1606 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosTid(uint8_t tid) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1607 |
cls.add_method('SetQosTid', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1608 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1609 |
[param('uint8_t', 'tid')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1610 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosEosp() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1611 |
cls.add_method('SetQosEosp', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1612 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1613 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1614 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosNoEosp() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1615 |
cls.add_method('SetQosNoEosp', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1616 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1617 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1618 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosAckPolicy(ns3::WifiMacHeader::QosAckPolicy arg0) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1619 |
cls.add_method('SetQosAckPolicy', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1620 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1621 |
[param('ns3::WifiMacHeader::QosAckPolicy', 'arg0')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1622 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosAmsdu() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1623 |
cls.add_method('SetQosAmsdu', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1624 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1625 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1626 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosNoAmsdu() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1627 |
cls.add_method('SetQosNoAmsdu', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1628 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1629 |
[]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1630 |
## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosTxopLimit(uint8_t txop) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1631 |
cls.add_method('SetQosTxopLimit', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1632 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1633 |
[param('uint8_t', 'txop')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1634 |
## wifi-mac-header.h: ns3::Mac48Address ns3::WifiMacHeader::GetAddr1() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1635 |
cls.add_method('GetAddr1', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1636 |
'ns3::Mac48Address', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1637 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1638 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1639 |
## wifi-mac-header.h: ns3::Mac48Address ns3::WifiMacHeader::GetAddr2() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1640 |
cls.add_method('GetAddr2', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1641 |
'ns3::Mac48Address', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1642 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1643 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1644 |
## wifi-mac-header.h: ns3::Mac48Address ns3::WifiMacHeader::GetAddr3() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1645 |
cls.add_method('GetAddr3', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1646 |
'ns3::Mac48Address', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1647 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1648 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1649 |
## wifi-mac-header.h: ns3::Mac48Address ns3::WifiMacHeader::GetAddr4() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1650 |
cls.add_method('GetAddr4', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1651 |
'ns3::Mac48Address', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1652 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1653 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1654 |
## wifi-mac-header.h: ns3::WifiMacType ns3::WifiMacHeader::GetType() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1655 |
cls.add_method('GetType', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1656 |
'ns3::WifiMacType', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1657 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1658 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1659 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsFromDs() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1660 |
cls.add_method('IsFromDs', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1661 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1662 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1663 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1664 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsToDs() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1665 |
cls.add_method('IsToDs', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1666 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1667 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1668 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1669 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsData() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1670 |
cls.add_method('IsData', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1671 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1672 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1673 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1674 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosData() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1675 |
cls.add_method('IsQosData', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1676 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1677 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1678 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1679 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsCtl() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1680 |
cls.add_method('IsCtl', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1681 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1682 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1683 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1684 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsMgt() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1685 |
cls.add_method('IsMgt', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1686 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1687 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1688 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1689 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsCfpoll() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1690 |
cls.add_method('IsCfpoll', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1691 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1692 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1693 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1694 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsRts() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1695 |
cls.add_method('IsRts', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1696 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1697 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1698 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1699 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsCts() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1700 |
cls.add_method('IsCts', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1701 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1702 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1703 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1704 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsAck() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1705 |
cls.add_method('IsAck', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1706 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1707 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1708 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1709 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsAssocReq() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1710 |
cls.add_method('IsAssocReq', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1711 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1712 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1713 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1714 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsAssocResp() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1715 |
cls.add_method('IsAssocResp', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1716 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1717 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1718 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1719 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsReassocReq() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1720 |
cls.add_method('IsReassocReq', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1721 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1722 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1723 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1724 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsReassocResp() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1725 |
cls.add_method('IsReassocResp', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1726 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1727 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1728 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1729 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsProbeReq() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1730 |
cls.add_method('IsProbeReq', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1731 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1732 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1733 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1734 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsProbeResp() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1735 |
cls.add_method('IsProbeResp', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1736 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1737 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1738 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1739 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsBeacon() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1740 |
cls.add_method('IsBeacon', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1741 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1742 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1743 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1744 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsDisassociation() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1745 |
cls.add_method('IsDisassociation', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1746 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1747 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1748 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1749 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsAuthentication() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1750 |
cls.add_method('IsAuthentication', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1751 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1752 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1753 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1754 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsDeauthentication() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1755 |
cls.add_method('IsDeauthentication', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1756 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1757 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1758 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1759 |
## wifi-mac-header.h: uint16_t ns3::WifiMacHeader::GetRawDuration() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1760 |
cls.add_method('GetRawDuration', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1761 |
'uint16_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1762 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1763 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1764 |
## wifi-mac-header.h: ns3::Time ns3::WifiMacHeader::GetDuration() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1765 |
cls.add_method('GetDuration', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1766 |
'ns3::Time', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1767 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1768 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1769 |
## wifi-mac-header.h: uint16_t ns3::WifiMacHeader::GetSequenceControl() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1770 |
cls.add_method('GetSequenceControl', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1771 |
'uint16_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1772 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1773 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1774 |
## wifi-mac-header.h: uint16_t ns3::WifiMacHeader::GetSequenceNumber() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1775 |
cls.add_method('GetSequenceNumber', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1776 |
'uint16_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1777 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1778 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1779 |
## wifi-mac-header.h: uint16_t ns3::WifiMacHeader::GetFragmentNumber() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1780 |
cls.add_method('GetFragmentNumber', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1781 |
'uint16_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1782 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1783 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1784 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsRetry() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1785 |
cls.add_method('IsRetry', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1786 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1787 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1788 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1789 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsMoreFragments() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1790 |
cls.add_method('IsMoreFragments', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1791 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1792 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1793 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1794 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosBlockAck() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1795 |
cls.add_method('IsQosBlockAck', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1796 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1797 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1798 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1799 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosNoAck() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1800 |
cls.add_method('IsQosNoAck', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1801 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1802 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1803 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1804 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosAck() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1805 |
cls.add_method('IsQosAck', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1806 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1807 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1808 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1809 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosEosp() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1810 |
cls.add_method('IsQosEosp', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1811 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1812 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1813 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1814 |
## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosAmsdu() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1815 |
cls.add_method('IsQosAmsdu', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1816 |
'bool', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1817 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1818 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1819 |
## wifi-mac-header.h: uint8_t ns3::WifiMacHeader::GetQosTid() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1820 |
cls.add_method('GetQosTid', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1821 |
'uint8_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1822 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1823 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1824 |
## wifi-mac-header.h: ns3::WifiMacHeader::QosAckPolicy ns3::WifiMacHeader::GetQosAckPolicy() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1825 |
cls.add_method('GetQosAckPolicy', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1826 |
'ns3::WifiMacHeader::QosAckPolicy', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1827 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1828 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1829 |
## wifi-mac-header.h: uint8_t ns3::WifiMacHeader::GetQosTxopLimit() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1830 |
cls.add_method('GetQosTxopLimit', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1831 |
'uint8_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1832 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1833 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1834 |
## wifi-mac-header.h: uint32_t ns3::WifiMacHeader::GetSize() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1835 |
cls.add_method('GetSize', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1836 |
'uint32_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1837 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1838 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1839 |
## wifi-mac-header.h: char const * ns3::WifiMacHeader::GetTypeString() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1840 |
cls.add_method('GetTypeString', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1841 |
'char const *', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1842 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1843 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1844 |
return |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1845 |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1846 |
def register_Ns3WifiModeChecker_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1847 |
## wifi-mode.h: ns3::WifiModeChecker::WifiModeChecker(ns3::WifiModeChecker const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1848 |
cls.add_constructor([param('ns3::WifiModeChecker const &', 'arg0')]) |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1849 |
## wifi-mode.h: ns3::WifiModeChecker::WifiModeChecker() [constructor] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1850 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1851 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1852 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1853 |
def register_Ns3WifiModeValue_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1854 |
## wifi-mode.h: ns3::WifiModeValue::WifiModeValue(ns3::WifiModeValue const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1855 |
cls.add_constructor([param('ns3::WifiModeValue const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1856 |
## wifi-mode.h: ns3::WifiModeValue::WifiModeValue() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1857 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1858 |
## wifi-mode.h: ns3::WifiModeValue::WifiModeValue(ns3::WifiMode const & value) [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1859 |
cls.add_constructor([param('ns3::WifiMode const &', 'value')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1860 |
## wifi-mode.h: void ns3::WifiModeValue::Set(ns3::WifiMode const & value) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1861 |
cls.add_method('Set', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1862 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1863 |
[param('ns3::WifiMode const &', 'value')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1864 |
## wifi-mode.h: ns3::WifiMode ns3::WifiModeValue::Get() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1865 |
cls.add_method('Get', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1866 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1867 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1868 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1869 |
## wifi-mode.h: ns3::Ptr<ns3::AttributeValue> ns3::WifiModeValue::Copy() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1870 |
cls.add_method('Copy', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1871 |
'ns3::Ptr< ns3::AttributeValue >', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1872 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1873 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1874 |
## wifi-mode.h: std::string ns3::WifiModeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1875 |
cls.add_method('SerializeToString', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1876 |
'std::string', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1877 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1878 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1879 |
## wifi-mode.h: bool ns3::WifiModeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1880 |
cls.add_method('DeserializeFromString', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1881 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1882 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1883 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1884 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1885 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1886 |
def register_Ns3WifiPhy_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1887 |
## wifi-phy.h: ns3::WifiPhy::WifiPhy(ns3::WifiPhy const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
1888 |
cls.add_constructor([param('ns3::WifiPhy const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1889 |
## wifi-phy.h: static ns3::TypeId ns3::WifiPhy::GetTypeId() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1890 |
cls.add_method('GetTypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1891 |
'ns3::TypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1892 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1893 |
is_static=True) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1894 |
## wifi-phy.h: ns3::WifiPhy::WifiPhy() [constructor] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1895 |
cls.add_constructor([]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1896 |
## wifi-phy.h: double ns3::WifiPhy::GetTxPowerStart() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1897 |
cls.add_method('GetTxPowerStart', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1898 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1899 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1900 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1901 |
## wifi-phy.h: double ns3::WifiPhy::GetTxPowerEnd() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1902 |
cls.add_method('GetTxPowerEnd', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1903 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1904 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1905 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1906 |
## wifi-phy.h: uint32_t ns3::WifiPhy::GetNTxPower() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1907 |
cls.add_method('GetNTxPower', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1908 |
'uint32_t', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1909 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1910 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
1911 |
## wifi-phy.h: void ns3::WifiPhy::SetReceiveOkCallback(ns3::Callback<void,ns3::Ptr<ns3::Packet>,double,ns3::WifiMode,ns3::WifiPreamble,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function] |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1912 |
cls.add_method('SetReceiveOkCallback', |
3600
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
1913 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
1914 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, double, ns3::WifiMode, ns3::WifiPreamble, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1915 |
is_pure_virtual=True, is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
1916 |
## wifi-phy.h: void ns3::WifiPhy::SetReceiveErrorCallback(ns3::Callback<void,ns3::Ptr<const ns3::Packet>,double,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function] |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1917 |
cls.add_method('SetReceiveErrorCallback', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1918 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
1919 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, double, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1920 |
is_pure_virtual=True, is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
1921 |
## wifi-phy.h: void ns3::WifiPhy::SendPacket(ns3::Ptr<ns3::Packet const> packet, ns3::WifiMode mode, ns3::WifiPreamble preamble, uint8_t txPowerLevel) [member function] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1922 |
cls.add_method('SendPacket', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
1923 |
'void', |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1924 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::WifiMode', 'mode'), param('ns3::WifiPreamble', 'preamble'), param('uint8_t', 'txPowerLevel')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1925 |
is_pure_virtual=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1926 |
## wifi-phy.h: void ns3::WifiPhy::RegisterListener(ns3::WifiPhyListener * listener) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1927 |
cls.add_method('RegisterListener', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1928 |
'void', |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1929 |
[param('ns3::WifiPhyListener *', 'listener')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1930 |
is_pure_virtual=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1931 |
## wifi-phy.h: bool ns3::WifiPhy::IsStateCcaBusy() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1932 |
cls.add_method('IsStateCcaBusy', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1933 |
'bool', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1934 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1935 |
is_pure_virtual=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1936 |
## wifi-phy.h: bool ns3::WifiPhy::IsStateIdle() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1937 |
cls.add_method('IsStateIdle', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1938 |
'bool', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1939 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1940 |
is_pure_virtual=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1941 |
## wifi-phy.h: bool ns3::WifiPhy::IsStateBusy() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1942 |
cls.add_method('IsStateBusy', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1943 |
'bool', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1944 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1945 |
is_pure_virtual=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1946 |
## wifi-phy.h: bool ns3::WifiPhy::IsStateSync() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1947 |
cls.add_method('IsStateSync', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1948 |
'bool', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1949 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1950 |
is_pure_virtual=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1951 |
## wifi-phy.h: bool ns3::WifiPhy::IsStateTx() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1952 |
cls.add_method('IsStateTx', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1953 |
'bool', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1954 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1955 |
is_pure_virtual=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1956 |
## wifi-phy.h: ns3::Time ns3::WifiPhy::GetStateDuration() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1957 |
cls.add_method('GetStateDuration', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1958 |
'ns3::Time', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
1959 |
[], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1960 |
is_pure_virtual=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1961 |
## wifi-phy.h: ns3::Time ns3::WifiPhy::GetDelayUntilIdle() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1962 |
cls.add_method('GetDelayUntilIdle', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1963 |
'ns3::Time', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1964 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1965 |
is_pure_virtual=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1966 |
## wifi-phy.h: ns3::Time ns3::WifiPhy::GetLastRxStartTime() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1967 |
cls.add_method('GetLastRxStartTime', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1968 |
'ns3::Time', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1969 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1970 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1971 |
## wifi-phy.h: ns3::Time ns3::WifiPhy::CalculateTxDuration(uint32_t size, ns3::WifiMode payloadMode, ns3::WifiPreamble preamble) const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1972 |
cls.add_method('CalculateTxDuration', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1973 |
'ns3::Time', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1974 |
[param('uint32_t', 'size'), param('ns3::WifiMode', 'payloadMode'), param('ns3::WifiPreamble', 'preamble')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1975 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1976 |
## wifi-phy.h: uint32_t ns3::WifiPhy::GetNModes() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1977 |
cls.add_method('GetNModes', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1978 |
'uint32_t', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1979 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1980 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1981 |
## wifi-phy.h: ns3::WifiMode ns3::WifiPhy::GetMode(uint32_t mode) const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1982 |
cls.add_method('GetMode', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1983 |
'ns3::WifiMode', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1984 |
[param('uint32_t', 'mode')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1985 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1986 |
## wifi-phy.h: double ns3::WifiPhy::CalculateSnr(ns3::WifiMode txMode, double ber) const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1987 |
cls.add_method('CalculateSnr', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1988 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1989 |
[param('ns3::WifiMode', 'txMode'), param('double', 'ber')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1990 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1991 |
## wifi-phy.h: ns3::Ptr<ns3::WifiChannel> ns3::WifiPhy::GetChannel() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1992 |
cls.add_method('GetChannel', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1993 |
'ns3::Ptr< ns3::WifiChannel >', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1994 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
1995 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
4044
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
1996 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get6mba() [member function] |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
1997 |
cls.add_method('Get6mba', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
1998 |
'ns3::WifiMode', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
1999 |
[], |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2000 |
is_static=True) |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2001 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get9mba() [member function] |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2002 |
cls.add_method('Get9mba', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2003 |
'ns3::WifiMode', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2004 |
[], |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2005 |
is_static=True) |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2006 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get12mba() [member function] |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2007 |
cls.add_method('Get12mba', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2008 |
'ns3::WifiMode', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2009 |
[], |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2010 |
is_static=True) |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2011 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get18mba() [member function] |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2012 |
cls.add_method('Get18mba', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2013 |
'ns3::WifiMode', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2014 |
[], |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2015 |
is_static=True) |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2016 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get24mba() [member function] |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2017 |
cls.add_method('Get24mba', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2018 |
'ns3::WifiMode', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2019 |
[], |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2020 |
is_static=True) |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2021 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get36mba() [member function] |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2022 |
cls.add_method('Get36mba', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2023 |
'ns3::WifiMode', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2024 |
[], |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2025 |
is_static=True) |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2026 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get48mba() [member function] |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2027 |
cls.add_method('Get48mba', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2028 |
'ns3::WifiMode', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2029 |
[], |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2030 |
is_static=True) |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2031 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get54mba() [member function] |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2032 |
cls.add_method('Get54mba', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2033 |
'ns3::WifiMode', |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2034 |
[], |
1c47d32e8503
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4038
diff
changeset
|
2035 |
is_static=True) |
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2036 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get1mbb() [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2037 |
cls.add_method('Get1mbb', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2038 |
'ns3::WifiMode', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2039 |
[], |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2040 |
is_static=True) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2041 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get2mbb() [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2042 |
cls.add_method('Get2mbb', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2043 |
'ns3::WifiMode', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2044 |
[], |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2045 |
is_static=True) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2046 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get5_5mbb() [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2047 |
cls.add_method('Get5_5mbb', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2048 |
'ns3::WifiMode', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2049 |
[], |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2050 |
is_static=True) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2051 |
## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get11mbb() [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2052 |
cls.add_method('Get11mbb', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2053 |
'ns3::WifiMode', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2054 |
[], |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2055 |
is_static=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2056 |
## wifi-phy.h: void ns3::WifiPhy::NotifyTxBegin(ns3::Ptr<ns3::Packet const> packet) [member function] |
4265
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2057 |
cls.add_method('NotifyTxBegin', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2058 |
'void', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2059 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2060 |
## wifi-phy.h: void ns3::WifiPhy::NotifyTxEnd(ns3::Ptr<ns3::Packet const> packet) [member function] |
4265
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2061 |
cls.add_method('NotifyTxEnd', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2062 |
'void', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2063 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2064 |
## wifi-phy.h: void ns3::WifiPhy::NotifyTxDrop(ns3::Ptr<ns3::Packet const> packet) [member function] |
4265
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2065 |
cls.add_method('NotifyTxDrop', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2066 |
'void', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2067 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2068 |
## wifi-phy.h: void ns3::WifiPhy::NotifyRxBegin(ns3::Ptr<ns3::Packet const> packet) [member function] |
4265
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2069 |
cls.add_method('NotifyRxBegin', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2070 |
'void', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2071 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2072 |
## wifi-phy.h: void ns3::WifiPhy::NotifyRxEnd(ns3::Ptr<ns3::Packet const> packet) [member function] |
4265
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2073 |
cls.add_method('NotifyRxEnd', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2074 |
'void', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2075 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2076 |
## wifi-phy.h: void ns3::WifiPhy::NotifyRxDrop(ns3::Ptr<ns3::Packet const> packet) [member function] |
4265
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2077 |
cls.add_method('NotifyRxDrop', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2078 |
'void', |
5f837915710a
remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents:
4241
diff
changeset
|
2079 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2080 |
## wifi-phy.h: void ns3::WifiPhy::NotifyPromiscSniffRx(ns3::Ptr<ns3::Packet const> packet, uint16_t channelFreqMhz, uint32_t rate, bool isShortPreamble, double signalDbm, double noiseDbm) [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2081 |
cls.add_method('NotifyPromiscSniffRx', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2082 |
'void', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2083 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint16_t', 'channelFreqMhz'), param('uint32_t', 'rate'), param('bool', 'isShortPreamble'), param('double', 'signalDbm'), param('double', 'noiseDbm')]) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2084 |
## wifi-phy.h: void ns3::WifiPhy::NotifyPromiscSniffTx(ns3::Ptr<ns3::Packet const> packet, uint16_t channelFreqMhz, uint32_t rate, bool isShortPreamble) [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2085 |
cls.add_method('NotifyPromiscSniffTx', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2086 |
'void', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
2087 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint16_t', 'channelFreqMhz'), param('uint32_t', 'rate'), param('bool', 'isShortPreamble')]) |
3408 | 2088 |
return |
2089 |
||
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2090 |
def register_Ns3WifiRemoteStationManager_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2091 |
## wifi-remote-station-manager.h: ns3::WifiRemoteStationManager::WifiRemoteStationManager(ns3::WifiRemoteStationManager const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2092 |
cls.add_constructor([param('ns3::WifiRemoteStationManager const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2093 |
## wifi-remote-station-manager.h: static ns3::TypeId ns3::WifiRemoteStationManager::GetTypeId() [member function] |
3474
dac9146297c8
Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3468
diff
changeset
|
2094 |
cls.add_method('GetTypeId', |
dac9146297c8
Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3468
diff
changeset
|
2095 |
'ns3::TypeId', |
dac9146297c8
Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3468
diff
changeset
|
2096 |
[], |
dac9146297c8
Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3468
diff
changeset
|
2097 |
is_static=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2098 |
## wifi-remote-station-manager.h: ns3::WifiRemoteStationManager::WifiRemoteStationManager() [constructor] |
3474
dac9146297c8
Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3468
diff
changeset
|
2099 |
cls.add_constructor([]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2100 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::SetupPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2101 |
cls.add_method('SetupPhy', |
3474
dac9146297c8
Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3468
diff
changeset
|
2102 |
'void', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2103 |
[param('ns3::Ptr< ns3::WifiPhy >', 'phy')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2104 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2105 |
## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStationManager::GetMaxSsrc() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2106 |
cls.add_method('GetMaxSsrc', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2107 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2108 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2109 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2110 |
## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStationManager::GetMaxSlrc() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2111 |
cls.add_method('GetMaxSlrc', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2112 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2113 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2114 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2115 |
## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStationManager::GetRtsCtsThreshold() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2116 |
cls.add_method('GetRtsCtsThreshold', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2117 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2118 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2119 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2120 |
## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStationManager::GetFragmentationThreshold() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2121 |
cls.add_method('GetFragmentationThreshold', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2122 |
'uint32_t', |
3474
dac9146297c8
Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3468
diff
changeset
|
2123 |
[], |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2124 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2125 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::SetMaxSsrc(uint32_t maxSsrc) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2126 |
cls.add_method('SetMaxSsrc', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2127 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2128 |
[param('uint32_t', 'maxSsrc')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2129 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::SetMaxSlrc(uint32_t maxSlrc) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2130 |
cls.add_method('SetMaxSlrc', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2131 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2132 |
[param('uint32_t', 'maxSlrc')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2133 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::SetRtsCtsThreshold(uint32_t threshold) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2134 |
cls.add_method('SetRtsCtsThreshold', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2135 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2136 |
[param('uint32_t', 'threshold')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2137 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::SetFragmentationThreshold(uint32_t threshold) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2138 |
cls.add_method('SetFragmentationThreshold', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2139 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2140 |
[param('uint32_t', 'threshold')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2141 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::Reset() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2142 |
cls.add_method('Reset', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2143 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2144 |
[]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2145 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::AddBasicMode(ns3::WifiMode mode) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2146 |
cls.add_method('AddBasicMode', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
2147 |
'void', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2148 |
[param('ns3::WifiMode', 'mode')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2149 |
## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStationManager::GetDefaultMode() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2150 |
cls.add_method('GetDefaultMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2151 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2152 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2153 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2154 |
## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStationManager::GetNBasicModes() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2155 |
cls.add_method('GetNBasicModes', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2156 |
'uint32_t', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2157 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2158 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2159 |
## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStationManager::GetBasicMode(uint32_t i) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2160 |
cls.add_method('GetBasicMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2161 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2162 |
[param('uint32_t', 'i')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2163 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2164 |
## wifi-remote-station-manager.h: __gnu_cxx::__normal_iterator<const ns3::WifiMode*,std::vector<ns3::WifiMode, std::allocator<ns3::WifiMode> > > ns3::WifiRemoteStationManager::BeginBasicModes() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2165 |
cls.add_method('BeginBasicModes', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2166 |
'__gnu_cxx::__normal_iterator< ns3::WifiMode const *, std::vector< ns3::WifiMode > >', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2167 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2168 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2169 |
## wifi-remote-station-manager.h: __gnu_cxx::__normal_iterator<const ns3::WifiMode*,std::vector<ns3::WifiMode, std::allocator<ns3::WifiMode> > > ns3::WifiRemoteStationManager::EndBasicModes() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2170 |
cls.add_method('EndBasicModes', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2171 |
'__gnu_cxx::__normal_iterator< ns3::WifiMode const *, std::vector< ns3::WifiMode > >', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2172 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2173 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2174 |
## wifi-remote-station-manager.h: bool ns3::WifiRemoteStationManager::IsLowLatency() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2175 |
cls.add_method('IsLowLatency', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2176 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2177 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2178 |
is_const=True) |
4341
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2179 |
## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStationManager::GetNonUnicastMode() const [member function] |
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2180 |
cls.add_method('GetNonUnicastMode', |
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2181 |
'ns3::WifiMode', |
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2182 |
[], |
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2183 |
is_const=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2184 |
## wifi-remote-station-manager.h: ns3::WifiRemoteStation * ns3::WifiRemoteStationManager::Lookup(ns3::Mac48Address address) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2185 |
cls.add_method('Lookup', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2186 |
'ns3::WifiRemoteStation *', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2187 |
[param('ns3::Mac48Address', 'address')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2188 |
## wifi-remote-station-manager.h: ns3::WifiRemoteStation * ns3::WifiRemoteStationManager::LookupNonUnicast() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2189 |
cls.add_method('LookupNonUnicast', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2190 |
'ns3::WifiRemoteStation *', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2191 |
[]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2192 |
## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::DoDispose() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2193 |
cls.add_method('DoDispose', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
2194 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
2195 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
2196 |
visibility='protected', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2197 |
## wifi-remote-station-manager.h: ns3::WifiRemoteStation * ns3::WifiRemoteStationManager::CreateStation() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2198 |
cls.add_method('CreateStation', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2199 |
'ns3::WifiRemoteStation *', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
2200 |
[], |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2201 |
is_pure_virtual=True, visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2202 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2203 |
|
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2204 |
def register_Ns3YansWifiPhy_methods(root_module, cls): |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2205 |
## yans-wifi-phy.h: static ns3::TypeId ns3::YansWifiPhy::GetTypeId() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2206 |
cls.add_method('GetTypeId', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2207 |
'ns3::TypeId', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2208 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2209 |
is_static=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2210 |
## yans-wifi-phy.h: ns3::YansWifiPhy::YansWifiPhy() [constructor] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2211 |
cls.add_constructor([]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2212 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetChannel(ns3::Ptr<ns3::YansWifiChannel> channel) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2213 |
cls.add_method('SetChannel', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2214 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2215 |
[param('ns3::Ptr< ns3::YansWifiChannel >', 'channel')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2216 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::StartReceivePacket(ns3::Ptr<ns3::Packet> packet, double rxPowerDbm, ns3::WifiMode mode, ns3::WifiPreamble preamble) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2217 |
cls.add_method('StartReceivePacket', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2218 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2219 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('double', 'rxPowerDbm'), param('ns3::WifiMode', 'mode'), param('ns3::WifiPreamble', 'preamble')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2220 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetStandard(ns3::WifiPhyStandard standard) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2221 |
cls.add_method('SetStandard', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2222 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2223 |
[param('ns3::WifiPhyStandard', 'standard')]) |
4316
6fb63a0725a8
scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4279
diff
changeset
|
2224 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetRxNoiseFigure(double noiseFigureDb) [member function] |
6fb63a0725a8
scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4279
diff
changeset
|
2225 |
cls.add_method('SetRxNoiseFigure', |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2226 |
'void', |
4316
6fb63a0725a8
scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4279
diff
changeset
|
2227 |
[param('double', 'noiseFigureDb')]) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2228 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetTxPowerStart(double start) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2229 |
cls.add_method('SetTxPowerStart', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2230 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2231 |
[param('double', 'start')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2232 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetTxPowerEnd(double end) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2233 |
cls.add_method('SetTxPowerEnd', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2234 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2235 |
[param('double', 'end')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2236 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetNTxPower(uint32_t n) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2237 |
cls.add_method('SetNTxPower', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2238 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2239 |
[param('uint32_t', 'n')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2240 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetTxGain(double gain) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2241 |
cls.add_method('SetTxGain', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2242 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2243 |
[param('double', 'gain')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2244 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetRxGain(double gain) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2245 |
cls.add_method('SetRxGain', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2246 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2247 |
[param('double', 'gain')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2248 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetEdThreshold(double threshold) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2249 |
cls.add_method('SetEdThreshold', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2250 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2251 |
[param('double', 'threshold')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2252 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetCcaMode1Threshold(double threshold) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2253 |
cls.add_method('SetCcaMode1Threshold', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2254 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2255 |
[param('double', 'threshold')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2256 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetErrorRateModel(ns3::Ptr<ns3::ErrorRateModel> rate) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2257 |
cls.add_method('SetErrorRateModel', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2258 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2259 |
[param('ns3::Ptr< ns3::ErrorRateModel >', 'rate')]) |
3912
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2260 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetDevice(ns3::Ptr<ns3::Object> device) [member function] |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2261 |
cls.add_method('SetDevice', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2262 |
'void', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2263 |
[param('ns3::Ptr< ns3::Object >', 'device')]) |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2264 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetMobility(ns3::Ptr<ns3::Object> mobility) [member function] |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2265 |
cls.add_method('SetMobility', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2266 |
'void', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2267 |
[param('ns3::Ptr< ns3::Object >', 'mobility')]) |
4316
6fb63a0725a8
scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4279
diff
changeset
|
2268 |
## yans-wifi-phy.h: double ns3::YansWifiPhy::GetRxNoiseFigure() const [member function] |
6fb63a0725a8
scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4279
diff
changeset
|
2269 |
cls.add_method('GetRxNoiseFigure', |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2270 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2271 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2272 |
is_const=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2273 |
## yans-wifi-phy.h: double ns3::YansWifiPhy::GetTxGain() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2274 |
cls.add_method('GetTxGain', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2275 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2276 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2277 |
is_const=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2278 |
## yans-wifi-phy.h: double ns3::YansWifiPhy::GetRxGain() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2279 |
cls.add_method('GetRxGain', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2280 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2281 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2282 |
is_const=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2283 |
## yans-wifi-phy.h: double ns3::YansWifiPhy::GetEdThreshold() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2284 |
cls.add_method('GetEdThreshold', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2285 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2286 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2287 |
is_const=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2288 |
## yans-wifi-phy.h: double ns3::YansWifiPhy::GetCcaMode1Threshold() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2289 |
cls.add_method('GetCcaMode1Threshold', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2290 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2291 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2292 |
is_const=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2293 |
## yans-wifi-phy.h: ns3::Ptr<ns3::ErrorRateModel> ns3::YansWifiPhy::GetErrorRateModel() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2294 |
cls.add_method('GetErrorRateModel', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2295 |
'ns3::Ptr< ns3::ErrorRateModel >', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2296 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2297 |
is_const=True) |
3912
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2298 |
## yans-wifi-phy.h: ns3::Ptr<ns3::Object> ns3::YansWifiPhy::GetDevice() const [member function] |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2299 |
cls.add_method('GetDevice', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2300 |
'ns3::Ptr< ns3::Object >', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2301 |
[], |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2302 |
is_const=True) |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2303 |
## yans-wifi-phy.h: ns3::Ptr<ns3::Object> ns3::YansWifiPhy::GetMobility() [member function] |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2304 |
cls.add_method('GetMobility', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2305 |
'ns3::Ptr< ns3::Object >', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2306 |
[]) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2307 |
## yans-wifi-phy.h: double ns3::YansWifiPhy::GetTxPowerStart() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2308 |
cls.add_method('GetTxPowerStart', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2309 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2310 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2311 |
is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2312 |
## yans-wifi-phy.h: double ns3::YansWifiPhy::GetTxPowerEnd() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2313 |
cls.add_method('GetTxPowerEnd', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2314 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2315 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2316 |
is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2317 |
## yans-wifi-phy.h: uint32_t ns3::YansWifiPhy::GetNTxPower() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2318 |
cls.add_method('GetNTxPower', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2319 |
'uint32_t', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2320 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2321 |
is_const=True, is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
2322 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetReceiveOkCallback(ns3::Callback<void,ns3::Ptr<ns3::Packet>,double,ns3::WifiMode,ns3::WifiPreamble,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function] |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2323 |
cls.add_method('SetReceiveOkCallback', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2324 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
2325 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, double, ns3::WifiMode, ns3::WifiPreamble, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2326 |
is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
2327 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SetReceiveErrorCallback(ns3::Callback<void,ns3::Ptr<const ns3::Packet>,double,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function] |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2328 |
cls.add_method('SetReceiveErrorCallback', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2329 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
2330 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, double, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2331 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2332 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::SendPacket(ns3::Ptr<ns3::Packet const> packet, ns3::WifiMode mode, ns3::WifiPreamble preamble, uint8_t txPowerLevel) [member function] |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2333 |
cls.add_method('SendPacket', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2334 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2335 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::WifiMode', 'mode'), param('ns3::WifiPreamble', 'preamble'), param('uint8_t', 'txPowerLevel')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2336 |
is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2337 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::RegisterListener(ns3::WifiPhyListener * listener) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2338 |
cls.add_method('RegisterListener', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2339 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2340 |
[param('ns3::WifiPhyListener *', 'listener')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2341 |
is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2342 |
## yans-wifi-phy.h: bool ns3::YansWifiPhy::IsStateCcaBusy() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2343 |
cls.add_method('IsStateCcaBusy', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2344 |
'bool', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2345 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2346 |
is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2347 |
## yans-wifi-phy.h: bool ns3::YansWifiPhy::IsStateIdle() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2348 |
cls.add_method('IsStateIdle', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2349 |
'bool', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2350 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2351 |
is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2352 |
## yans-wifi-phy.h: bool ns3::YansWifiPhy::IsStateBusy() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2353 |
cls.add_method('IsStateBusy', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2354 |
'bool', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2355 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2356 |
is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2357 |
## yans-wifi-phy.h: bool ns3::YansWifiPhy::IsStateSync() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2358 |
cls.add_method('IsStateSync', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2359 |
'bool', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2360 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2361 |
is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2362 |
## yans-wifi-phy.h: bool ns3::YansWifiPhy::IsStateTx() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2363 |
cls.add_method('IsStateTx', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2364 |
'bool', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2365 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2366 |
is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2367 |
## yans-wifi-phy.h: ns3::Time ns3::YansWifiPhy::GetStateDuration() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2368 |
cls.add_method('GetStateDuration', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2369 |
'ns3::Time', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2370 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2371 |
is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2372 |
## yans-wifi-phy.h: ns3::Time ns3::YansWifiPhy::GetDelayUntilIdle() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2373 |
cls.add_method('GetDelayUntilIdle', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2374 |
'ns3::Time', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2375 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2376 |
is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2377 |
## yans-wifi-phy.h: ns3::Time ns3::YansWifiPhy::GetLastRxStartTime() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2378 |
cls.add_method('GetLastRxStartTime', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2379 |
'ns3::Time', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2380 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2381 |
is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2382 |
## yans-wifi-phy.h: ns3::Time ns3::YansWifiPhy::CalculateTxDuration(uint32_t size, ns3::WifiMode payloadMode, ns3::WifiPreamble preamble) const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2383 |
cls.add_method('CalculateTxDuration', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2384 |
'ns3::Time', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2385 |
[param('uint32_t', 'size'), param('ns3::WifiMode', 'payloadMode'), param('ns3::WifiPreamble', 'preamble')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2386 |
is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2387 |
## yans-wifi-phy.h: uint32_t ns3::YansWifiPhy::GetNModes() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2388 |
cls.add_method('GetNModes', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2389 |
'uint32_t', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2390 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2391 |
is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2392 |
## yans-wifi-phy.h: ns3::WifiMode ns3::YansWifiPhy::GetMode(uint32_t mode) const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2393 |
cls.add_method('GetMode', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2394 |
'ns3::WifiMode', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2395 |
[param('uint32_t', 'mode')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2396 |
is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2397 |
## yans-wifi-phy.h: double ns3::YansWifiPhy::CalculateSnr(ns3::WifiMode txMode, double ber) const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2398 |
cls.add_method('CalculateSnr', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2399 |
'double', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2400 |
[param('ns3::WifiMode', 'txMode'), param('double', 'ber')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2401 |
is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2402 |
## yans-wifi-phy.h: ns3::Ptr<ns3::WifiChannel> ns3::YansWifiPhy::GetChannel() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2403 |
cls.add_method('GetChannel', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2404 |
'ns3::Ptr< ns3::WifiChannel >', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2405 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2406 |
is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2407 |
## yans-wifi-phy.h: void ns3::YansWifiPhy::DoDispose() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2408 |
cls.add_method('DoDispose', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2409 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2410 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2411 |
visibility='private', is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2412 |
return |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
2413 |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2414 |
def register_Ns3AarfWifiRemoteStation_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2415 |
## aarf-wifi-manager.h: ns3::AarfWifiRemoteStation::AarfWifiRemoteStation(ns3::AarfWifiRemoteStation const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2416 |
cls.add_constructor([param('ns3::AarfWifiRemoteStation const &', 'arg0')]) |
4341
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2417 |
## aarf-wifi-manager.h: ns3::AarfWifiRemoteStation::AarfWifiRemoteStation(ns3::Ptr<ns3::AarfWifiManager> stations) [constructor] |
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2418 |
cls.add_constructor([param('ns3::Ptr< ns3::AarfWifiManager >', 'stations')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2419 |
## aarf-wifi-manager.h: void ns3::AarfWifiRemoteStation::ReportRecoveryFailure() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2420 |
cls.add_method('ReportRecoveryFailure', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
2421 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
2422 |
[], |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2423 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2424 |
## aarf-wifi-manager.h: void ns3::AarfWifiRemoteStation::ReportFailure() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2425 |
cls.add_method('ReportFailure', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
2426 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
2427 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
2428 |
visibility='private', is_virtual=True) |
4341
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2429 |
## aarf-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::AarfWifiRemoteStation::GetManager() const [member function] |
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2430 |
cls.add_method('GetManager', |
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2431 |
'ns3::Ptr< ns3::WifiRemoteStationManager >', |
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2432 |
[], |
4593d476d627
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4323
diff
changeset
|
2433 |
is_const=True, visibility='private', is_virtual=True) |
3408 | 2434 |
return |
2435 |
||
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2436 |
def register_Ns3AdhocWifiMac_methods(root_module, cls): |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2437 |
## adhoc-wifi-mac.h: static ns3::TypeId ns3::AdhocWifiMac::GetTypeId() [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2438 |
cls.add_method('GetTypeId', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2439 |
'ns3::TypeId', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2440 |
[], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2441 |
is_static=True) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2442 |
## adhoc-wifi-mac.h: ns3::AdhocWifiMac::AdhocWifiMac() [constructor] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2443 |
cls.add_constructor([]) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2444 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetSlot(ns3::Time slotTime) [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2445 |
cls.add_method('SetSlot', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2446 |
'void', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2447 |
[param('ns3::Time', 'slotTime')], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2448 |
is_virtual=True) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2449 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetSifs(ns3::Time sifs) [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2450 |
cls.add_method('SetSifs', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2451 |
'void', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2452 |
[param('ns3::Time', 'sifs')], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2453 |
is_virtual=True) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2454 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2455 |
cls.add_method('SetEifsNoDifs', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2456 |
'void', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2457 |
[param('ns3::Time', 'eifsNoDifs')], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2458 |
is_virtual=True) |
3600
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2459 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function] |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2460 |
cls.add_method('SetAckTimeout', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2461 |
'void', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2462 |
[param('ns3::Time', 'ackTimeout')], |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2463 |
is_virtual=True) |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2464 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function] |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2465 |
cls.add_method('SetCtsTimeout', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2466 |
'void', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2467 |
[param('ns3::Time', 'ctsTimeout')], |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2468 |
is_virtual=True) |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2469 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetPifs(ns3::Time pifs) [member function] |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2470 |
cls.add_method('SetPifs', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2471 |
'void', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2472 |
[param('ns3::Time', 'pifs')], |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2473 |
is_virtual=True) |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2474 |
## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetSlot() const [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2475 |
cls.add_method('GetSlot', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2476 |
'ns3::Time', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2477 |
[], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2478 |
is_const=True, is_virtual=True) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2479 |
## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetSifs() const [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2480 |
cls.add_method('GetSifs', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2481 |
'ns3::Time', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2482 |
[], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2483 |
is_const=True, is_virtual=True) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2484 |
## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetEifsNoDifs() const [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2485 |
cls.add_method('GetEifsNoDifs', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2486 |
'ns3::Time', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2487 |
[], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2488 |
is_const=True, is_virtual=True) |
3600
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2489 |
## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetAckTimeout() const [member function] |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2490 |
cls.add_method('GetAckTimeout', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2491 |
'ns3::Time', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2492 |
[], |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2493 |
is_const=True, is_virtual=True) |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2494 |
## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetCtsTimeout() const [member function] |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2495 |
cls.add_method('GetCtsTimeout', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2496 |
'ns3::Time', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2497 |
[], |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2498 |
is_const=True, is_virtual=True) |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2499 |
## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetPifs() const [member function] |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2500 |
cls.add_method('GetPifs', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2501 |
'ns3::Time', |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2502 |
[], |
5888dfe3f245
move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3584
diff
changeset
|
2503 |
is_const=True, is_virtual=True) |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2504 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2505 |
cls.add_method('SetWifiPhy', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2506 |
'void', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2507 |
[param('ns3::Ptr< ns3::WifiPhy >', 'phy')], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2508 |
is_virtual=True) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2509 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2510 |
cls.add_method('SetWifiRemoteStationManager', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2511 |
'void', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2512 |
[param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2513 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2514 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function] |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2515 |
cls.add_method('Enqueue', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2516 |
'void', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2517 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2518 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2519 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function] |
3604
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
2520 |
cls.add_method('Enqueue', |
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
2521 |
'void', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2522 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], |
3604
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
2523 |
is_virtual=True) |
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
2524 |
## adhoc-wifi-mac.h: bool ns3::AdhocWifiMac::SupportsSendFrom() const [member function] |
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
2525 |
cls.add_method('SupportsSendFrom', |
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
2526 |
'bool', |
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
2527 |
[], |
a84d99890289
implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3600
diff
changeset
|
2528 |
is_const=True, is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
2529 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function] |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2530 |
cls.add_method('SetForwardUpCallback', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2531 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
2532 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2533 |
is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
2534 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::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] |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2535 |
cls.add_method('SetLinkUpCallback', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2536 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
2537 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2538 |
is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
2539 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function] |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2540 |
cls.add_method('SetLinkDownCallback', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2541 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
2542 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2543 |
is_virtual=True) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2544 |
## adhoc-wifi-mac.h: ns3::Mac48Address ns3::AdhocWifiMac::GetAddress() const [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2545 |
cls.add_method('GetAddress', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2546 |
'ns3::Mac48Address', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2547 |
[], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2548 |
is_const=True, is_virtual=True) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2549 |
## adhoc-wifi-mac.h: ns3::Ssid ns3::AdhocWifiMac::GetSsid() const [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2550 |
cls.add_method('GetSsid', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2551 |
'ns3::Ssid', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2552 |
[], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2553 |
is_const=True, is_virtual=True) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2554 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetAddress(ns3::Mac48Address address) [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2555 |
cls.add_method('SetAddress', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2556 |
'void', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2557 |
[param('ns3::Mac48Address', 'address')], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2558 |
is_virtual=True) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2559 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetSsid(ns3::Ssid ssid) [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2560 |
cls.add_method('SetSsid', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2561 |
'void', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2562 |
[param('ns3::Ssid', 'ssid')], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2563 |
is_virtual=True) |
3743
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
2564 |
## adhoc-wifi-mac.h: ns3::Mac48Address ns3::AdhocWifiMac::GetBssid() const [member function] |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
2565 |
cls.add_method('GetBssid', |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
2566 |
'ns3::Mac48Address', |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
2567 |
[], |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
2568 |
is_const=True, is_virtual=True) |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2569 |
## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::DoDispose() [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2570 |
cls.add_method('DoDispose', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2571 |
'void', |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2572 |
[], |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2573 |
visibility='private', is_virtual=True) |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2574 |
return |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
2575 |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2576 |
def register_Ns3AmrrWifiManager_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2577 |
## amrr-wifi-manager.h: ns3::AmrrWifiManager::AmrrWifiManager(ns3::AmrrWifiManager const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2578 |
cls.add_constructor([param('ns3::AmrrWifiManager const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2579 |
## amrr-wifi-manager.h: static ns3::TypeId ns3::AmrrWifiManager::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2580 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2581 |
'ns3::TypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2582 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2583 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2584 |
## amrr-wifi-manager.h: ns3::AmrrWifiManager::AmrrWifiManager() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2585 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2586 |
## amrr-wifi-manager.h: ns3::WifiRemoteStation * ns3::AmrrWifiManager::CreateStation() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2587 |
cls.add_method('CreateStation', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2588 |
'ns3::WifiRemoteStation *', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2589 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2590 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2591 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2592 |
|
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2593 |
def register_Ns3AmsduSubframeHeader_methods(root_module, cls): |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2594 |
## amsdu-subframe-header.h: ns3::AmsduSubframeHeader::AmsduSubframeHeader(ns3::AmsduSubframeHeader const & arg0) [copy constructor] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2595 |
cls.add_constructor([param('ns3::AmsduSubframeHeader const &', 'arg0')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2596 |
## amsdu-subframe-header.h: ns3::AmsduSubframeHeader::AmsduSubframeHeader() [constructor] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2597 |
cls.add_constructor([]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2598 |
## amsdu-subframe-header.h: static ns3::TypeId ns3::AmsduSubframeHeader::GetTypeId() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2599 |
cls.add_method('GetTypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2600 |
'ns3::TypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2601 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2602 |
is_static=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2603 |
## amsdu-subframe-header.h: ns3::TypeId ns3::AmsduSubframeHeader::GetInstanceTypeId() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2604 |
cls.add_method('GetInstanceTypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2605 |
'ns3::TypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2606 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2607 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2608 |
## amsdu-subframe-header.h: void ns3::AmsduSubframeHeader::Print(std::ostream & os) const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2609 |
cls.add_method('Print', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2610 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2611 |
[param('std::ostream &', 'os')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2612 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2613 |
## amsdu-subframe-header.h: uint32_t ns3::AmsduSubframeHeader::GetSerializedSize() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2614 |
cls.add_method('GetSerializedSize', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2615 |
'uint32_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2616 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2617 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2618 |
## amsdu-subframe-header.h: void ns3::AmsduSubframeHeader::Serialize(ns3::Buffer::Iterator start) const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2619 |
cls.add_method('Serialize', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2620 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2621 |
[param('ns3::Buffer::Iterator', 'start')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2622 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2623 |
## amsdu-subframe-header.h: uint32_t ns3::AmsduSubframeHeader::Deserialize(ns3::Buffer::Iterator start) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2624 |
cls.add_method('Deserialize', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2625 |
'uint32_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2626 |
[param('ns3::Buffer::Iterator', 'start')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2627 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2628 |
## amsdu-subframe-header.h: void ns3::AmsduSubframeHeader::SetDestinationAddr(ns3::Mac48Address to) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2629 |
cls.add_method('SetDestinationAddr', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2630 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2631 |
[param('ns3::Mac48Address', 'to')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2632 |
## amsdu-subframe-header.h: void ns3::AmsduSubframeHeader::SetSourceAddr(ns3::Mac48Address to) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2633 |
cls.add_method('SetSourceAddr', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2634 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2635 |
[param('ns3::Mac48Address', 'to')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2636 |
## amsdu-subframe-header.h: void ns3::AmsduSubframeHeader::SetLength(uint16_t arg0) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2637 |
cls.add_method('SetLength', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2638 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2639 |
[param('uint16_t', 'arg0')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2640 |
## amsdu-subframe-header.h: ns3::Mac48Address ns3::AmsduSubframeHeader::GetDestinationAddr() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2641 |
cls.add_method('GetDestinationAddr', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2642 |
'ns3::Mac48Address', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2643 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2644 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2645 |
## amsdu-subframe-header.h: ns3::Mac48Address ns3::AmsduSubframeHeader::GetSourceAddr() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2646 |
cls.add_method('GetSourceAddr', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2647 |
'ns3::Mac48Address', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2648 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2649 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2650 |
## amsdu-subframe-header.h: uint16_t ns3::AmsduSubframeHeader::GetLength() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2651 |
cls.add_method('GetLength', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2652 |
'uint16_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2653 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2654 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2655 |
return |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2656 |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2657 |
def register_Ns3ArfWifiManager_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2658 |
## arf-wifi-manager.h: ns3::ArfWifiManager::ArfWifiManager(ns3::ArfWifiManager const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2659 |
cls.add_constructor([param('ns3::ArfWifiManager const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2660 |
## arf-wifi-manager.h: static ns3::TypeId ns3::ArfWifiManager::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2661 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2662 |
'ns3::TypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2663 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2664 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2665 |
## arf-wifi-manager.h: ns3::ArfWifiManager::ArfWifiManager() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2666 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2667 |
## arf-wifi-manager.h: ns3::WifiRemoteStation * ns3::ArfWifiManager::CreateStation() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2668 |
cls.add_method('CreateStation', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2669 |
'ns3::WifiRemoteStation *', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2670 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2671 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2672 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2673 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2674 |
def register_Ns3ConstantRateWifiManager_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2675 |
## constant-rate-wifi-manager.h: ns3::ConstantRateWifiManager::ConstantRateWifiManager(ns3::ConstantRateWifiManager const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2676 |
cls.add_constructor([param('ns3::ConstantRateWifiManager const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2677 |
## constant-rate-wifi-manager.h: static ns3::TypeId ns3::ConstantRateWifiManager::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2678 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2679 |
'ns3::TypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2680 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2681 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2682 |
## constant-rate-wifi-manager.h: ns3::ConstantRateWifiManager::ConstantRateWifiManager() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2683 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2684 |
## constant-rate-wifi-manager.h: ns3::WifiMode ns3::ConstantRateWifiManager::GetDataMode() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2685 |
cls.add_method('GetDataMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2686 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2687 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2688 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2689 |
## constant-rate-wifi-manager.h: ns3::WifiMode ns3::ConstantRateWifiManager::GetCtlMode() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2690 |
cls.add_method('GetCtlMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2691 |
'ns3::WifiMode', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2692 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2693 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2694 |
## constant-rate-wifi-manager.h: ns3::WifiRemoteStation * ns3::ConstantRateWifiManager::CreateStation() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2695 |
cls.add_method('CreateStation', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2696 |
'ns3::WifiRemoteStation *', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2697 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2698 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2699 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2700 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2701 |
def register_Ns3ConstantSpeedPropagationDelayModel_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2702 |
## propagation-delay-model.h: ns3::ConstantSpeedPropagationDelayModel::ConstantSpeedPropagationDelayModel(ns3::ConstantSpeedPropagationDelayModel const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2703 |
cls.add_constructor([param('ns3::ConstantSpeedPropagationDelayModel const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2704 |
## propagation-delay-model.h: static ns3::TypeId ns3::ConstantSpeedPropagationDelayModel::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2705 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2706 |
'ns3::TypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2707 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2708 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2709 |
## propagation-delay-model.h: ns3::ConstantSpeedPropagationDelayModel::ConstantSpeedPropagationDelayModel() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2710 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2711 |
## propagation-delay-model.h: ns3::Time ns3::ConstantSpeedPropagationDelayModel::GetDelay(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2712 |
cls.add_method('GetDelay', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2713 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2714 |
[param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2715 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2716 |
## propagation-delay-model.h: void ns3::ConstantSpeedPropagationDelayModel::SetSpeed(double speed) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2717 |
cls.add_method('SetSpeed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2718 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2719 |
[param('double', 'speed')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2720 |
## propagation-delay-model.h: double ns3::ConstantSpeedPropagationDelayModel::GetSpeed() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2721 |
cls.add_method('GetSpeed', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2722 |
'double', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2723 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2724 |
is_const=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2725 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
2726 |
|
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2727 |
def register_Ns3DcaTxop_methods(root_module, cls): |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2728 |
## dca-txop.h: static ns3::TypeId ns3::DcaTxop::GetTypeId() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2729 |
cls.add_method('GetTypeId', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2730 |
'ns3::TypeId', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2731 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2732 |
is_static=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2733 |
## dca-txop.h: ns3::DcaTxop::DcaTxop() [constructor] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2734 |
cls.add_constructor([]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2735 |
## dca-txop.h: void ns3::DcaTxop::SetLow(ns3::Ptr<ns3::MacLow> low) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2736 |
cls.add_method('SetLow', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2737 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2738 |
[param('ns3::Ptr< ns3::MacLow >', 'low')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2739 |
## dca-txop.h: void ns3::DcaTxop::SetManager(ns3::DcfManager * manager) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2740 |
cls.add_method('SetManager', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2741 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2742 |
[param('ns3::DcfManager *', 'manager')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2743 |
## dca-txop.h: void ns3::DcaTxop::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> remoteManager) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2744 |
cls.add_method('SetWifiRemoteStationManager', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2745 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2746 |
[param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'remoteManager')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2747 |
## dca-txop.h: void ns3::DcaTxop::SetTxOkCallback(ns3::Callback<void, ns3::WifiMacHeader const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2748 |
cls.add_method('SetTxOkCallback', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2749 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2750 |
[param('ns3::Callback< void, ns3::WifiMacHeader const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2751 |
## dca-txop.h: void ns3::DcaTxop::SetTxFailedCallback(ns3::Callback<void, ns3::WifiMacHeader const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2752 |
cls.add_method('SetTxFailedCallback', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2753 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2754 |
[param('ns3::Callback< void, ns3::WifiMacHeader const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2755 |
## dca-txop.h: void ns3::DcaTxop::SetMaxQueueSize(uint32_t size) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2756 |
cls.add_method('SetMaxQueueSize', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2757 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2758 |
[param('uint32_t', 'size')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2759 |
## dca-txop.h: void ns3::DcaTxop::SetMaxQueueDelay(ns3::Time delay) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2760 |
cls.add_method('SetMaxQueueDelay', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2761 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2762 |
[param('ns3::Time', 'delay')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2763 |
## dca-txop.h: void ns3::DcaTxop::SetMinCw(uint32_t minCw) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2764 |
cls.add_method('SetMinCw', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2765 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2766 |
[param('uint32_t', 'minCw')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2767 |
## dca-txop.h: void ns3::DcaTxop::SetMaxCw(uint32_t maxCw) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2768 |
cls.add_method('SetMaxCw', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2769 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2770 |
[param('uint32_t', 'maxCw')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2771 |
## dca-txop.h: void ns3::DcaTxop::SetAifsn(uint32_t aifsn) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2772 |
cls.add_method('SetAifsn', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2773 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2774 |
[param('uint32_t', 'aifsn')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2775 |
## dca-txop.h: uint32_t ns3::DcaTxop::GetMinCw() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2776 |
cls.add_method('GetMinCw', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2777 |
'uint32_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2778 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2779 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2780 |
## dca-txop.h: uint32_t ns3::DcaTxop::GetMaxCw() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2781 |
cls.add_method('GetMaxCw', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2782 |
'uint32_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2783 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2784 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2785 |
## dca-txop.h: uint32_t ns3::DcaTxop::GetAifsn() const [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2786 |
cls.add_method('GetAifsn', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2787 |
'uint32_t', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2788 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2789 |
is_const=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2790 |
## dca-txop.h: void ns3::DcaTxop::Queue(ns3::Ptr<ns3::Packet const> packet, ns3::WifiMacHeader const & hdr) [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2791 |
cls.add_method('Queue', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2792 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2793 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::WifiMacHeader const &', 'hdr')]) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2794 |
## dca-txop.h: void ns3::DcaTxop::DoDispose() [member function] |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2795 |
cls.add_method('DoDispose', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2796 |
'void', |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2797 |
[], |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2798 |
visibility='private', is_virtual=True) |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2799 |
return |
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
2800 |
|
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2801 |
def register_Ns3EdcaTxopN_methods(root_module, cls): |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2802 |
## edca-txop-n.h: static ns3::TypeId ns3::EdcaTxopN::GetTypeId() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2803 |
cls.add_method('GetTypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2804 |
'ns3::TypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2805 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2806 |
is_static=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2807 |
## edca-txop-n.h: ns3::EdcaTxopN::EdcaTxopN() [constructor] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2808 |
cls.add_constructor([]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2809 |
## edca-txop-n.h: void ns3::EdcaTxopN::DoDispose() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2810 |
cls.add_method('DoDispose', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2811 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2812 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2813 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2814 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetLow(ns3::Ptr<ns3::MacLow> low) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2815 |
cls.add_method('SetLow', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2816 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2817 |
[param('ns3::Ptr< ns3::MacLow >', 'low')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2818 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetTxMiddle(ns3::MacTxMiddle * txMiddle) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2819 |
cls.add_method('SetTxMiddle', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2820 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2821 |
[param('ns3::MacTxMiddle *', 'txMiddle')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2822 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetManager(ns3::DcfManager * manager) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2823 |
cls.add_method('SetManager', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2824 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2825 |
[param('ns3::DcfManager *', 'manager')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2826 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetTxOkCallback(ns3::Callback<void, ns3::WifiMacHeader const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2827 |
cls.add_method('SetTxOkCallback', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2828 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2829 |
[param('ns3::Callback< void, ns3::WifiMacHeader const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2830 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetTxFailedCallback(ns3::Callback<void, ns3::WifiMacHeader const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2831 |
cls.add_method('SetTxFailedCallback', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2832 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2833 |
[param('ns3::Callback< void, ns3::WifiMacHeader const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2834 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> remoteManager) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2835 |
cls.add_method('SetWifiRemoteStationManager', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2836 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2837 |
[param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'remoteManager')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2838 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetTypeOfStation(ns3::TypeOfStation type) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2839 |
cls.add_method('SetTypeOfStation', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2840 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2841 |
[param('ns3::TypeOfStation', 'type')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2842 |
## edca-txop-n.h: ns3::TypeOfStation ns3::EdcaTxopN::GetTypeOfStation() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2843 |
cls.add_method('GetTypeOfStation', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2844 |
'ns3::TypeOfStation', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2845 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2846 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2847 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetMaxQueueSize(uint32_t size) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2848 |
cls.add_method('SetMaxQueueSize', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2849 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2850 |
[param('uint32_t', 'size')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2851 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetMaxQueueDelay(ns3::Time delay) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2852 |
cls.add_method('SetMaxQueueDelay', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2853 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2854 |
[param('ns3::Time', 'delay')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2855 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetMinCw(uint32_t minCw) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2856 |
cls.add_method('SetMinCw', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2857 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2858 |
[param('uint32_t', 'minCw')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2859 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetMaxCw(uint32_t maxCw) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2860 |
cls.add_method('SetMaxCw', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2861 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2862 |
[param('uint32_t', 'maxCw')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2863 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetAifsn(uint32_t aifsn) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2864 |
cls.add_method('SetAifsn', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2865 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2866 |
[param('uint32_t', 'aifsn')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2867 |
## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetMinCw() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2868 |
cls.add_method('GetMinCw', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2869 |
'uint32_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2870 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2871 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2872 |
## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetMaxCw() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2873 |
cls.add_method('GetMaxCw', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2874 |
'uint32_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2875 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2876 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2877 |
## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetAifsn() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2878 |
cls.add_method('GetAifsn', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2879 |
'uint32_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2880 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2881 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2882 |
## edca-txop-n.h: ns3::Ptr<ns3::MacLow> ns3::EdcaTxopN::Low() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2883 |
cls.add_method('Low', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2884 |
'ns3::Ptr< ns3::MacLow >', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2885 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2886 |
## edca-txop-n.h: ns3::Ptr<ns3::MsduAggregator> ns3::EdcaTxopN::GetMsduAggregator() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2887 |
cls.add_method('GetMsduAggregator', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2888 |
'ns3::Ptr< ns3::MsduAggregator >', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2889 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2890 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2891 |
## edca-txop-n.h: bool ns3::EdcaTxopN::NeedsAccess() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2892 |
cls.add_method('NeedsAccess', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2893 |
'bool', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2894 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2895 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2896 |
## edca-txop-n.h: void ns3::EdcaTxopN::NotifyAccessGranted() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2897 |
cls.add_method('NotifyAccessGranted', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2898 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2899 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2900 |
## edca-txop-n.h: void ns3::EdcaTxopN::NotifyInternalCollision() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2901 |
cls.add_method('NotifyInternalCollision', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2902 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2903 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2904 |
## edca-txop-n.h: void ns3::EdcaTxopN::NotifyCollision() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2905 |
cls.add_method('NotifyCollision', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2906 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2907 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2908 |
## edca-txop-n.h: void ns3::EdcaTxopN::GotCts(double snr, ns3::WifiMode txMode) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2909 |
cls.add_method('GotCts', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2910 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2911 |
[param('double', 'snr'), param('ns3::WifiMode', 'txMode')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2912 |
## edca-txop-n.h: void ns3::EdcaTxopN::MissedCts() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2913 |
cls.add_method('MissedCts', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2914 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2915 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2916 |
## edca-txop-n.h: void ns3::EdcaTxopN::GotAck(double snr, ns3::WifiMode txMode) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2917 |
cls.add_method('GotAck', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2918 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2919 |
[param('double', 'snr'), param('ns3::WifiMode', 'txMode')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2920 |
## edca-txop-n.h: void ns3::EdcaTxopN::MissedAck() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2921 |
cls.add_method('MissedAck', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2922 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2923 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2924 |
## edca-txop-n.h: void ns3::EdcaTxopN::StartNext() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2925 |
cls.add_method('StartNext', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2926 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2927 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2928 |
## edca-txop-n.h: void ns3::EdcaTxopN::Cancel() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2929 |
cls.add_method('Cancel', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2930 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2931 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2932 |
## edca-txop-n.h: void ns3::EdcaTxopN::RestartAccessIfNeeded() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2933 |
cls.add_method('RestartAccessIfNeeded', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2934 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2935 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2936 |
## edca-txop-n.h: void ns3::EdcaTxopN::StartAccessIfNeeded() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2937 |
cls.add_method('StartAccessIfNeeded', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2938 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2939 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2940 |
## edca-txop-n.h: bool ns3::EdcaTxopN::NeedRts() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2941 |
cls.add_method('NeedRts', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2942 |
'bool', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2943 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2944 |
## edca-txop-n.h: bool ns3::EdcaTxopN::NeedRtsRetransmission() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2945 |
cls.add_method('NeedRtsRetransmission', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2946 |
'bool', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2947 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2948 |
## edca-txop-n.h: bool ns3::EdcaTxopN::NeedDataRetransmission() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2949 |
cls.add_method('NeedDataRetransmission', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2950 |
'bool', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2951 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2952 |
## edca-txop-n.h: bool ns3::EdcaTxopN::NeedFragmentation() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2953 |
cls.add_method('NeedFragmentation', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2954 |
'bool', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2955 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2956 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2957 |
## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetNextFragmentSize() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2958 |
cls.add_method('GetNextFragmentSize', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2959 |
'uint32_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2960 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2961 |
## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetFragmentSize() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2962 |
cls.add_method('GetFragmentSize', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2963 |
'uint32_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2964 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2965 |
## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetFragmentOffset() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2966 |
cls.add_method('GetFragmentOffset', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2967 |
'uint32_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2968 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2969 |
## edca-txop-n.h: ns3::WifiRemoteStation * ns3::EdcaTxopN::GetStation(ns3::Mac48Address to) const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2970 |
cls.add_method('GetStation', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2971 |
'ns3::WifiRemoteStation *', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2972 |
[param('ns3::Mac48Address', 'to')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2973 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2974 |
## edca-txop-n.h: bool ns3::EdcaTxopN::IsLastFragment() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2975 |
cls.add_method('IsLastFragment', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2976 |
'bool', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2977 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2978 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2979 |
## edca-txop-n.h: void ns3::EdcaTxopN::NextFragment() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2980 |
cls.add_method('NextFragment', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2981 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2982 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2983 |
## edca-txop-n.h: ns3::Ptr<ns3::Packet> ns3::EdcaTxopN::GetFragmentPacket(ns3::WifiMacHeader * hdr) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2984 |
cls.add_method('GetFragmentPacket', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2985 |
'ns3::Ptr< ns3::Packet >', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2986 |
[param('ns3::WifiMacHeader *', 'hdr')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2987 |
## edca-txop-n.h: void ns3::EdcaTxopN::Queue(ns3::Ptr<ns3::Packet const> packet, ns3::WifiMacHeader const & hdr) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2988 |
cls.add_method('Queue', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2989 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2990 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::WifiMacHeader const &', 'hdr')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2991 |
## edca-txop-n.h: void ns3::EdcaTxopN::SetMsduAggregator(ns3::Ptr<ns3::MsduAggregator> aggr) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2992 |
cls.add_method('SetMsduAggregator', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2993 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2994 |
[param('ns3::Ptr< ns3::MsduAggregator >', 'aggr')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2995 |
return |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
2996 |
|
3912
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
2997 |
def register_Ns3ErrorRateModel_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2998 |
## error-rate-model.h: ns3::ErrorRateModel::ErrorRateModel(ns3::ErrorRateModel const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
2999 |
cls.add_constructor([param('ns3::ErrorRateModel const &', 'arg0')]) |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
3000 |
## error-rate-model.h: ns3::ErrorRateModel::ErrorRateModel() [constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
3001 |
cls.add_constructor([]) |
3912
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3002 |
## error-rate-model.h: static ns3::TypeId ns3::ErrorRateModel::GetTypeId() [member function] |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3003 |
cls.add_method('GetTypeId', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3004 |
'ns3::TypeId', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3005 |
[], |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3006 |
is_static=True) |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3007 |
## error-rate-model.h: double ns3::ErrorRateModel::CalculateSnr(ns3::WifiMode txMode, double ber) const [member function] |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3008 |
cls.add_method('CalculateSnr', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3009 |
'double', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3010 |
[param('ns3::WifiMode', 'txMode'), param('double', 'ber')], |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3011 |
is_const=True) |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3012 |
## error-rate-model.h: double ns3::ErrorRateModel::GetChunkSuccessRate(ns3::WifiMode mode, double snr, uint32_t nbits) const [member function] |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3013 |
cls.add_method('GetChunkSuccessRate', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3014 |
'double', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3015 |
[param('ns3::WifiMode', 'mode'), param('double', 'snr'), param('uint32_t', 'nbits')], |
4038
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
3016 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3912
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3017 |
return |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3018 |
|
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3019 |
def register_Ns3FixedRssLossModel_methods(root_module, cls): |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3020 |
## propagation-loss-model.h: static ns3::TypeId ns3::FixedRssLossModel::GetTypeId() [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3021 |
cls.add_method('GetTypeId', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3022 |
'ns3::TypeId', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3023 |
[], |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3024 |
is_static=True) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3025 |
## propagation-loss-model.h: ns3::FixedRssLossModel::FixedRssLossModel() [constructor] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3026 |
cls.add_constructor([]) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3027 |
## propagation-loss-model.h: void ns3::FixedRssLossModel::SetRss(double rss) [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3028 |
cls.add_method('SetRss', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3029 |
'void', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3030 |
[param('double', 'rss')]) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3031 |
## propagation-loss-model.h: double ns3::FixedRssLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3032 |
cls.add_method('DoCalcRxPower', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3033 |
'double', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3034 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3035 |
is_const=True, visibility='private', is_virtual=True) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3036 |
return |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3037 |
|
3408 | 3038 |
def register_Ns3FriisPropagationLossModel_methods(root_module, cls): |
3039 |
## propagation-loss-model.h: static ns3::TypeId ns3::FriisPropagationLossModel::GetTypeId() [member function] |
|
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3040 |
cls.add_method('GetTypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3041 |
'ns3::TypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3042 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3043 |
is_static=True) |
3408 | 3044 |
## propagation-loss-model.h: ns3::FriisPropagationLossModel::FriisPropagationLossModel() [constructor] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3045 |
cls.add_constructor([]) |
3408 | 3046 |
## propagation-loss-model.h: void ns3::FriisPropagationLossModel::SetLambda(double frequency, double speed) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3047 |
cls.add_method('SetLambda', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3048 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3049 |
[param('double', 'frequency'), param('double', 'speed')]) |
3408 | 3050 |
## propagation-loss-model.h: void ns3::FriisPropagationLossModel::SetLambda(double lambda) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3051 |
cls.add_method('SetLambda', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3052 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3053 |
[param('double', 'lambda')]) |
3408 | 3054 |
## propagation-loss-model.h: void ns3::FriisPropagationLossModel::SetSystemLoss(double systemLoss) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3055 |
cls.add_method('SetSystemLoss', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3056 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3057 |
[param('double', 'systemLoss')]) |
3414
48d69d8eac38
Rescan API; fix and enable the socket unit test, as it now works.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3408
diff
changeset
|
3058 |
## propagation-loss-model.h: void ns3::FriisPropagationLossModel::SetMinDistance(double minDistance) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3059 |
cls.add_method('SetMinDistance', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3060 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3061 |
[param('double', 'minDistance')]) |
3414
48d69d8eac38
Rescan API; fix and enable the socket unit test, as it now works.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3408
diff
changeset
|
3062 |
## propagation-loss-model.h: double ns3::FriisPropagationLossModel::GetMinDistance() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3063 |
cls.add_method('GetMinDistance', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3064 |
'double', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3065 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3066 |
is_const=True) |
3408 | 3067 |
## propagation-loss-model.h: double ns3::FriisPropagationLossModel::GetLambda() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3068 |
cls.add_method('GetLambda', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3069 |
'double', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3070 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3071 |
is_const=True) |
3408 | 3072 |
## propagation-loss-model.h: double ns3::FriisPropagationLossModel::GetSystemLoss() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3073 |
cls.add_method('GetSystemLoss', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3074 |
'double', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3075 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3076 |
is_const=True) |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
3077 |
## propagation-loss-model.h: double ns3::FriisPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
3078 |
cls.add_method('DoCalcRxPower', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3079 |
'double', |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
3080 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
3907
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
3081 |
is_const=True, visibility='private', is_virtual=True) |
3408 | 3082 |
return |
3083 |
||
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3084 |
def register_Ns3IdealWifiManager_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
3085 |
## ideal-wifi-manager.h: ns3::IdealWifiManager::IdealWifiManager(ns3::IdealWifiManager const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
3086 |
cls.add_constructor([param('ns3::IdealWifiManager const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3087 |
## ideal-wifi-manager.h: static ns3::TypeId ns3::IdealWifiManager::GetTypeId() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3088 |
cls.add_method('GetTypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3089 |
'ns3::TypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3090 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3091 |
is_static=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3092 |
## ideal-wifi-manager.h: ns3::IdealWifiManager::IdealWifiManager() [constructor] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3093 |
cls.add_constructor([]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3094 |
## ideal-wifi-manager.h: void ns3::IdealWifiManager::SetupPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3095 |
cls.add_method('SetupPhy', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3096 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3097 |
[param('ns3::Ptr< ns3::WifiPhy >', 'phy')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3098 |
is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3099 |
## ideal-wifi-manager.h: double ns3::IdealWifiManager::GetSnrThreshold(ns3::WifiMode mode) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3100 |
cls.add_method('GetSnrThreshold', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3101 |
'double', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3102 |
[param('ns3::WifiMode', 'mode')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3103 |
is_const=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3104 |
## ideal-wifi-manager.h: void ns3::IdealWifiManager::AddModeSnrThreshold(ns3::WifiMode mode, double ber) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3105 |
cls.add_method('AddModeSnrThreshold', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3106 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3107 |
[param('ns3::WifiMode', 'mode'), param('double', 'ber')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3108 |
## ideal-wifi-manager.h: ns3::WifiRemoteStation * ns3::IdealWifiManager::CreateStation() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3109 |
cls.add_method('CreateStation', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3110 |
'ns3::WifiRemoteStation *', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3111 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3112 |
visibility='private', is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3113 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3114 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3115 |
def register_Ns3JakesPropagationLossModel_methods(root_module, cls): |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3116 |
## jakes-propagation-loss-model.h: static ns3::TypeId ns3::JakesPropagationLossModel::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3117 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3118 |
'ns3::TypeId', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3119 |
[], |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3120 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3121 |
## jakes-propagation-loss-model.h: ns3::JakesPropagationLossModel::JakesPropagationLossModel() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3122 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3123 |
## jakes-propagation-loss-model.h: void ns3::JakesPropagationLossModel::SetNRays(uint8_t nRays) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3124 |
cls.add_method('SetNRays', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3125 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3126 |
[param('uint8_t', 'nRays')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3127 |
## jakes-propagation-loss-model.h: void ns3::JakesPropagationLossModel::SetNOscillators(uint8_t nOscillators) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3128 |
cls.add_method('SetNOscillators', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3129 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3130 |
[param('uint8_t', 'nOscillators')]) |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
3131 |
## jakes-propagation-loss-model.h: double ns3::JakesPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
3132 |
cls.add_method('DoCalcRxPower', |
3907
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
3133 |
'double', |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
3134 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
3907
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
3135 |
is_const=True, visibility='private', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3136 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3137 |
|
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3138 |
def register_Ns3LogDistancePropagationLossModel_methods(root_module, cls): |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3139 |
## propagation-loss-model.h: static ns3::TypeId ns3::LogDistancePropagationLossModel::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3140 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3141 |
'ns3::TypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3142 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3143 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3144 |
## propagation-loss-model.h: ns3::LogDistancePropagationLossModel::LogDistancePropagationLossModel() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3145 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3146 |
## propagation-loss-model.h: void ns3::LogDistancePropagationLossModel::SetPathLossExponent(double n) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3147 |
cls.add_method('SetPathLossExponent', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3148 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3149 |
[param('double', 'n')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3150 |
## propagation-loss-model.h: double ns3::LogDistancePropagationLossModel::GetPathLossExponent() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3151 |
cls.add_method('GetPathLossExponent', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3152 |
'double', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3153 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3154 |
is_const=True) |
3912
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3155 |
## propagation-loss-model.h: void ns3::LogDistancePropagationLossModel::SetReference(double referenceDistance, double referenceLoss) [member function] |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3156 |
cls.add_method('SetReference', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3157 |
'void', |
3912
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
3158 |
[param('double', 'referenceDistance'), param('double', 'referenceLoss')]) |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
3159 |
## propagation-loss-model.h: double ns3::LogDistancePropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
3160 |
cls.add_method('DoCalcRxPower', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3161 |
'double', |
4060
200676be351f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4044
diff
changeset
|
3162 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
3907
56e477db65b2
add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3906
diff
changeset
|
3163 |
is_const=True, visibility='private', is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3164 |
return |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3165 |
|
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3166 |
def register_Ns3MsduAggregator_methods(root_module, cls): |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3167 |
## msdu-aggregator.h: ns3::MsduAggregator::MsduAggregator(ns3::MsduAggregator const & arg0) [copy constructor] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3168 |
cls.add_constructor([param('ns3::MsduAggregator const &', 'arg0')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3169 |
## msdu-aggregator.h: ns3::MsduAggregator::MsduAggregator() [constructor] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3170 |
cls.add_constructor([]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3171 |
## msdu-aggregator.h: static ns3::TypeId ns3::MsduAggregator::GetTypeId() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3172 |
cls.add_method('GetTypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3173 |
'ns3::TypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3174 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3175 |
is_static=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3176 |
## msdu-aggregator.h: bool ns3::MsduAggregator::Aggregate(ns3::Ptr<ns3::Packet const> packet, ns3::Ptr<ns3::Packet> aggregatedPacket, ns3::Mac48Address src, ns3::Mac48Address dest) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3177 |
cls.add_method('Aggregate', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3178 |
'bool', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3179 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Ptr< ns3::Packet >', 'aggregatedPacket'), param('ns3::Mac48Address', 'src'), param('ns3::Mac48Address', 'dest')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3180 |
is_pure_virtual=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3181 |
## msdu-aggregator.h: static std::list<std::pair<ns3::Ptr<ns3::Packet>, ns3::AmsduSubframeHeader>, std::allocator<std::pair<ns3::Ptr<ns3::Packet>, ns3::AmsduSubframeHeader> > > ns3::MsduAggregator::Deaggregate(ns3::Ptr<ns3::Packet> aggregatedPacket) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3182 |
cls.add_method('Deaggregate', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3183 |
'std::list< std::pair< ns3::Ptr< ns3::Packet >, ns3::AmsduSubframeHeader > >', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3184 |
[param('ns3::Ptr< ns3::Packet >', 'aggregatedPacket')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3185 |
is_static=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3186 |
return |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3187 |
|
4496
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3188 |
def register_Ns3NakagamiPropagationLossModel_methods(root_module, cls): |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3189 |
## propagation-loss-model.h: static ns3::TypeId ns3::NakagamiPropagationLossModel::GetTypeId() [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3190 |
cls.add_method('GetTypeId', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3191 |
'ns3::TypeId', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3192 |
[], |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3193 |
is_static=True) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3194 |
## propagation-loss-model.h: ns3::NakagamiPropagationLossModel::NakagamiPropagationLossModel() [constructor] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3195 |
cls.add_constructor([]) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3196 |
## propagation-loss-model.h: double ns3::NakagamiPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function] |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3197 |
cls.add_method('DoCalcRxPower', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3198 |
'double', |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3199 |
[param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3200 |
is_const=True, visibility='private', is_virtual=True) |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3201 |
return |
6f372b890919
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4474
diff
changeset
|
3202 |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3203 |
def register_Ns3NqapWifiMac_methods(root_module, cls): |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3204 |
## nqap-wifi-mac.h: static ns3::TypeId ns3::NqapWifiMac::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3205 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3206 |
'ns3::TypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3207 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3208 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3209 |
## nqap-wifi-mac.h: ns3::NqapWifiMac::NqapWifiMac() [constructor] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3210 |
cls.add_constructor([]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3211 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetSlot(ns3::Time slotTime) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3212 |
cls.add_method('SetSlot', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3213 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3214 |
[param('ns3::Time', 'slotTime')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3215 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3216 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetSifs(ns3::Time sifs) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3217 |
cls.add_method('SetSifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3218 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3219 |
[param('ns3::Time', 'sifs')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3220 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3221 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3222 |
cls.add_method('SetEifsNoDifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3223 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3224 |
[param('ns3::Time', 'eifsNoDifs')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3225 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3226 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3227 |
cls.add_method('SetAckTimeout', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3228 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3229 |
[param('ns3::Time', 'ackTimeout')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3230 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3231 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3232 |
cls.add_method('SetCtsTimeout', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3233 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3234 |
[param('ns3::Time', 'ctsTimeout')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3235 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3236 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetPifs(ns3::Time pifs) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3237 |
cls.add_method('SetPifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3238 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3239 |
[param('ns3::Time', 'pifs')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3240 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3241 |
## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetSlot() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3242 |
cls.add_method('GetSlot', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3243 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3244 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3245 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3246 |
## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetSifs() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3247 |
cls.add_method('GetSifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3248 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3249 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3250 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3251 |
## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetEifsNoDifs() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3252 |
cls.add_method('GetEifsNoDifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3253 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3254 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3255 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3256 |
## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetAckTimeout() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3257 |
cls.add_method('GetAckTimeout', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3258 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3259 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3260 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3261 |
## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetCtsTimeout() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3262 |
cls.add_method('GetCtsTimeout', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3263 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3264 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3265 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3266 |
## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetPifs() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3267 |
cls.add_method('GetPifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3268 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3269 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3270 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3271 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3272 |
cls.add_method('SetWifiPhy', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3273 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3274 |
[param('ns3::Ptr< ns3::WifiPhy >', 'phy')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3275 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3276 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3277 |
cls.add_method('SetWifiRemoteStationManager', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3278 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3279 |
[param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3280 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
3281 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3282 |
cls.add_method('Enqueue', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3283 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3284 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3285 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
3286 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3287 |
cls.add_method('Enqueue', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3288 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3289 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3290 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3291 |
## nqap-wifi-mac.h: bool ns3::NqapWifiMac::SupportsSendFrom() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3292 |
cls.add_method('SupportsSendFrom', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3293 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3294 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3295 |
is_const=True, is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3296 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3297 |
cls.add_method('SetForwardUpCallback', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3298 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3299 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3300 |
is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3301 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::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] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3302 |
cls.add_method('SetLinkUpCallback', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3303 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3304 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3305 |
is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3306 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3307 |
cls.add_method('SetLinkDownCallback', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3308 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3309 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3310 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3311 |
## nqap-wifi-mac.h: ns3::Mac48Address ns3::NqapWifiMac::GetAddress() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3312 |
cls.add_method('GetAddress', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3313 |
'ns3::Mac48Address', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3314 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3315 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3316 |
## nqap-wifi-mac.h: ns3::Ssid ns3::NqapWifiMac::GetSsid() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3317 |
cls.add_method('GetSsid', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3318 |
'ns3::Ssid', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3319 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3320 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3321 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetAddress(ns3::Mac48Address address) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3322 |
cls.add_method('SetAddress', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3323 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3324 |
[param('ns3::Mac48Address', 'address')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3325 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3326 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetSsid(ns3::Ssid ssid) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3327 |
cls.add_method('SetSsid', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3328 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3329 |
[param('ns3::Ssid', 'ssid')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3330 |
is_virtual=True) |
3743
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
3331 |
## nqap-wifi-mac.h: ns3::Mac48Address ns3::NqapWifiMac::GetBssid() const [member function] |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
3332 |
cls.add_method('GetBssid', |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
3333 |
'ns3::Mac48Address', |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
3334 |
[], |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
3335 |
is_const=True, is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3336 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetBeaconInterval(ns3::Time interval) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3337 |
cls.add_method('SetBeaconInterval', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3338 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3339 |
[param('ns3::Time', 'interval')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3340 |
## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetBeaconInterval() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3341 |
cls.add_method('GetBeaconInterval', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3342 |
'ns3::Time', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3343 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3344 |
is_const=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3345 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::StartBeaconing() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3346 |
cls.add_method('StartBeaconing', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3347 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3348 |
[]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3349 |
## nqap-wifi-mac.h: void ns3::NqapWifiMac::DoDispose() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3350 |
cls.add_method('DoDispose', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3351 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3352 |
[], |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3353 |
visibility='private', is_virtual=True) |
3408 | 3354 |
return |
3355 |
||
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3356 |
def register_Ns3NqstaWifiMac_methods(root_module, cls): |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3357 |
## nqsta-wifi-mac.h: static ns3::TypeId ns3::NqstaWifiMac::GetTypeId() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3358 |
cls.add_method('GetTypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3359 |
'ns3::TypeId', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3360 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3361 |
is_static=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3362 |
## nqsta-wifi-mac.h: ns3::NqstaWifiMac::NqstaWifiMac() [constructor] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3363 |
cls.add_constructor([]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3364 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetSlot(ns3::Time slotTime) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3365 |
cls.add_method('SetSlot', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3366 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3367 |
[param('ns3::Time', 'slotTime')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3368 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3369 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetSifs(ns3::Time sifs) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3370 |
cls.add_method('SetSifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3371 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3372 |
[param('ns3::Time', 'sifs')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3373 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3374 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3375 |
cls.add_method('SetEifsNoDifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3376 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3377 |
[param('ns3::Time', 'eifsNoDifs')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3378 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3379 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3380 |
cls.add_method('SetAckTimeout', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3381 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3382 |
[param('ns3::Time', 'ackTimeout')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3383 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3384 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3385 |
cls.add_method('SetCtsTimeout', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3386 |
'void', |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3387 |
[param('ns3::Time', 'ctsTimeout')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3388 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3389 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetPifs(ns3::Time pifs) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3390 |
cls.add_method('SetPifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3391 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3392 |
[param('ns3::Time', 'pifs')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3393 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3394 |
## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetSlot() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3395 |
cls.add_method('GetSlot', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3396 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3397 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3398 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3399 |
## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetSifs() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3400 |
cls.add_method('GetSifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3401 |
'ns3::Time', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3402 |
[], |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3403 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3404 |
## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetEifsNoDifs() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3405 |
cls.add_method('GetEifsNoDifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3406 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3407 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3408 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3409 |
## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetAckTimeout() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3410 |
cls.add_method('GetAckTimeout', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3411 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3412 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3413 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3414 |
## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetCtsTimeout() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3415 |
cls.add_method('GetCtsTimeout', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3416 |
'ns3::Time', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3417 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3418 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3419 |
## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetPifs() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3420 |
cls.add_method('GetPifs', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3421 |
'ns3::Time', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3422 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3423 |
is_const=True, is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3424 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3425 |
cls.add_method('SetWifiPhy', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3426 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3427 |
[param('ns3::Ptr< ns3::WifiPhy >', 'phy')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3428 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3429 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3430 |
cls.add_method('SetWifiRemoteStationManager', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3431 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3432 |
[param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3433 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
3434 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3435 |
cls.add_method('Enqueue', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3436 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3437 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3438 |
is_virtual=True) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
3439 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3440 |
cls.add_method('Enqueue', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3441 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3442 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3443 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3444 |
## nqsta-wifi-mac.h: bool ns3::NqstaWifiMac::SupportsSendFrom() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3445 |
cls.add_method('SupportsSendFrom', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3446 |
'bool', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3447 |
[], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3448 |
is_const=True, is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3449 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3450 |
cls.add_method('SetForwardUpCallback', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3451 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3452 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3453 |
is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3454 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::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] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3455 |
cls.add_method('SetLinkUpCallback', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3456 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3457 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3458 |
is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3459 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function] |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3460 |
cls.add_method('SetLinkDownCallback', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3461 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
3462 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3463 |
is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3464 |
## nqsta-wifi-mac.h: ns3::Mac48Address ns3::NqstaWifiMac::GetAddress() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3465 |
cls.add_method('GetAddress', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3466 |
'ns3::Mac48Address', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3467 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3468 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3469 |
## nqsta-wifi-mac.h: ns3::Ssid ns3::NqstaWifiMac::GetSsid() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3470 |
cls.add_method('GetSsid', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3471 |
'ns3::Ssid', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3472 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3473 |
is_const=True, is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3474 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetAddress(ns3::Mac48Address address) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3475 |
cls.add_method('SetAddress', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3476 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3477 |
[param('ns3::Mac48Address', 'address')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3478 |
is_virtual=True) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3479 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetSsid(ns3::Ssid ssid) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3480 |
cls.add_method('SetSsid', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3481 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3482 |
[param('ns3::Ssid', 'ssid')], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3483 |
is_virtual=True) |
3743
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
3484 |
## nqsta-wifi-mac.h: ns3::Mac48Address ns3::NqstaWifiMac::GetBssid() const [member function] |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
3485 |
cls.add_method('GetBssid', |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
3486 |
'ns3::Mac48Address', |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
3487 |
[], |
d0cf214d050c
Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3731
diff
changeset
|
3488 |
is_const=True, is_virtual=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3489 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetMaxMissedBeacons(uint32_t missed) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3490 |
cls.add_method('SetMaxMissedBeacons', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3491 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3492 |
[param('uint32_t', 'missed')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3493 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetProbeRequestTimeout(ns3::Time timeout) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3494 |
cls.add_method('SetProbeRequestTimeout', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3495 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3496 |
[param('ns3::Time', 'timeout')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3497 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetAssocRequestTimeout(ns3::Time timeout) [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3498 |
cls.add_method('SetAssocRequestTimeout', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3499 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3500 |
[param('ns3::Time', 'timeout')]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3501 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::StartActiveAssociation() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3502 |
cls.add_method('StartActiveAssociation', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3503 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3504 |
[]) |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3505 |
## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::DoDispose() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3506 |
cls.add_method('DoDispose', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3507 |
'void', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3508 |
[], |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3509 |
visibility='private', is_virtual=True) |
3408 | 3510 |
return |
3511 |
||
3512 |
def register_Ns3OnoeWifiManager_methods(root_module, cls): |
|
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
3513 |
## onoe-wifi-manager.h: ns3::OnoeWifiManager::OnoeWifiManager(ns3::OnoeWifiManager const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
3514 |
cls.add_constructor([param('ns3::OnoeWifiManager const &', 'arg0')]) |
3408 | 3515 |
## onoe-wifi-manager.h: static ns3::TypeId ns3::OnoeWifiManager::GetTypeId() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3516 |
cls.add_method('GetTypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3517 |
'ns3::TypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3518 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3519 |
is_static=True) |
3408 | 3520 |
## onoe-wifi-manager.h: ns3::OnoeWifiManager::OnoeWifiManager() [constructor] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3521 |
cls.add_constructor([]) |
3408 | 3522 |
## onoe-wifi-manager.h: ns3::WifiRemoteStation * ns3::OnoeWifiManager::CreateStation() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3523 |
cls.add_method('CreateStation', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3524 |
'ns3::WifiRemoteStation *', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3525 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3526 |
visibility='private', is_virtual=True) |
3408 | 3527 |
return |
3528 |
||
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3529 |
def register_Ns3QadhocWifiMac_methods(root_module, cls): |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3530 |
## qadhoc-wifi-mac.h: static ns3::TypeId ns3::QadhocWifiMac::GetTypeId() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3531 |
cls.add_method('GetTypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3532 |
'ns3::TypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3533 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3534 |
is_static=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3535 |
## qadhoc-wifi-mac.h: ns3::QadhocWifiMac::QadhocWifiMac() [constructor] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3536 |
cls.add_constructor([]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3537 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetSlot(ns3::Time slotTime) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3538 |
cls.add_method('SetSlot', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3539 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3540 |
[param('ns3::Time', 'slotTime')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3541 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3542 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetSifs(ns3::Time sifs) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3543 |
cls.add_method('SetSifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3544 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3545 |
[param('ns3::Time', 'sifs')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3546 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3547 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3548 |
cls.add_method('SetEifsNoDifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3549 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3550 |
[param('ns3::Time', 'eifsNoDifs')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3551 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3552 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3553 |
cls.add_method('SetAckTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3554 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3555 |
[param('ns3::Time', 'ackTimeout')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3556 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3557 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3558 |
cls.add_method('SetCtsTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3559 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3560 |
[param('ns3::Time', 'ctsTimeout')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3561 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3562 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetPifs(ns3::Time pifs) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3563 |
cls.add_method('SetPifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3564 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3565 |
[param('ns3::Time', 'pifs')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3566 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3567 |
## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetSlot() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3568 |
cls.add_method('GetSlot', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3569 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3570 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3571 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3572 |
## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetSifs() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3573 |
cls.add_method('GetSifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3574 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3575 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3576 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3577 |
## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetEifsNoDifs() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3578 |
cls.add_method('GetEifsNoDifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3579 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3580 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3581 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3582 |
## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetAckTimeout() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3583 |
cls.add_method('GetAckTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3584 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3585 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3586 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3587 |
## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetCtsTimeout() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3588 |
cls.add_method('GetCtsTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3589 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3590 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3591 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3592 |
## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetPifs() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3593 |
cls.add_method('GetPifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3594 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3595 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3596 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3597 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3598 |
cls.add_method('SetWifiPhy', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3599 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3600 |
[param('ns3::Ptr< ns3::WifiPhy >', 'phy')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3601 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3602 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3603 |
cls.add_method('SetWifiRemoteStationManager', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3604 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3605 |
[param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3606 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3607 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3608 |
cls.add_method('Enqueue', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3609 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3610 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3611 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3612 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3613 |
cls.add_method('Enqueue', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3614 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3615 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3616 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3617 |
## qadhoc-wifi-mac.h: bool ns3::QadhocWifiMac::SupportsSendFrom() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3618 |
cls.add_method('SupportsSendFrom', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3619 |
'bool', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3620 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3621 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3622 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3623 |
cls.add_method('SetForwardUpCallback', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3624 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3625 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3626 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3627 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::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] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3628 |
cls.add_method('SetLinkUpCallback', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3629 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3630 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3631 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3632 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3633 |
cls.add_method('SetLinkDownCallback', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3634 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3635 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3636 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3637 |
## qadhoc-wifi-mac.h: ns3::Mac48Address ns3::QadhocWifiMac::GetAddress() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3638 |
cls.add_method('GetAddress', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3639 |
'ns3::Mac48Address', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3640 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3641 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3642 |
## qadhoc-wifi-mac.h: ns3::Ssid ns3::QadhocWifiMac::GetSsid() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3643 |
cls.add_method('GetSsid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3644 |
'ns3::Ssid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3645 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3646 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3647 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetAddress(ns3::Mac48Address address) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3648 |
cls.add_method('SetAddress', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3649 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3650 |
[param('ns3::Mac48Address', 'address')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3651 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3652 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetSsid(ns3::Ssid ssid) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3653 |
cls.add_method('SetSsid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3654 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3655 |
[param('ns3::Ssid', 'ssid')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3656 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3657 |
## qadhoc-wifi-mac.h: ns3::Mac48Address ns3::QadhocWifiMac::GetBssid() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3658 |
cls.add_method('GetBssid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3659 |
'ns3::Mac48Address', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3660 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3661 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3662 |
## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::DoDispose() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3663 |
cls.add_method('DoDispose', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3664 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3665 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3666 |
visibility='private', is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3667 |
return |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3668 |
|
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3669 |
def register_Ns3QapWifiMac_methods(root_module, cls): |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3670 |
## qap-wifi-mac.h: static ns3::TypeId ns3::QapWifiMac::GetTypeId() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3671 |
cls.add_method('GetTypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3672 |
'ns3::TypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3673 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3674 |
is_static=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3675 |
## qap-wifi-mac.h: ns3::QapWifiMac::QapWifiMac() [constructor] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3676 |
cls.add_constructor([]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3677 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetSlot(ns3::Time slotTime) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3678 |
cls.add_method('SetSlot', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3679 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3680 |
[param('ns3::Time', 'slotTime')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3681 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3682 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetSifs(ns3::Time sifs) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3683 |
cls.add_method('SetSifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3684 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3685 |
[param('ns3::Time', 'sifs')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3686 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3687 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3688 |
cls.add_method('SetEifsNoDifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3689 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3690 |
[param('ns3::Time', 'eifsNoDifs')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3691 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3692 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3693 |
cls.add_method('SetAckTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3694 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3695 |
[param('ns3::Time', 'ackTimeout')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3696 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3697 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3698 |
cls.add_method('SetCtsTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3699 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3700 |
[param('ns3::Time', 'ctsTimeout')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3701 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3702 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetPifs(ns3::Time pifs) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3703 |
cls.add_method('SetPifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3704 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3705 |
[param('ns3::Time', 'pifs')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3706 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3707 |
## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetSlot() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3708 |
cls.add_method('GetSlot', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3709 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3710 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3711 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3712 |
## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetSifs() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3713 |
cls.add_method('GetSifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3714 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3715 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3716 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3717 |
## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetEifsNoDifs() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3718 |
cls.add_method('GetEifsNoDifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3719 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3720 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3721 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3722 |
## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetAckTimeout() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3723 |
cls.add_method('GetAckTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3724 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3725 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3726 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3727 |
## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetCtsTimeout() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3728 |
cls.add_method('GetCtsTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3729 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3730 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3731 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3732 |
## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetPifs() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3733 |
cls.add_method('GetPifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3734 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3735 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3736 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3737 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3738 |
cls.add_method('SetWifiPhy', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3739 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3740 |
[param('ns3::Ptr< ns3::WifiPhy >', 'phy')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3741 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3742 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3743 |
cls.add_method('SetWifiRemoteStationManager', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3744 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3745 |
[param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3746 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3747 |
## qap-wifi-mac.h: void ns3::QapWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3748 |
cls.add_method('Enqueue', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3749 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3750 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3751 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3752 |
## qap-wifi-mac.h: void ns3::QapWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3753 |
cls.add_method('Enqueue', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3754 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3755 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3756 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3757 |
## qap-wifi-mac.h: bool ns3::QapWifiMac::SupportsSendFrom() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3758 |
cls.add_method('SupportsSendFrom', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3759 |
'bool', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3760 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3761 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3762 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3763 |
cls.add_method('SetForwardUpCallback', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3764 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3765 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3766 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3767 |
## qap-wifi-mac.h: void ns3::QapWifiMac::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] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3768 |
cls.add_method('SetLinkUpCallback', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3769 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3770 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3771 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3772 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3773 |
cls.add_method('SetLinkDownCallback', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3774 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3775 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3776 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3777 |
## qap-wifi-mac.h: ns3::Mac48Address ns3::QapWifiMac::GetAddress() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3778 |
cls.add_method('GetAddress', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3779 |
'ns3::Mac48Address', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3780 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3781 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3782 |
## qap-wifi-mac.h: ns3::Ssid ns3::QapWifiMac::GetSsid() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3783 |
cls.add_method('GetSsid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3784 |
'ns3::Ssid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3785 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3786 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3787 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetAddress(ns3::Mac48Address address) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3788 |
cls.add_method('SetAddress', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3789 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3790 |
[param('ns3::Mac48Address', 'address')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3791 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3792 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetSsid(ns3::Ssid ssid) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3793 |
cls.add_method('SetSsid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3794 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3795 |
[param('ns3::Ssid', 'ssid')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3796 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3797 |
## qap-wifi-mac.h: ns3::Mac48Address ns3::QapWifiMac::GetBssid() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3798 |
cls.add_method('GetBssid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3799 |
'ns3::Mac48Address', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3800 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3801 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3802 |
## qap-wifi-mac.h: void ns3::QapWifiMac::SetBeaconInterval(ns3::Time interval) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3803 |
cls.add_method('SetBeaconInterval', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3804 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3805 |
[param('ns3::Time', 'interval')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3806 |
## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetBeaconInterval() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3807 |
cls.add_method('GetBeaconInterval', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3808 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3809 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3810 |
is_const=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3811 |
## qap-wifi-mac.h: void ns3::QapWifiMac::StartBeaconing() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3812 |
cls.add_method('StartBeaconing', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3813 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3814 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3815 |
## qap-wifi-mac.h: void ns3::QapWifiMac::DoDispose() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3816 |
cls.add_method('DoDispose', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3817 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3818 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3819 |
visibility='private', is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3820 |
return |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3821 |
|
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3822 |
def register_Ns3QstaWifiMac_methods(root_module, cls): |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3823 |
## qsta-wifi-mac.h: static ns3::TypeId ns3::QstaWifiMac::GetTypeId() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3824 |
cls.add_method('GetTypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3825 |
'ns3::TypeId', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3826 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3827 |
is_static=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3828 |
## qsta-wifi-mac.h: ns3::QstaWifiMac::QstaWifiMac() [constructor] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3829 |
cls.add_constructor([]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3830 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetSlot(ns3::Time slotTime) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3831 |
cls.add_method('SetSlot', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3832 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3833 |
[param('ns3::Time', 'slotTime')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3834 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3835 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetSifs(ns3::Time sifs) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3836 |
cls.add_method('SetSifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3837 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3838 |
[param('ns3::Time', 'sifs')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3839 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3840 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3841 |
cls.add_method('SetEifsNoDifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3842 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3843 |
[param('ns3::Time', 'eifsNoDifs')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3844 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3845 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3846 |
cls.add_method('SetAckTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3847 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3848 |
[param('ns3::Time', 'ackTimeout')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3849 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3850 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3851 |
cls.add_method('SetCtsTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3852 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3853 |
[param('ns3::Time', 'ctsTimeout')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3854 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3855 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetPifs(ns3::Time pifs) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3856 |
cls.add_method('SetPifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3857 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3858 |
[param('ns3::Time', 'pifs')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3859 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3860 |
## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetSlot() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3861 |
cls.add_method('GetSlot', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3862 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3863 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3864 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3865 |
## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetSifs() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3866 |
cls.add_method('GetSifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3867 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3868 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3869 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3870 |
## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetEifsNoDifs() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3871 |
cls.add_method('GetEifsNoDifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3872 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3873 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3874 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3875 |
## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetAckTimeout() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3876 |
cls.add_method('GetAckTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3877 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3878 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3879 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3880 |
## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetCtsTimeout() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3881 |
cls.add_method('GetCtsTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3882 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3883 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3884 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3885 |
## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetPifs() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3886 |
cls.add_method('GetPifs', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3887 |
'ns3::Time', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3888 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3889 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3890 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3891 |
cls.add_method('SetWifiPhy', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3892 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3893 |
[param('ns3::Ptr< ns3::WifiPhy >', 'phy')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3894 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3895 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3896 |
cls.add_method('SetWifiRemoteStationManager', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3897 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3898 |
[param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3899 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3900 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3901 |
cls.add_method('Enqueue', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3902 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3903 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3904 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3905 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3906 |
cls.add_method('Enqueue', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3907 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3908 |
[param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3909 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3910 |
## qsta-wifi-mac.h: bool ns3::QstaWifiMac::SupportsSendFrom() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3911 |
cls.add_method('SupportsSendFrom', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3912 |
'bool', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3913 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3914 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3915 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3916 |
cls.add_method('SetForwardUpCallback', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3917 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3918 |
[param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3919 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3920 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::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] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3921 |
cls.add_method('SetLinkUpCallback', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3922 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3923 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3924 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3925 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3926 |
cls.add_method('SetLinkDownCallback', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3927 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3928 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3929 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3930 |
## qsta-wifi-mac.h: ns3::Mac48Address ns3::QstaWifiMac::GetAddress() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3931 |
cls.add_method('GetAddress', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3932 |
'ns3::Mac48Address', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3933 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3934 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3935 |
## qsta-wifi-mac.h: ns3::Ssid ns3::QstaWifiMac::GetSsid() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3936 |
cls.add_method('GetSsid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3937 |
'ns3::Ssid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3938 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3939 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3940 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetAddress(ns3::Mac48Address address) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3941 |
cls.add_method('SetAddress', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3942 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3943 |
[param('ns3::Mac48Address', 'address')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3944 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3945 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetSsid(ns3::Ssid ssid) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3946 |
cls.add_method('SetSsid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3947 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3948 |
[param('ns3::Ssid', 'ssid')], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3949 |
is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3950 |
## qsta-wifi-mac.h: ns3::Mac48Address ns3::QstaWifiMac::GetBssid() const [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3951 |
cls.add_method('GetBssid', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3952 |
'ns3::Mac48Address', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3953 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3954 |
is_const=True, is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3955 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetMaxMissedBeacons(uint32_t missed) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3956 |
cls.add_method('SetMaxMissedBeacons', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3957 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3958 |
[param('uint32_t', 'missed')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3959 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetProbeRequestTimeout(ns3::Time timeout) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3960 |
cls.add_method('SetProbeRequestTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3961 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3962 |
[param('ns3::Time', 'timeout')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3963 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetAssocRequestTimeout(ns3::Time timeout) [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3964 |
cls.add_method('SetAssocRequestTimeout', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3965 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3966 |
[param('ns3::Time', 'timeout')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3967 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::StartActiveAssociation() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3968 |
cls.add_method('StartActiveAssociation', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3969 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3970 |
[]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3971 |
## qsta-wifi-mac.h: void ns3::QstaWifiMac::DoDispose() [member function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3972 |
cls.add_method('DoDispose', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3973 |
'void', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3974 |
[], |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3975 |
visibility='private', is_virtual=True) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3976 |
return |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
3977 |
|
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3978 |
def register_Ns3RraaWifiManager_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
3979 |
## rraa-wifi-manager.h: ns3::RraaWifiManager::RraaWifiManager(ns3::RraaWifiManager const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
3980 |
cls.add_constructor([param('ns3::RraaWifiManager const &', 'arg0')]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3981 |
## rraa-wifi-manager.h: static ns3::TypeId ns3::RraaWifiManager::GetTypeId() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3982 |
cls.add_method('GetTypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3983 |
'ns3::TypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3984 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3985 |
is_static=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3986 |
## rraa-wifi-manager.h: ns3::RraaWifiManager::RraaWifiManager() [constructor] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3987 |
cls.add_constructor([]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3988 |
## rraa-wifi-manager.h: bool ns3::RraaWifiManager::OnlyBasic() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3989 |
cls.add_method('OnlyBasic', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3990 |
'bool', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3991 |
[]) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3992 |
## rraa-wifi-manager.h: ns3::Time ns3::RraaWifiManager::GetTimeout() const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3993 |
cls.add_method('GetTimeout', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3994 |
'ns3::Time', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3995 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
3996 |
is_const=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3997 |
## rraa-wifi-manager.h: ns3::ThresholdsItem ns3::RraaWifiManager::GetThresholds(ns3::WifiMode mode) const [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3998 |
cls.add_method('GetThresholds', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
3999 |
'ns3::ThresholdsItem', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
4000 |
[param('ns3::WifiMode', 'mode')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4001 |
is_const=True) |
3731
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
4002 |
## rraa-wifi-manager.h: ns3::WifiRemoteStation * ns3::RraaWifiManager::CreateStation() [member function] |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
4003 |
cls.add_method('CreateStation', |
317f9dbccc2b
New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3610
diff
changeset
|
4004 |
'ns3::WifiRemoteStation *', |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4005 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4006 |
visibility='private', is_virtual=True) |
3408 | 4007 |
return |
4008 |
||
4009 |
def register_Ns3WifiChannel_methods(root_module, cls): |
|
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4010 |
## wifi-channel.h: ns3::WifiChannel::WifiChannel(ns3::WifiChannel const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4011 |
cls.add_constructor([param('ns3::WifiChannel const &', 'arg0')]) |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4012 |
## wifi-channel.h: ns3::WifiChannel::WifiChannel() [constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4013 |
cls.add_constructor([]) |
3408 | 4014 |
## wifi-channel.h: static ns3::TypeId ns3::WifiChannel::GetTypeId() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4015 |
cls.add_method('GetTypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4016 |
'ns3::TypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4017 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4018 |
is_static=True) |
3408 | 4019 |
return |
4020 |
||
4021 |
def register_Ns3WifiNetDevice_methods(root_module, cls): |
|
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4022 |
## wifi-net-device.h: ns3::WifiNetDevice::WifiNetDevice(ns3::WifiNetDevice const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4023 |
cls.add_constructor([param('ns3::WifiNetDevice const &', 'arg0')]) |
3408 | 4024 |
## wifi-net-device.h: static ns3::TypeId ns3::WifiNetDevice::GetTypeId() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4025 |
cls.add_method('GetTypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4026 |
'ns3::TypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4027 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4028 |
is_static=True) |
3408 | 4029 |
## wifi-net-device.h: ns3::WifiNetDevice::WifiNetDevice() [constructor] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4030 |
cls.add_constructor([]) |
3408 | 4031 |
## wifi-net-device.h: void ns3::WifiNetDevice::SetMac(ns3::Ptr<ns3::WifiMac> mac) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4032 |
cls.add_method('SetMac', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4033 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4034 |
[param('ns3::Ptr< ns3::WifiMac >', 'mac')]) |
3408 | 4035 |
## wifi-net-device.h: void ns3::WifiNetDevice::SetPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4036 |
cls.add_method('SetPhy', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4037 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4038 |
[param('ns3::Ptr< ns3::WifiPhy >', 'phy')]) |
3408 | 4039 |
## wifi-net-device.h: void ns3::WifiNetDevice::SetRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> manager) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4040 |
cls.add_method('SetRemoteStationManager', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4041 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4042 |
[param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'manager')]) |
3408 | 4043 |
## wifi-net-device.h: ns3::Ptr<ns3::WifiMac> ns3::WifiNetDevice::GetMac() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4044 |
cls.add_method('GetMac', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4045 |
'ns3::Ptr< ns3::WifiMac >', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4046 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4047 |
is_const=True) |
3408 | 4048 |
## wifi-net-device.h: ns3::Ptr<ns3::WifiPhy> ns3::WifiNetDevice::GetPhy() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4049 |
cls.add_method('GetPhy', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4050 |
'ns3::Ptr< ns3::WifiPhy >', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4051 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4052 |
is_const=True) |
3408 | 4053 |
## wifi-net-device.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::WifiNetDevice::GetRemoteStationManager() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4054 |
cls.add_method('GetRemoteStationManager', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4055 |
'ns3::Ptr< ns3::WifiRemoteStationManager >', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4056 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4057 |
is_const=True) |
3408 | 4058 |
## wifi-net-device.h: void ns3::WifiNetDevice::SetIfIndex(uint32_t const index) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4059 |
cls.add_method('SetIfIndex', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4060 |
'void', |
3574
b6804efbe16b
New pybindgen and API rescan. Extensive API description files changes because pybindgen now handles consts differently.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3567
diff
changeset
|
4061 |
[param('uint32_t const', 'index')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4062 |
is_virtual=True) |
3408 | 4063 |
## wifi-net-device.h: uint32_t ns3::WifiNetDevice::GetIfIndex() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4064 |
cls.add_method('GetIfIndex', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4065 |
'uint32_t', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4066 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4067 |
is_const=True, is_virtual=True) |
3408 | 4068 |
## wifi-net-device.h: ns3::Ptr<ns3::Channel> ns3::WifiNetDevice::GetChannel() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4069 |
cls.add_method('GetChannel', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4070 |
'ns3::Ptr< ns3::Channel >', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4071 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4072 |
is_const=True, is_virtual=True) |
4589 | 4073 |
## wifi-net-device.h: void ns3::WifiNetDevice::SetAddress(ns3::Address address) [member function] |
4074 |
cls.add_method('SetAddress', |
|
4075 |
'void', |
|
4076 |
[param('ns3::Address', 'address')], |
|
4077 |
is_virtual=True) |
|
3408 | 4078 |
## wifi-net-device.h: ns3::Address ns3::WifiNetDevice::GetAddress() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4079 |
cls.add_method('GetAddress', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4080 |
'ns3::Address', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4081 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4082 |
is_const=True, is_virtual=True) |
3408 | 4083 |
## wifi-net-device.h: bool ns3::WifiNetDevice::SetMtu(uint16_t const mtu) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4084 |
cls.add_method('SetMtu', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4085 |
'bool', |
3574
b6804efbe16b
New pybindgen and API rescan. Extensive API description files changes because pybindgen now handles consts differently.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3567
diff
changeset
|
4086 |
[param('uint16_t const', 'mtu')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4087 |
is_virtual=True) |
3408 | 4088 |
## wifi-net-device.h: uint16_t ns3::WifiNetDevice::GetMtu() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4089 |
cls.add_method('GetMtu', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4090 |
'uint16_t', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4091 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4092 |
is_const=True, is_virtual=True) |
3408 | 4093 |
## wifi-net-device.h: bool ns3::WifiNetDevice::IsLinkUp() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4094 |
cls.add_method('IsLinkUp', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4095 |
'bool', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4096 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4097 |
is_const=True, is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
4098 |
## wifi-net-device.h: void ns3::WifiNetDevice::SetLinkChangeCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4099 |
cls.add_method('SetLinkChangeCallback', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4100 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
4101 |
[param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4102 |
is_virtual=True) |
3408 | 4103 |
## wifi-net-device.h: bool ns3::WifiNetDevice::IsBroadcast() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4104 |
cls.add_method('IsBroadcast', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4105 |
'bool', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4106 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4107 |
is_const=True, is_virtual=True) |
3408 | 4108 |
## wifi-net-device.h: ns3::Address ns3::WifiNetDevice::GetBroadcast() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4109 |
cls.add_method('GetBroadcast', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4110 |
'ns3::Address', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4111 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4112 |
is_const=True, is_virtual=True) |
3408 | 4113 |
## wifi-net-device.h: bool ns3::WifiNetDevice::IsMulticast() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4114 |
cls.add_method('IsMulticast', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4115 |
'bool', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4116 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4117 |
is_const=True, is_virtual=True) |
3842
545ddf9398ed
apply patch for bug 294 (GetMulticastAddr) + emu device update + rescan
vincent@clarinet.u-strasbg.fr
parents:
3745
diff
changeset
|
4118 |
## wifi-net-device.h: ns3::Address ns3::WifiNetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4119 |
cls.add_method('GetMulticast', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4120 |
'ns3::Address', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4121 |
[param('ns3::Ipv4Address', 'multicastGroup')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4122 |
is_const=True, is_virtual=True) |
3408 | 4123 |
## wifi-net-device.h: bool ns3::WifiNetDevice::IsPointToPoint() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4124 |
cls.add_method('IsPointToPoint', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4125 |
'bool', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4126 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4127 |
is_const=True, is_virtual=True) |
3951
561a37800333
The 'contrib' module actually depends on 'common' too (affects waf --python-scan)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3914
diff
changeset
|
4128 |
## wifi-net-device.h: bool ns3::WifiNetDevice::IsBridge() const [member function] |
561a37800333
The 'contrib' module actually depends on 'common' too (affects waf --python-scan)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3914
diff
changeset
|
4129 |
cls.add_method('IsBridge', |
561a37800333
The 'contrib' module actually depends on 'common' too (affects waf --python-scan)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3914
diff
changeset
|
4130 |
'bool', |
561a37800333
The 'contrib' module actually depends on 'common' too (affects waf --python-scan)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3914
diff
changeset
|
4131 |
[], |
561a37800333
The 'contrib' module actually depends on 'common' too (affects waf --python-scan)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3914
diff
changeset
|
4132 |
is_const=True, is_virtual=True) |
3408 | 4133 |
## wifi-net-device.h: bool ns3::WifiNetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4134 |
cls.add_method('Send', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4135 |
'bool', |
3574
b6804efbe16b
New pybindgen and API rescan. Extensive API description files changes because pybindgen now handles consts differently.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3567
diff
changeset
|
4136 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4137 |
is_virtual=True) |
3408 | 4138 |
## wifi-net-device.h: ns3::Ptr<ns3::Node> ns3::WifiNetDevice::GetNode() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4139 |
cls.add_method('GetNode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4140 |
'ns3::Ptr< ns3::Node >', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4141 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4142 |
is_const=True, is_virtual=True) |
3408 | 4143 |
## wifi-net-device.h: void ns3::WifiNetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4144 |
cls.add_method('SetNode', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4145 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4146 |
[param('ns3::Ptr< ns3::Node >', 'node')], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4147 |
is_virtual=True) |
3408 | 4148 |
## wifi-net-device.h: bool ns3::WifiNetDevice::NeedsArp() const [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4149 |
cls.add_method('NeedsArp', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4150 |
'bool', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4151 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4152 |
is_const=True, is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
4153 |
## wifi-net-device.h: void ns3::WifiNetDevice::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] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4154 |
cls.add_method('SetReceiveCallback', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4155 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
4156 |
[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')], |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4157 |
is_virtual=True) |
3855
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4158 |
## wifi-net-device.h: ns3::Address ns3::WifiNetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function] |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4159 |
cls.add_method('GetMulticast', |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4160 |
'ns3::Address', |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4161 |
[param('ns3::Ipv6Address', 'addr')], |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4162 |
is_const=True, is_virtual=True) |
3480
a920df6b9f02
Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3474
diff
changeset
|
4163 |
## wifi-net-device.h: bool ns3::WifiNetDevice::SendFrom(ns3::Ptr<ns3::Packet> packet, ns3::Address const & source, ns3::Address const & dest, uint16_t protocolNumber) [member function] |
a920df6b9f02
Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3474
diff
changeset
|
4164 |
cls.add_method('SendFrom', |
a920df6b9f02
Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3474
diff
changeset
|
4165 |
'bool', |
3574
b6804efbe16b
New pybindgen and API rescan. Extensive API description files changes because pybindgen now handles consts differently.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3567
diff
changeset
|
4166 |
[param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], |
3480
a920df6b9f02
Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3474
diff
changeset
|
4167 |
is_virtual=True) |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
4168 |
## wifi-net-device.h: void ns3::WifiNetDevice::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] |
3480
a920df6b9f02
Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3474
diff
changeset
|
4169 |
cls.add_method('SetPromiscReceiveCallback', |
a920df6b9f02
Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3474
diff
changeset
|
4170 |
'void', |
4073
b7c683c2479e
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4060
diff
changeset
|
4171 |
[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')], |
3480
a920df6b9f02
Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3474
diff
changeset
|
4172 |
is_virtual=True) |
3584
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
4173 |
## wifi-net-device.h: bool ns3::WifiNetDevice::SupportsSendFrom() const [member function] |
4eb48239b4dc
bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3574
diff
changeset
|
4174 |
cls.add_method('SupportsSendFrom', |
3480
a920df6b9f02
Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3474
diff
changeset
|
4175 |
'bool', |
a920df6b9f02
Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3474
diff
changeset
|
4176 |
[], |
a920df6b9f02
Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3474
diff
changeset
|
4177 |
is_const=True, is_virtual=True) |
3408 | 4178 |
## wifi-net-device.h: void ns3::WifiNetDevice::DoDispose() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4179 |
cls.add_method('DoDispose', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4180 |
'void', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4181 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4182 |
visibility='private', is_virtual=True) |
3408 | 4183 |
return |
4184 |
||
4038
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4185 |
def register_Ns3YansErrorRateModel_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4186 |
## yans-error-rate-model.h: ns3::YansErrorRateModel::YansErrorRateModel(ns3::YansErrorRateModel const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4187 |
cls.add_constructor([param('ns3::YansErrorRateModel const &', 'arg0')]) |
4038
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4188 |
## yans-error-rate-model.h: static ns3::TypeId ns3::YansErrorRateModel::GetTypeId() [member function] |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4189 |
cls.add_method('GetTypeId', |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4190 |
'ns3::TypeId', |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4191 |
[], |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4192 |
is_static=True) |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4193 |
## yans-error-rate-model.h: ns3::YansErrorRateModel::YansErrorRateModel() [constructor] |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4194 |
cls.add_constructor([]) |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4195 |
## yans-error-rate-model.h: double ns3::YansErrorRateModel::GetChunkSuccessRate(ns3::WifiMode mode, double snr, uint32_t nbits) const [member function] |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4196 |
cls.add_method('GetChunkSuccessRate', |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4197 |
'double', |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4198 |
[param('ns3::WifiMode', 'mode'), param('double', 'snr'), param('uint32_t', 'nbits')], |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4199 |
is_const=True, is_virtual=True) |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4200 |
return |
c6f634d0fc6f
virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3972
diff
changeset
|
4201 |
|
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4202 |
def register_Ns3YansWifiChannel_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4203 |
## yans-wifi-channel.h: ns3::YansWifiChannel::YansWifiChannel(ns3::YansWifiChannel const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4204 |
cls.add_constructor([param('ns3::YansWifiChannel const &', 'arg0')]) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4205 |
## yans-wifi-channel.h: static ns3::TypeId ns3::YansWifiChannel::GetTypeId() [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4206 |
cls.add_method('GetTypeId', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4207 |
'ns3::TypeId', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4208 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4209 |
is_static=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4210 |
## yans-wifi-channel.h: ns3::YansWifiChannel::YansWifiChannel() [constructor] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4211 |
cls.add_constructor([]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4212 |
## yans-wifi-channel.h: uint32_t ns3::YansWifiChannel::GetNDevices() const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4213 |
cls.add_method('GetNDevices', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4214 |
'uint32_t', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4215 |
[], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4216 |
is_const=True, is_virtual=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4217 |
## yans-wifi-channel.h: ns3::Ptr<ns3::NetDevice> ns3::YansWifiChannel::GetDevice(uint32_t i) const [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4218 |
cls.add_method('GetDevice', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4219 |
'ns3::Ptr< ns3::NetDevice >', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4220 |
[param('uint32_t', 'i')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4221 |
is_const=True, is_virtual=True) |
3912
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
4222 |
## yans-wifi-channel.h: void ns3::YansWifiChannel::Add(ns3::Ptr<ns3::YansWifiPhy> phy) [member function] |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
4223 |
cls.add_method('Add', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
4224 |
'void', |
4d1a61f80745
new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3908
diff
changeset
|
4225 |
[param('ns3::Ptr< ns3::YansWifiPhy >', 'phy')]) |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4226 |
## yans-wifi-channel.h: void ns3::YansWifiChannel::SetPropagationLossModel(ns3::Ptr<ns3::PropagationLossModel> loss) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4227 |
cls.add_method('SetPropagationLossModel', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4228 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4229 |
[param('ns3::Ptr< ns3::PropagationLossModel >', 'loss')]) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4230 |
## yans-wifi-channel.h: void ns3::YansWifiChannel::SetPropagationDelayModel(ns3::Ptr<ns3::PropagationDelayModel> delay) [member function] |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4231 |
cls.add_method('SetPropagationDelayModel', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4232 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4233 |
[param('ns3::Ptr< ns3::PropagationDelayModel >', 'delay')]) |
4407
ef566eeff84f
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4382
diff
changeset
|
4234 |
## yans-wifi-channel.h: void ns3::YansWifiChannel::Send(ns3::Ptr<ns3::YansWifiPhy> sender, ns3::Ptr<ns3::Packet const> packet, double txPowerDbm, ns3::WifiMode wifiMode, ns3::WifiPreamble preamble) const [member function] |
3906
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4235 |
cls.add_method('Send', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4236 |
'void', |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4237 |
[param('ns3::Ptr< ns3::YansWifiPhy >', 'sender'), param('ns3::Ptr< ns3::Packet const >', 'packet'), param('double', 'txPowerDbm'), param('ns3::WifiMode', 'wifiMode'), param('ns3::WifiPreamble', 'preamble')], |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4238 |
is_const=True) |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4239 |
return |
01acc159ffb1
merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
3745
diff
changeset
|
4240 |
|
3408 | 4241 |
def register_Ns3AarfWifiManager_methods(root_module, cls): |
4241
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4242 |
## aarf-wifi-manager.h: ns3::AarfWifiManager::AarfWifiManager(ns3::AarfWifiManager const & arg0) [copy constructor] |
c35796bc0b4b
rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4218
diff
changeset
|
4243 |
cls.add_constructor([param('ns3::AarfWifiManager const &', 'arg0')]) |
3408 | 4244 |
## aarf-wifi-manager.h: static ns3::TypeId ns3::AarfWifiManager::GetTypeId() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4245 |
cls.add_method('GetTypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4246 |
'ns3::TypeId', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4247 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4248 |
is_static=True) |
3408 | 4249 |
## aarf-wifi-manager.h: ns3::AarfWifiManager::AarfWifiManager() [constructor] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4250 |
cls.add_constructor([]) |
3408 | 4251 |
## aarf-wifi-manager.h: ns3::WifiRemoteStation * ns3::AarfWifiManager::CreateStation() [member function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4252 |
cls.add_method('CreateStation', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4253 |
'ns3::WifiRemoteStation *', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4254 |
[], |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4255 |
visibility='private', is_virtual=True) |
3408 | 4256 |
return |
4257 |
||
4258 |
def register_functions(root_module): |
|
4259 |
module = root_module |
|
3855
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4260 |
## ssid.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeSsidChecker() [free function] |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4261 |
module.add_function('MakeSsidChecker', |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4262 |
'ns3::Ptr< ns3::AttributeChecker const >', |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4263 |
[]) |
3408 | 4264 |
## wifi-mode.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeWifiModeChecker() [free function] |
3468
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4265 |
module.add_function('MakeWifiModeChecker', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4266 |
'ns3::Ptr< ns3::AttributeChecker const >', |
0bb5275704fc
Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3460
diff
changeset
|
4267 |
[]) |
4422
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
4268 |
## qos-utils.h: extern uint8_t ns3::QosUtilsGetTidForPacket(ns3::Ptr<ns3::Packet const> packet) [free function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
4269 |
module.add_function('QosUtilsGetTidForPacket', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
4270 |
'uint8_t', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
4271 |
[param('ns3::Ptr< ns3::Packet const >', 'packet')]) |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
4272 |
## qos-utils.h: extern ns3::AccessClass ns3::QosUtilsMapTidToAc(uint8_t tid) [free function] |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
4273 |
module.add_function('QosUtilsMapTidToAc', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
4274 |
'ns3::AccessClass', |
f5ef533e56e4
rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
4407
diff
changeset
|
4275 |
[param('uint8_t', 'tid')]) |
3855
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4276 |
register_functions_ns3_Config(module.get_submodule('Config'), root_module) |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4277 |
register_functions_ns3_TimeStepPrecision(module.get_submodule('TimeStepPrecision'), root_module) |
4474
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
4278 |
register_functions_ns3_addressUtils(module.get_submodule('addressUtils'), root_module) |
3408 | 4279 |
register_functions_ns3_internal(module.get_submodule('internal'), root_module) |
4280 |
register_functions_ns3_olsr(module.get_submodule('olsr'), root_module) |
|
4281 |
return |
|
4282 |
||
3855
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4283 |
def register_functions_ns3_Config(module, root_module): |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4284 |
return |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4285 |
|
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4286 |
def register_functions_ns3_TimeStepPrecision(module, root_module): |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4287 |
return |
7fdcbeea6c4f
Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
3842
diff
changeset
|
4288 |
|
4474
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
4289 |
def register_functions_ns3_addressUtils(module, root_module): |
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
4290 |
return |
19e2b7ff3482
bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents:
4454
diff
changeset
|
4291 |
|
3408 | 4292 |
def register_functions_ns3_internal(module, root_module): |
4293 |
return |
|
4294 |
||
4295 |
def register_functions_ns3_olsr(module, root_module): |
|
4296 |
return |
|
4297 |