View | Details | Raw Unified | Return to bug 2050
Collapse All | Expand All

(-)310a9f28531d (+166 lines)
Added Link Here 
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
 * Copyright (c) 2015 Sébastien Deronne
4
 *
5
 * This program is free software; you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License version 2 as
7
 * published by the Free Software Foundation;
8
 *
9
 * This program is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU General Public License
15
 * along with this program; if not, write to the Free Software
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 *
18
 * Author: Sébastien Deronne <sebastien.deronne@gmail.com>
19
 */
20
21
#include "ns3/core-module.h"
22
#include "ns3/network-module.h"
23
#include "ns3/applications-module.h"
24
#include "ns3/wifi-module.h"
25
#include "ns3/mobility-module.h"
26
#include "ns3/ipv4-global-routing-helper.h"
27
#include "ns3/internet-module.h"
28
29
// This is a simple example in order to show how 802.11n MPDU aggregation feature works.
30
// The throughput is obtained for a given number of aggregated MPDUs.
31
//
32
// The number of aggregated MPDUs can be chosen by the user through the nMpdus attibute.
33
// A value of 1 means that no MPDU aggregation is performed.
34
//
35
// Example: ./waf --run "simple-mpdu-aggregation --nMpdus=64"
36
//
37
// Network topology:
38
//
39
//   Wifi 192.168.1.0
40
//
41
//        AP
42
//   *    *
43
//   |    |
44
//   n1   n2
45
//
46
// Packets in this simulation aren't marked with a QosTag so they are considered
47
// belonging to BestEffort Access Class (AC_BE).
48
49
using namespace ns3;
50
51
NS_LOG_COMPONENT_DEFINE ("SimpleMpduAggregation");
52
53
int main (int argc, char *argv[])
54
{
55
  uint32_t payloadSize = 1472; //bytes
56
  uint64_t simulationTime = 10; //seconds
57
  uint32_t nMpdus = 1;
58
  bool enableRts = 0;
59
    
60
  CommandLine cmd;
61
  cmd.AddValue("nMpdus", "Number of aggregated MPDUs", nMpdus); //number of aggregated MPDUs specified by the user
62
  cmd.AddValue("payloadSize", "Payload size in bytes", payloadSize);
63
  cmd.AddValue("enableRts", "Enable RTS/CTS", enableRts);
64
  cmd.AddValue("simulationTime", "Simulation time in seconds", simulationTime);
65
  cmd.Parse (argc, argv);
66
    
67
  if(!enableRts)
68
    Config::SetDefault ("ns3::WifiRemoteStationManager::RtsCtsThreshold", StringValue ("999999"));
69
  else
70
    Config::SetDefault ("ns3::WifiRemoteStationManager::RtsCtsThreshold", StringValue ("0"));
71
     
72
  Config::SetDefault ("ns3::WifiRemoteStationManager::FragmentationThreshold", StringValue ("990000"));
73
74
  NodeContainer wifiStaNode;
75
  wifiStaNode.Create (1);
76
  NodeContainer wifiApNode;
77
  wifiApNode.Create(1);
78
79
  YansWifiChannelHelper channel = YansWifiChannelHelper::Default ();
80
  YansWifiPhyHelper phy = YansWifiPhyHelper::Default ();
81
  phy.SetPcapDataLinkType (YansWifiPhyHelper::DLT_IEEE802_11_RADIO);
82
  phy.SetChannel (channel.Create());
83
84
  WifiHelper wifi = WifiHelper::Default ();
85
  wifi.SetStandard (WIFI_PHY_STANDARD_80211n_5GHZ);
86
  wifi.SetRemoteStationManager ("ns3::ConstantRateWifiManager", "DataMode", StringValue("OfdmRate65MbpsBW20MHz"), "ControlMode", StringValue("OfdmRate6_5MbpsBW20MHz"));
87
  HtWifiMacHelper mac = HtWifiMacHelper::Default ();
88
89
  Ssid ssid = Ssid ("simple-mpdu-aggregation");
90
  mac.SetType ("ns3::StaWifiMac",
91
               "Ssid", SsidValue (ssid),
92
               "ActiveProbing", BooleanValue (false));
93
94
  if (nMpdus > 1) mac.SetBlockAckThresholdForAc (AC_BE, 2); //enable Block ACK when A-MPDU is enabled (i.e. nMpdus > 1)
95
96
  mac.SetMpduAggregatorForAc (AC_BE,"ns3::MpduStandardAggregator",
97
                              "MaxAmpduSize", UintegerValue (nMpdus*(payloadSize+100))); //enable MPDU aggregation for AC_BE with a maximum aggregated size of nMpdus*(payloadSize+100) bytes, i.e. nMpdus aggregated packets in an A-MPDU
98
  
99
  NetDeviceContainer staDevice;
100
  staDevice = wifi.Install (phy, mac, wifiStaNode);
101
102
  mac.SetType ("ns3::ApWifiMac",
103
               "Ssid", SsidValue (ssid),
104
               "BeaconInterval", TimeValue (MicroSeconds(102400)),
105
               "BeaconGeneration", BooleanValue (true));
106
107
  if (nMpdus > 1) mac.SetBlockAckThresholdForAc (AC_BE, 2); //enable Block ACK when A-MPDU is enabled (i.e. nMpdus > 1)
108
    
109
  mac.SetMpduAggregatorForAc (AC_BE,"ns3::MpduStandardAggregator",
110
                              "MaxAmpduSize", UintegerValue (nMpdus*(payloadSize+100))); //enable MPDU aggregation for AC_BE with a maximum aggregated size of nMpdus*(payloadSize+100) bytes, i.e. nMpdus aggregated packets in an A-MPDU
111
112
  NetDeviceContainer apDevice;
113
  apDevice = wifi.Install (phy, mac, wifiApNode);
114
115
  /* Setting mobility model */
116
  MobilityHelper mobility;
117
  Ptr<ListPositionAllocator> positionAlloc = CreateObject<ListPositionAllocator> ();
118
119
  positionAlloc->Add (Vector (0.0, 0.0, 0.0));
120
  positionAlloc->Add (Vector (1.0, 0.0, 0.0));
121
  mobility.SetPositionAllocator (positionAlloc);
122
123
  mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
124
125
  mobility.Install (wifiApNode);
126
  mobility.Install (wifiStaNode);
127
128
  /* Internet stack*/
129
  InternetStackHelper stack;
130
  stack.Install (wifiApNode);
131
  stack.Install (wifiStaNode);
132
133
  Ipv4AddressHelper address;
134
135
  address.SetBase ("192.168.1.0", "255.255.255.0");
136
  Ipv4InterfaceContainer StaInterface;
137
  StaInterface = address.Assign (staDevice);
138
  Ipv4InterfaceContainer ApInterface;
139
  ApInterface = address.Assign (apDevice);
140
 
141
  /* Setting applications */
142
  UdpServerHelper myServer (9);
143
  ApplicationContainer serverApp = myServer.Install (wifiStaNode.Get (0));
144
  serverApp.Start (Seconds (0.0));
145
  serverApp.Stop (Seconds (simulationTime+1));
146
      
147
  UdpClientHelper myClient (StaInterface.GetAddress (0), 9);
148
  myClient.SetAttribute ("MaxPackets", UintegerValue (4294967295));
149
  myClient.SetAttribute ("Interval", TimeValue (Time ("0.00002"))); //packets/s
150
  myClient.SetAttribute ("PacketSize", UintegerValue (payloadSize));
151
              
152
  ApplicationContainer clientApp = myClient.Install (wifiApNode.Get (0));
153
  clientApp.Start (Seconds (1.0));
154
  clientApp.Stop (Seconds (simulationTime+1));
155
      
156
  Simulator::Stop (Seconds (simulationTime+1));
157
158
  Simulator::Run ();
159
  Simulator::Destroy ();
160
      
161
  uint32_t totalPacketsThrough = DynamicCast<UdpServer>(serverApp.Get (0))->GetReceived ();
162
  double throughput = totalPacketsThrough*payloadSize*8/(simulationTime*1000000.0);
163
  std::cout << "Throughput: " << throughput << " Mbit/s" << '\n';
164
    
165
  return 0;
166
}
(-)310a9f28531d (+160 lines)
Added Link Here 
1
/* -*-  Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
 * Copyright (c) 2009 MIRKO BANCHI
4
 *
5
 * This program is free software; you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License version 2 as 
7
 * published by the Free Software Foundation;
8
 *
9
 * This program is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU General Public License
15
 * along with this program; if not, write to the Free Software
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 *
18
 * Authors: Mirko Banchi <mk.banchi@gmail.com>
19
 *          Sébastien Deronne <sebastien.deronne@gmail.com>
20
 */
21
#include "ns3/core-module.h"
22
#include "ns3/network-module.h"
23
#include "ns3/applications-module.h"
24
#include "ns3/wifi-module.h"
25
#include "ns3/mobility-module.h"
26
#include "ns3/ipv4-global-routing-helper.h"
27
#include "ns3/internet-module.h"
28
29
// This is a simple example in order to show how 802.11n MSDU aggregation feature works.
30
// The throughput is obtained for a given number of aggregated MSDUs.
31
//
32
// The number of aggregated MSDUs can be chosen by the user through the nMsdus attibute.
33
// A value of 1 means that no MSDU aggregation is performed.
34
//
35
// Example: ./waf --run "simple-msdu-aggregation --nMsdus=5"
36
//
37
// Network topology:
38
//
39
//   Wifi 192.168.1.0
40
//
41
//        AP
42
//   *    *
43
//   |    |
44
//   n1   n2
45
//
46
// Packets in this simulation aren't marked with a QosTag so they are considered
47
// belonging to BestEffort Access Class (AC_BE).
48
49
using namespace ns3;
50
51
NS_LOG_COMPONENT_DEFINE ("SimpleMsduAggregation");
52
53
int main (int argc, char *argv[])
54
{
55
  uint32_t payloadSize = 1472; //bytes
56
  uint64_t simulationTime = 10; //seconds
57
  uint32_t nMsdus = 1;
58
  bool enableRts = 0;
59
    
60
  CommandLine cmd;
61
  cmd.AddValue("nMsdus", "Number of aggregated MSDUs", nMsdus); //number of aggregated MSDUs specified by the user
62
  cmd.AddValue("payloadSize", "Payload size in bytes", payloadSize);
63
  cmd.AddValue("enableRts", "Enable RTS/CTS", enableRts);
64
  cmd.AddValue("simulationTime", "Simulation time in seconds", simulationTime);
65
  cmd.Parse (argc, argv);
66
 
67
  if(!enableRts)
68
    Config::SetDefault ("ns3::WifiRemoteStationManager::RtsCtsThreshold", StringValue ("999999"));
69
  else
70
    Config::SetDefault ("ns3::WifiRemoteStationManager::RtsCtsThreshold", StringValue ("0"));
71
    
72
  Config::SetDefault ("ns3::WifiRemoteStationManager::FragmentationThreshold", StringValue ("990000"));
73
    
74
  NodeContainer wifiStaNode;
75
  wifiStaNode.Create (1);
76
  NodeContainer wifiApNode;
77
  wifiApNode.Create(1);
78
    
79
  YansWifiChannelHelper channel = YansWifiChannelHelper::Default ();
80
  YansWifiPhyHelper phy = YansWifiPhyHelper::Default ();
81
  phy.SetPcapDataLinkType (YansWifiPhyHelper::DLT_IEEE802_11_RADIO);
82
  phy.SetChannel (channel.Create());
83
    
84
  WifiHelper wifi = WifiHelper::Default ();
85
  wifi.SetStandard (WIFI_PHY_STANDARD_80211n_5GHZ);
86
  wifi.SetRemoteStationManager ("ns3::ConstantRateWifiManager", "DataMode", StringValue("OfdmRate65MbpsBW20MHz"), "ControlMode", StringValue("OfdmRate6_5MbpsBW20MHz"));
87
  HtWifiMacHelper mac = HtWifiMacHelper::Default ();
88
89
  Ssid ssid = Ssid ("simple-msdu-aggregation");
90
  mac.SetType ("ns3::StaWifiMac",
91
               "Ssid", SsidValue (ssid),
92
               "ActiveProbing", BooleanValue (false));
93
    
94
  mac.SetMsduAggregatorForAc (AC_BE, "ns3::MsduStandardAggregator", 
95
                              "MaxAmsduSize", UintegerValue (nMsdus*(payloadSize+100))); //enable MSDU aggregation for AC_BE with a maximum aggregated size of nMsdus*(payloadSize+100) bytes, i.e. nMsdus aggregated packets in an A-MSDU
96
97
  NetDeviceContainer staDevice;
98
  staDevice = wifi.Install (phy, mac, wifiStaNode);
99
100
  mac.SetType ("ns3::ApWifiMac",
101
               "Ssid", SsidValue (ssid));
102
    
103
  mac.SetMsduAggregatorForAc (AC_BE, "ns3::MsduStandardAggregator", 
104
                              "MaxAmsduSize", UintegerValue (nMsdus*(payloadSize+100))); //enable MSDU aggregation for AC_BE with a maximum aggregated size of nMsdus*(payloadSize+100) bytes, i.e. nMsdus aggregated packets in an A-MSDU
105
    
106
  NetDeviceContainer apDevice;
107
  apDevice = wifi.Install (phy, mac, wifiApNode);
108
 
109
  /* Setting mobility model */
110
  MobilityHelper mobility;
111
  Ptr<ListPositionAllocator> positionAlloc = CreateObject<ListPositionAllocator> ();
112
    
113
  positionAlloc->Add (Vector (0.0, 0.0, 0.0));
114
  positionAlloc->Add (Vector (1.0, 0.0, 0.0));
115
  mobility.SetPositionAllocator (positionAlloc);
116
    
117
  mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
118
    
119
  mobility.Install (wifiApNode);
120
  mobility.Install (wifiStaNode);
121
    
122
  /* Internet stack*/
123
  InternetStackHelper stack;
124
  stack.Install (wifiApNode);
125
  stack.Install (wifiStaNode);
126
 
127
  Ipv4AddressHelper address;
128
    
129
  address.SetBase ("192.168.1.0", "255.255.255.0");
130
  Ipv4InterfaceContainer StaInterface;
131
  StaInterface = address.Assign (staDevice);
132
  Ipv4InterfaceContainer ApInterface;
133
  ApInterface = address.Assign (apDevice);
134
    
135
  /* Setting applications */
136
  UdpServerHelper myServer (9);
137
  ApplicationContainer serverApp = myServer.Install (wifiStaNode.Get (0));
138
  serverApp.Start (Seconds (0.0));
139
  serverApp.Stop (Seconds (simulationTime+1));
140
    
141
  UdpClientHelper myClient (StaInterface.GetAddress (0), 9);
142
  myClient.SetAttribute ("MaxPackets", UintegerValue (4294967295));
143
  myClient.SetAttribute ("Interval", TimeValue (Time ("0.00002"))); //packets/s
144
  myClient.SetAttribute ("PacketSize", UintegerValue (payloadSize));
145
    
146
  ApplicationContainer clientApp = myClient.Install (wifiApNode.Get (0));
147
  clientApp.Start (Seconds (1.0));
148
  clientApp.Stop (Seconds (simulationTime+1));
149
    
150
  Simulator::Stop (Seconds (simulationTime+1));
151
    
152
  Simulator::Run ();
153
  Simulator::Destroy ();
154
    
155
  uint32_t totalPacketsThrough = DynamicCast<UdpServer>(serverApp.Get (0))->GetReceived ();
156
  double throughput = totalPacketsThrough*payloadSize*8/(simulationTime*1000000.0);
157
  std::cout << "Throughput: " << throughput << " Mbit/s" << '\n';
158
    
159
    return 0;
160
}
(-)a/examples/wireless/simple-wifi-frame-aggregation.cc (-149 lines)
Removed Link Here 
1
/* -*-  Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
 * Copyright (c) 2009 MIRKO BANCHI
4
 *
5
 * This program is free software; you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License version 2 as 
7
 * published by the Free Software Foundation;
8
 *
9
 * This program is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU General Public License
15
 * along with this program; if not, write to the Free Software
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 *
18
 * Author: Mirko Banchi <mk.banchi@gmail.com>
19
 */
20
#include "ns3/core-module.h"
21
#include "ns3/network-module.h"
22
#include "ns3/applications-module.h"
23
#include "ns3/wifi-module.h"
24
#include "ns3/mobility-module.h"
25
#include "ns3/ipv4-global-routing-helper.h"
26
#include "ns3/internet-module.h"
27
28
//This is a simple example in order to show how 802.11n frame aggregation feature (A-MSDU) works.
29
//
30
//Network topology:
31
// 
32
//  Wifi 192.168.1.0
33
// 
34
//             AP
35
//   *    *    *
36
//   |    |    |
37
//   n1   n2   n3 
38
//
39
//Packets in this simulation aren't marked with a QosTag so they are considered
40
//belonging to BestEffort Access Class (AC_BE).
41
42
using namespace ns3;
43
44
NS_LOG_COMPONENT_DEFINE ("SimpleWifiFrameAggregation");
45
46
int main (int argc, char *argv[])
47
{
48
  //LogComponentEnable ("EdcaTxopN", LOG_LEVEL_DEBUG);
49
  LogComponentEnable ("MsduAggregator", LOG_LEVEL_INFO);
50
  LogComponentEnable ("UdpEchoClientApplication", LOG_LEVEL_INFO);
51
  LogComponentEnable ("UdpEchoServerApplication", LOG_LEVEL_INFO);
52
53
  uint32_t nWifi = 1;
54
  CommandLine cmd;
55
  cmd.AddValue ("nWifi", "Number of wifi STA devices", nWifi);
56
  cmd.Parse (argc,argv);
57
58
  NodeContainer wifiNodes;
59
  wifiNodes.Create (2);
60
  NodeContainer wifiApNode;
61
  wifiApNode.Create (1);
62
 
63
  YansWifiChannelHelper channel = YansWifiChannelHelper::Default ();
64
  YansWifiPhyHelper phy = YansWifiPhyHelper::Default ();
65
  phy.SetChannel (channel.Create ());
66
67
  WifiHelper wifi = WifiHelper::Default ();
68
  QosWifiMacHelper mac = QosWifiMacHelper::Default ();
69
  wifi.SetRemoteStationManager ("ns3::AarfWifiManager", "FragmentationThreshold", UintegerValue (2500));
70
71
  Ssid ssid = Ssid ("ns-3-802.11n");
72
  mac.SetType ("ns3::StaWifiMac",
73
               "Ssid", SsidValue (ssid),
74
               "ActiveProbing", BooleanValue (false));
75
  mac.SetMsduAggregatorForAc (AC_BE, "ns3::MsduStandardAggregator", 
76
                              "MaxAmsduSize", UintegerValue (3839));
77
78
  NetDeviceContainer staDevices;
79
  staDevices = wifi.Install (phy, mac, wifiNodes);
80
81
  mac.SetType ("ns3::ApWifiMac",
82
               "Ssid", SsidValue (ssid));
83
  mac.SetMsduAggregatorForAc (AC_BE, "ns3::MsduStandardAggregator", 
84
                              "MaxAmsduSize", UintegerValue (7935));
85
86
  NetDeviceContainer apDevice;
87
  apDevice = wifi.Install (phy, mac, wifiApNode);
88
 
89
  /* Setting mobility model */
90
  MobilityHelper mobility;
91
92
  mobility.SetPositionAllocator ("ns3::GridPositionAllocator",
93
                                 "MinX", DoubleValue (0.0),
94
                                 "MinY", DoubleValue (0.0),
95
                                 "DeltaX", DoubleValue (5.0),
96
                                 "DeltaY", DoubleValue (10.0),
97
                                 "GridWidth", UintegerValue (3),
98
                                 "LayoutType", StringValue ("RowFirst"));
99
100
  mobility.SetMobilityModel ("ns3::RandomWalk2dMobilityModel",
101
                             "Bounds", RectangleValue (Rectangle (-50, 50, -50, 50)));
102
  mobility.Install (wifiNodes);
103
104
  mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
105
  mobility.Install (wifiApNode);
106
107
  /* Internet stack*/
108
  InternetStackHelper stack;
109
  stack.Install (wifiApNode);
110
  stack.Install (wifiNodes);
111
112
  Ipv4AddressHelper address;
113
114
  address.SetBase ("192.168.1.0", "255.255.255.0");
115
  Ipv4InterfaceContainer wifiNodesInterfaces;
116
  Ipv4InterfaceContainer apNodeInterface;
117
118
  wifiNodesInterfaces = address.Assign (staDevices);
119
  apNodeInterface = address.Assign (apDevice);
120
121
  /* Setting applications */
122
  UdpEchoServerHelper echoServer (9);
123
124
  ApplicationContainer serverApps = echoServer.Install (wifiNodes.Get (1));
125
  serverApps.Start (Seconds (1.0));
126
  serverApps.Stop (Seconds (10.0));
127
128
  UdpEchoClientHelper echoClient (wifiNodesInterfaces.GetAddress (1), 9);
129
  echoClient.SetAttribute ("MaxPackets", UintegerValue (3));
130
  echoClient.SetAttribute ("Interval", TimeValue (Seconds (0.000001)));
131
  echoClient.SetAttribute ("PacketSize", UintegerValue (1500));
132
133
  ApplicationContainer clientApps = 
134
    echoClient.Install (wifiNodes.Get (0));
135
  clientApps.Start (Seconds (2.0));
136
  clientApps.Stop (Seconds (10.0));
137
138
  Ipv4GlobalRoutingHelper::PopulateRoutingTables ();
139
140
  Simulator::Stop (Seconds (10.0));
141
142
  phy.EnablePcap ("test-802.11n", 
143
                  wifiNodes.Get (nWifi - 1)->GetId (), 0);
144
145
  Simulator::Run ();
146
  Simulator::Destroy ();
147
148
  return 0;
149
}
(-)a/examples/wireless/wscript (-2 / +5 lines)
 Lines 22-29    Link Here 
22
    obj = bld.create_ns3_program('wifi-wired-bridging', ['internet', 'mobility', 'wifi', 'csma', 'bridge', 'applications'])
22
    obj = bld.create_ns3_program('wifi-wired-bridging', ['internet', 'mobility', 'wifi', 'csma', 'bridge', 'applications'])
23
    obj.source = 'wifi-wired-bridging.cc'
23
    obj.source = 'wifi-wired-bridging.cc'
24
24
25
    obj = bld.create_ns3_program('simple-wifi-frame-aggregation', ['internet', 'mobility', 'wifi', 'applications'])
25
    obj = bld.create_ns3_program('simple-msdu-aggregation', ['internet', 'mobility', 'wifi', 'applications'])
26
    obj.source = 'simple-wifi-frame-aggregation.cc'
26
    obj.source = 'simple-msdu-aggregation.cc'
27
27
28
    obj = bld.create_ns3_program('multirate', ['internet', 'mobility', 'wifi', 'stats', 'flow-monitor', 'olsr', 'applications', 'point-to-point'])
28
    obj = bld.create_ns3_program('multirate', ['internet', 'mobility', 'wifi', 'stats', 'flow-monitor', 'olsr', 'applications', 'point-to-point'])
29
    obj.source = 'multirate.cc'
29
    obj.source = 'multirate.cc'
 Lines 66-68    Link Here 
66
66
67
    obj = bld.create_ns3_program('rate-adaptation-distance', ['core', 'mobility', 'wifi', 'applications', 'flow-monitor'])
67
    obj = bld.create_ns3_program('rate-adaptation-distance', ['core', 'mobility', 'wifi', 'applications', 'flow-monitor'])
68
    obj.source = 'rate-adaptation-distance.cc'
68
    obj.source = 'rate-adaptation-distance.cc'
69
70
    obj = bld.create_ns3_program('simple-mpdu-aggregation', ['internet', 'mobility', 'wifi', 'applications'])
71
    obj.source = 'simple-mpdu-aggregation.cc'

Return to bug 2050