author | Mathieu Lacage <mathieu.lacage@sophia.inria.fr> |
Mon, 03 Mar 2008 04:03:39 +0100 | |
changeset 2544 | 2e6e1a6e0d94 |
parent 2524 | db72c0e7743e |
child 2603 | 1308da4cb3bf |
permissions | -rw-r--r-- |
1897
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
1 |
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
2 |
|
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
3 |
def build(bld): |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
4 |
obj = bld.create_ns3_module('wifi', ['node']) |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
5 |
obj.source = [ |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
6 |
'propagation-delay-model.cc', |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
7 |
'propagation-loss-model.cc', |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
8 |
'wifi-channel.cc', |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
9 |
'wifi-mode.cc', |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
10 |
'ssid.cc', |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
11 |
'wifi-phy.cc', |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
12 |
'wifi-mac-header.cc', |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
13 |
'wifi-mac-trailer.cc', |
1922
dd18bc29fc3c
add MacLow to build
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1918
diff
changeset
|
14 |
'mac-low.cc', |
1925
12faa084fe5b
add MacTxMiddle to build
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1924
diff
changeset
|
15 |
'wifi-mac-queue.cc', |
12faa084fe5b
add MacTxMiddle to build
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1924
diff
changeset
|
16 |
'mac-tx-middle.cc', |
1927
7ef830068f1d
add MacRxMiddle to build
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1925
diff
changeset
|
17 |
'mac-rx-middle.cc', |
1929
437bba482899
add DcaTxop to build
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1927
diff
changeset
|
18 |
'dca-txop.cc', |
1936
61d6404e66d8
add SupportedRates to build
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1933
diff
changeset
|
19 |
'supported-rates.cc', |
1937
996383a87ae3
add new code to build
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1936
diff
changeset
|
20 |
'capability-information.cc', |
996383a87ae3
add new code to build
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1936
diff
changeset
|
21 |
'status-code.cc', |
1939
40af0232df83
add management frame implementations
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1937
diff
changeset
|
22 |
'mgt-headers.cc', |
2095
f6ec39e97e4b
a new (wholy untested) Dcf implementation
mlacage@thira.inria.fr
parents:
2066
diff
changeset
|
23 |
'random-stream.cc', |
f6ec39e97e4b
a new (wholy untested) Dcf implementation
mlacage@thira.inria.fr
parents:
2066
diff
changeset
|
24 |
'dcf-manager.cc', |
2097 | 25 |
'dcf-manager-test.cc', |
2524
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
26 |
'wifi-mac.cc', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
27 |
'wifi-remote-station-manager.cc', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
28 |
'adhoc-wifi-mac.cc', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
29 |
'nqap-wifi-mac.cc', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
30 |
'nqsta-wifi-mac.cc', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
31 |
'wifi-net-device.cc', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
32 |
'arf-wifi-manager.cc', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
33 |
'aarf-wifi-manager.cc', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
34 |
'ideal-wifi-manager.cc', |
2544
2e6e1a6e0d94
port last rate control algorithms
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2524
diff
changeset
|
35 |
'amrr-wifi-manager.cc', |
2e6e1a6e0d94
port last rate control algorithms
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2524
diff
changeset
|
36 |
'onoe-wifi-manager.cc', |
2e6e1a6e0d94
port last rate control algorithms
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2524
diff
changeset
|
37 |
'rraa-wifi-manager.cc', |
2524
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
38 |
'constant-rate-wifi-manager.cc', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
39 |
'wifi-helper.cc', |
1897
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
40 |
] |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
41 |
headers = bld.create_obj('ns3header') |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
42 |
headers.source = [ |
2066
4477ee7d0798
test propagation losses
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2055
diff
changeset
|
43 |
'propagation-loss-model.h', |
1897
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
44 |
'wifi-net-device.h', |
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
45 |
'wifi-channel.h', |
1903
2e3982f05578
install header
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1897
diff
changeset
|
46 |
'wifi-mode.h', |
1897
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
47 |
'ssid.h', |
1922
dd18bc29fc3c
add MacLow to build
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1918
diff
changeset
|
48 |
'wifi-preamble.h', |
2166
00b5eb43dba2
Improve the accuracy of 802.11a tx duration calculations.
Federico Maguolo <federico.maguolo@dei.unipd.it>
parents:
2146
diff
changeset
|
49 |
'wifi-phy-standard.h', |
2055
8899d6ef5d52
phy state logger
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
1968
diff
changeset
|
50 |
'wifi-phy.h', |
2350
0b54480c4fd1
Hook trace sources into the trace system. Add WifiTrace to give a 'simple' API to tracing wifi-specific sources.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2273
diff
changeset
|
51 |
'wifi-trace.h', |
2524
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
52 |
'wifi-remote-station-manager.h', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
53 |
'arf-wifi-manager.h', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
54 |
'aarf-wifi-manager.h', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
55 |
'constant-rate-wifi-manager.h', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
56 |
'ideal-wifi-manager.h', |
2544
2e6e1a6e0d94
port last rate control algorithms
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2524
diff
changeset
|
57 |
'amrr-wifi-manager.h', |
2e6e1a6e0d94
port last rate control algorithms
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2524
diff
changeset
|
58 |
'onoe-wifi-manager.h', |
2e6e1a6e0d94
port last rate control algorithms
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2524
diff
changeset
|
59 |
'rraa-wifi-manager.h', |
2524
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
60 |
'wifi-mac.h', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
61 |
'adhoc-wifi-mac.h', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
62 |
'nqsta-wifi-mac.h', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
63 |
'nqap-wifi-mac.h', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
64 |
'wifi-phy.h', |
db72c0e7743e
port wifi model to Attributes
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2508
diff
changeset
|
65 |
'wifi-helper.h', |
1897
04adeb2900ae
forgot to add wscript file
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
diff
changeset
|
66 |
] |