A Discrete-Event Network Simulator
API
ocb-test-suite.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013 Dalian University of Technology
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: Junling Bu <linlinjavaer@gmail.com>
19  */
20 #include "ns3/test.h"
21 #include "ns3/rng-seed-manager.h"
22 #include "ns3/config.h"
23 #include "ns3/data-rate.h"
24 #include "ns3/vector.h"
25 #include "ns3/string.h"
26 #include "ns3/ssid.h"
27 #include "ns3/packet-socket-address.h"
28 #include "ns3/mobility-model.h"
29 #include "ns3/yans-wifi-helper.h"
30 #include "ns3/position-allocator.h"
31 #include "ns3/packet-socket-helper.h"
32 #include "ns3/mobility-helper.h"
33 #include "ns3/nqos-wifi-mac-helper.h"
34 #include "ns3/wifi-net-device.h"
35 #include "ns3/packet-socket-server.h"
36 #include "ns3/packet-socket-client.h"
37 #include <iostream>
38 
39 #include "ns3/ocb-wifi-mac.h"
40 #include "ns3/wifi-80211p-helper.h"
41 #include "ns3/wave-mac-helper.h"
42 
43 using namespace ns3;
44 // helper function to assign streams to random variables, to control
45 // randomness in the tests
46 static void
48 {
49  int64_t currentStream = stream;
50  Ptr<RegularWifiMac> rmac = DynamicCast<RegularWifiMac> (mac);
51  if (rmac)
52  {
53  PointerValue ptr;
54  rmac->GetAttribute ("DcaTxop", ptr);
55  Ptr<DcaTxop> dcaTxop = ptr.Get<DcaTxop> ();
56  currentStream += dcaTxop->AssignStreams (currentStream);
57 
58  rmac->GetAttribute ("VO_EdcaTxopN", ptr);
59  Ptr<EdcaTxopN> vo_edcaTxopN = ptr.Get<EdcaTxopN> ();
60  currentStream += vo_edcaTxopN->AssignStreams (currentStream);
61 
62  rmac->GetAttribute ("VI_EdcaTxopN", ptr);
63  Ptr<EdcaTxopN> vi_edcaTxopN = ptr.Get<EdcaTxopN> ();
64  currentStream += vi_edcaTxopN->AssignStreams (currentStream);
65 
66  rmac->GetAttribute ("BE_EdcaTxopN", ptr);
67  Ptr<EdcaTxopN> be_edcaTxopN = ptr.Get<EdcaTxopN> ();
68  currentStream += be_edcaTxopN->AssignStreams (currentStream);
69 
70  rmac->GetAttribute ("BK_EdcaTxopN", ptr);
71  Ptr<EdcaTxopN> bk_edcaTxopN = ptr.Get<EdcaTxopN> ();
72  currentStream += bk_edcaTxopN->AssignStreams (currentStream);
73  }
74 }
75 
77 {
78 public:
79  OcbWifiMacTestCase (void);
80  virtual ~OcbWifiMacTestCase (void);
81 private:
82  virtual void DoRun (void);
83 
84  void MacAssoc (std::string context,Mac48Address bssid);
85  void PhyRxOkTrace (std::string context, Ptr<const Packet> packet, double snr, WifiMode mode, enum WifiPreamble preamble);
86  void PhyTxTrace (std::string context, Ptr<const Packet> packet, WifiMode mode, WifiPreamble preamble, uint8_t txPower);
87  Vector GetCurrentPosition (uint32_t i);
88  void AdvancePosition (Ptr<Node> node);
89 
90  void PreRandomConfiguration (void);
91  void ConfigureApStaMode (Ptr<Node> static_node, Ptr<Node> mobile_node);
92  void ConfigureAdhocMode (Ptr<Node> static_node, Ptr<Node> mobile_node);
93  void ConfigureOcbMode (Ptr<Node> static_node, Ptr<Node> mobile_node);
94  void PostDeviceConfiguration (Ptr<Node> static_node, Ptr<Node> mobile_node);
95 
97  Vector phytx_pos;
98 
100  Vector macassoc_pos;
101 
103  Vector phyrx_pos;
104 
105  // nodes.Get (0) is static node
106  // nodes.Get (1) is mobile node
108 };
109 
111  : TestCase ("Association time: Ap+Sta mode vs Adhoc mode vs Ocb mode")
112 {
113 }
114 
116 {
117 }
118 
119 // mobility is like walk on line with velocity 5 m/s
120 // We prefer to update 0.5m every 0.1s rather than 5m every 1s
121 void
123 {
125  Vector pos = mobility->GetPosition ();
126  pos.x -= 0.5;
127  if (pos.x < 1.0 )
128  {
129  pos.x = 1.0;
130  return;
131  }
132  mobility->SetPosition (pos);
133 
134  Simulator::Schedule (Seconds (0.1), &OcbWifiMacTestCase::AdvancePosition, this, node);
135 }
136 
137 // here are only two nodes, a stationary and a mobile one
138 // the i value of the first = 0; the i value of second = 1.
139 Vector
141 {
142  NS_ASSERT (i < 2);
143  Ptr<Node> node = nodes.Get (i);
145  Vector pos = mobility->GetPosition ();
146  return pos;
147 }
148 
149 void
150 OcbWifiMacTestCase::MacAssoc (std::string context,Mac48Address bssid)
151 {
152  if (macassoc_time == Time (0))
153  {
154  macassoc_time = Now ();
156  std::cout << "MacAssoc time = " << macassoc_time.GetNanoSeconds ()
157  << " position = " << macassoc_pos
158  << std::endl;
159  }
160 }
161 
162 // We want to get the time that sta receives the first beacon frame from AP
163 // it means that in this time this sta has ability to receive frame
164 void
165 OcbWifiMacTestCase::PhyRxOkTrace (std::string context, Ptr<const Packet> packet, double snr, WifiMode mode, enum WifiPreamble preamble)
166 {
167  if (phyrx_time == Time (0))
168  {
169  phyrx_time = Now ();
171  std::cout << "PhyRxOk time = " << phyrx_time.GetNanoSeconds ()
172  << " position = " << phyrx_pos
173  << std::endl;
174  }
175 }
176 
177 // We want to get the time that STA sends the first data packet successfully
178 void
179 OcbWifiMacTestCase::PhyTxTrace (std::string context, Ptr<const Packet> packet, WifiMode mode, WifiPreamble preamble, uint8_t txPower)
180 {
181  WifiMacHeader h;
182  packet->PeekHeader (h);
183  if ((phytx_time == Time (0)) && h.IsData ())
184  {
185  phytx_time = Now ();
187  std::cout << "PhyTx data time = " << phytx_time.GetNanoSeconds ()
188  << " position = " << phytx_pos
189  << std::endl;
190  }
191 }
192 
193 void
195 {
196  YansWifiChannelHelper wifiChannel = YansWifiChannelHelper::Default ();
197  YansWifiPhyHelper wifiPhy = YansWifiPhyHelper::Default ();
198  wifiPhy.SetChannel (wifiChannel.Create ());
199 
200  Ssid ssid = Ssid ("wifi-default");
201  NqosWifiMacHelper wifiStaMac = NqosWifiMacHelper::Default ();
202  wifiStaMac.SetType ("ns3::StaWifiMac", "Ssid", SsidValue (ssid));
203  NqosWifiMacHelper wifiApMac = NqosWifiMacHelper::Default ();
204  wifiApMac.SetType ("ns3::ApWifiMac","Ssid", SsidValue (ssid));
205 
206  WifiHelper wifi = WifiHelper::Default ();
208  wifi.SetRemoteStationManager ("ns3::ConstantRateWifiManager",
209  "DataMode", StringValue ("OfdmRate6MbpsBW10MHz"),
210  "ControlMode",StringValue ("OfdmRate6MbpsBW10MHz"));
211  wifi.Install (wifiPhy, wifiStaMac, mobile_node);
212  wifi.Install (wifiPhy, wifiApMac, static_node);
213 }
214 
215 void
217 {
218  YansWifiChannelHelper wifiChannel = YansWifiChannelHelper::Default ();
219  YansWifiPhyHelper wifiPhy = YansWifiPhyHelper::Default ();
220  wifiPhy.SetChannel (wifiChannel.Create ());
221 
222  NqosWifiMacHelper wifiMac = NqosWifiMacHelper::Default ();
223  wifiMac.SetType ("ns3::AdhocWifiMac");
224 
225  WifiHelper wifi = WifiHelper::Default ();
227  wifi.SetRemoteStationManager ("ns3::ConstantRateWifiManager",
228  "DataMode", StringValue ("OfdmRate6MbpsBW10MHz"),
229  "ControlMode",StringValue ("OfdmRate6MbpsBW10MHz"));
230  wifi.Install (wifiPhy, wifiMac, mobile_node);
231  wifi.Install (wifiPhy, wifiMac, static_node);
232 }
233 
234 void
236 {
237  YansWifiChannelHelper wifiChannel = YansWifiChannelHelper::Default ();
238  YansWifiPhyHelper wifiPhy = YansWifiPhyHelper::Default ();
239  wifiPhy.SetChannel (wifiChannel.Create ());
240 
241  NqosWaveMacHelper wifi80211pMac = NqosWaveMacHelper::Default ();
242 
243  Wifi80211pHelper wifi80211p = Wifi80211pHelper::Default ();
244  wifi80211p.SetRemoteStationManager ("ns3::ConstantRateWifiManager",
245  "DataMode", StringValue ("OfdmRate6MbpsBW10MHz"),
246  "ControlMode",StringValue ("OfdmRate6MbpsBW10MHz"));
247  wifi80211p.Install (wifiPhy, wifi80211pMac, mobile_node);
248  wifi80211p.Install (wifiPhy, wifi80211pMac, static_node);
249 }
250 
251 void
253 {
254  Ptr<WifiNetDevice> static_device = DynamicCast<WifiNetDevice> (static_node->GetDevice (0));
255  Ptr<WifiNetDevice> mobile_device = DynamicCast<WifiNetDevice> (mobile_node->GetDevice (0));
256 
257  // Fix the stream assignment to the Dcf Txop objects (backoffs)
258  // The below stream assignment will result in the DcaTxop object
259  // using a backoff value of zero for this test when the
260  // DcaTxop::EndTxNoAck() calls to StartBackoffNow()
261  AssignWifiRandomStreams (static_device->GetMac (), 21);
262  AssignWifiRandomStreams (mobile_device->GetMac (), 22);
263 
264  // setup mobility
265  // the initial position of static node is at 0,
266  // and the initial position of mobile node is 350.
268  mobility.Install (mobile_node);
269  mobility.Install (static_node);
270  Ptr<MobilityModel> mm = mobile_node->GetObject<MobilityModel> ();
271  Vector possta = mm->GetPosition ();
272  possta.x = 350;
273  mm->SetPosition (possta);
274  Simulator::Schedule (Seconds (1.0), &OcbWifiMacTestCase::AdvancePosition, this, mobile_node);
275 
276  PacketSocketAddress socket;
277  socket.SetSingleDevice (mobile_device->GetIfIndex ());
278  socket.SetPhysicalAddress (static_device->GetAddress ());
279  socket.SetProtocol (1);
280 
281  // give packet socket powers to nodes.
282  PacketSocketHelper packetSocket;
283  packetSocket.Install (static_node);
284  packetSocket.Install (mobile_node);
285 
286  Ptr<PacketSocketClient> client = CreateObject<PacketSocketClient> ();
287  client->SetRemote (socket);
288  mobile_node->AddApplication (client);
289  client->SetStartTime (Seconds (0.5));
290  client->SetStopTime (Seconds (70.0));
291 
292  Ptr<PacketSocketServer> server = CreateObject<PacketSocketServer> ();
293  server->SetLocal (socket);
294  static_node->AddApplication (server);
295  server->SetStartTime (Seconds (0.0));
296  server->SetStopTime (Seconds (70.5));
297 
299  phytx_pos = macassoc_pos = phyrx_pos = Vector ();
300 
301  Config::Connect ("/NodeList/1/DeviceList/*/Mac/Assoc", MakeCallback (&OcbWifiMacTestCase::MacAssoc, this));
302  Config::Connect ("/NodeList/1/DeviceList/*/Phy/State/RxOk", MakeCallback (&OcbWifiMacTestCase::PhyRxOkTrace, this));
303  Config::Connect ("/NodeList/1/DeviceList/*/Phy/State/Tx", MakeCallback (&OcbWifiMacTestCase::PhyTxTrace, this));
304 }
305 
319 void
321 {
322  std::cout << "test time point for Ap-Sta mode" << std::endl;
324  nodes = NodeContainer ();
325  nodes.Create (2);
326  Ptr<Node> static_node = nodes.Get (0);
327  Ptr<Node> mobile_node = nodes.Get (1);
328  ConfigureApStaMode (static_node, mobile_node);
329  PostDeviceConfiguration (static_node, mobile_node);
330  Simulator::Stop (Seconds (71.0));
331  Simulator::Run ();
332  Simulator::Destroy ();
333  NS_TEST_ASSERT_MSG_LT (phyrx_time, macassoc_time, "In Sta mode with AP, you cannot associate until receive beacon or AssocResponse frame" );
334  NS_TEST_ASSERT_MSG_LT (macassoc_time, phytx_time, "In Sta mode with AP, you cannot send data packet until associate" );
335  NS_TEST_ASSERT_MSG_GT ((phyrx_pos.x - macassoc_pos.x), 0.0, "");
336  //actually macassoc_pos.x - phytx_pos.x is greater than 0
337  //however associate switch to send is so fast with less than 100ms
338  //and in our mobility model that every 0.1s update position,
339  //so turn out to be that macassoc_pos.x - phytx_pos.x is equal to 0
340  //NS_TEST_ASSERT_MSG_GT ((macassoc_pos.x - phytx_pos.x), 0.0, "");
341 
342  std::cout << "test time point for Adhoc mode" << std::endl;
344  nodes = NodeContainer ();
345  nodes.Create (2);
346  static_node = nodes.Get (0);
347  mobile_node = nodes.Get (1);
348  ConfigureAdhocMode (static_node, mobile_node);
349  PostDeviceConfiguration (static_node, mobile_node);
350  Simulator::Stop (Seconds (71.0));
351  Simulator::Run ();
352  Simulator::Destroy ();
353  // below test assert will fail, because AdhocWifiMac has not implement state machine.
354  // if someone takes a look at the output in adhoc mode and in Ocb mode
355  // he will find these two outputs are almost same.
356  //NS_TEST_ASSERT_MSG_LT (phyrx_time, macassoc_time, "In Adhoc mode, you cannot associate until receive beacon or AssocResponse frame" );
357  //NS_TEST_ASSERT_MSG_LT (macassoc_time, phytx_time, "In Adhoc mode, you cannot send data packet until associate" );
358  //NS_TEST_ASSERT_MSG_GT ((phyrx_pos.x - macassoc_pos.x), 0.0, "");
359  // below test assert result refer to Ap-Sta mode
360  //NS_TEST_ASSERT_MSG_GT ((macassoc_pos.x - phytx_pos.x), 0.0, "");
361 
362  std::cout << "test time point for Ocb mode" << std::endl;
364  nodes = NodeContainer ();
365  nodes.Create (2);
366  static_node = nodes.Get (0);
367  mobile_node = nodes.Get (1);
368  ConfigureOcbMode (static_node, mobile_node);
369  PostDeviceConfiguration (static_node, mobile_node);
370  Simulator::Stop (Seconds (71.0));
371  Simulator::Run ();
372  Simulator::Destroy ();
373  NS_TEST_ASSERT_MSG_EQ (macassoc_time.GetNanoSeconds (), 0, "In Ocb mode, there is no associate state machine" );
374  NS_TEST_ASSERT_MSG_LT (phytx_time, phyrx_time, "before mobile node receives frames from far static node, it can send data packet directly" );
375  NS_TEST_ASSERT_MSG_EQ (macassoc_pos.x, 0.0, "");
376  NS_TEST_ASSERT_MSG_GT ((phytx_pos.x - phyrx_pos.x), 0.0, "");
377 }
378 void
380 {
381  // Assign a seed and run number, and later fix the assignment of streams to
382  // WiFi random variables, so that the first backoff used is zero slots
383  RngSeedManager::SetSeed (1);
384  RngSeedManager::SetRun (17);
385  // the WiFi random variables is set in PostDeviceConfiguration method.
386 }
387 
388 class OcbTestSuite : public TestSuite
389 {
390 public:
391  OcbTestSuite ();
392 };
393 
395  : TestSuite ("wifi-80211p-ocb", UNIT)
396 {
397  // TestDuration for TestCase can be QUICK, EXTENSIVE or TAKES_FOREVER
398  AddTestCase (new OcbWifiMacTestCase, TestCase::QUICK);
399 }
400 
401 // Do not forget to allocate an instance of this TestSuite
403 
uint32_t AddApplication(Ptr< Application > application)
Associate an Application to this Node.
Definition: node.cc:150
helps to create wifi 802.11p objects of WifiNetDevice class
void SetStopTime(Time stop)
Specify application stop time.
Definition: application.cc:75
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:102
Ptr< T > Get(void) const
Definition: pointer.h:194
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
void SetLocal(PacketSocketAddress addr)
set the local address and protocol to be used
static void AdvancePosition(Ptr< Node > node)
Definition: wifi-ap.cc:100
void MacAssoc(std::string context, Mac48Address bssid)
Ptr< YansWifiChannel > Create(void) const
void SetRemoteStationManager(std::string type, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
Definition: wifi-helper.cc:74
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
Definition: object.h:455
Hold variables of type string.
Definition: string.h:41
Make it easy to create and manage PHY objects for the yans model.
A suite of tests to run.
Definition: test.h:1333
virtual void SetType(std::string type, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
virtual Address GetAddress(void) const
an address for a packet socket
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
Definition: assert.h:67
Vector GetPosition(void) const
OFDM PHY for the 5 GHz band (Clause 17 with 10 MHz channel bandwidth)
void ConfigureOcbMode(Ptr< Node > static_node, Ptr< Node > mobile_node)
void(* Time)(Time oldValue, Time newValue)
TracedValue callback signature for Time.
Definition: nstime.h:719
encapsulates test code
Definition: test.h:1147
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
Definition: dca-txop.cc:288
static OcbTestSuite ocbTestSuite
void PhyTxTrace(std::string context, Ptr< const Packet > packet, WifiMode mode, WifiPreamble preamble, uint8_t txPower)
helps to create WifiNetDevice objects
Definition: wifi-helper.h:96
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lo...
Definition: wifi-mode.h:97
Give ns3::PacketSocket powers to ns3::Node.
void SetSingleDevice(uint32_t device)
Set the address to match only a specified NetDevice.
virtual NetDeviceContainer Install(const WifiPhyHelper &phy, const WifiMacHelper &mac, NodeContainer c) const
Definition: wifi-helper.cc:103
WifiPreamble
The type of preamble to be used by an IEEE 802.11 transmission.
Definition: wifi-preamble.h:30
Keep track of the current position and velocity of an object.
void SetChannel(Ptr< YansWifiChannel > channel)
This queue contains packets for a particular access class.
Definition: edca-txop-n.h:82
tuple mobility
Definition: third.py:101
void AddTestCase(TestCase *testCase, enum TestDuration duration)
Add an individual child TestCase to this test suite.
Definition: test.cc:297
Vector3D Vector
Definition: vector.h:166
#define NS_TEST_ASSERT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report and abort if not.
Definition: test.h:161
virtual ~OcbWifiMacTestCase(void)
virtual void SetStandard(enum WifiPhyStandard standard)
Definition: wifi-helper.cc:97
Vector GetCurrentPosition(uint32_t i)
Ptr< NetDevice > GetDevice(uint32_t index) const
Retrieve the index-th NetDevice associated to this node.
Definition: node.cc:135
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
Definition: callback.h:1480
void PhyRxOkTrace(std::string context, Ptr< const Packet > packet, double snr, WifiMode mode, enum WifiPreamble preamble)
Definition: wifi-ap.cc:53
void PhyRxOkTrace(std::string context, Ptr< const Packet > packet, double snr, WifiMode mode, enum WifiPreamble preamble)
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
tuple mac
Definition: third.py:92
create non QoS-enabled MAC layers for a ns3::WifiNetDevice.
void Connect(std::string path, const CallbackBase &cb)
Definition: config.cc:835
uint32_t PeekHeader(Header &header) const
Deserialize but does not remove the header from the internal buffer.
Definition: packet.cc:276
void AdvancePosition(Ptr< Node > node)
virtual NetDeviceContainer Install(const WifiPhyHelper &phy, const WifiMacHelper &macHelper, NodeContainer c) const
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void SetPhysicalAddress(const Address address)
Set the destination address.
keep track of a set of node pointers.
Hold objects of type Ptr.
Definition: pointer.h:36
void PhyTxTrace(std::string context, Ptr< const Packet > packet, WifiMode mode, WifiPreamble preamble, uint8_t txPower)
Definition: wifi-ap.cc:69
void PostDeviceConfiguration(Ptr< Node > static_node, Ptr< Node > mobile_node)
virtual void DoRun(void)
static-node:0 <-— mobile-node:1
an EUI-48 address
Definition: mac48-address.h:43
tuple ssid
Definition: third.py:93
manage and create wifi channel objects for the yans model.
void Install(Ptr< Node > node) const
Aggregate an instance of a ns3::PacketSocketFactory onto the provided node.
void GetAttribute(std::string name, AttributeValue &value) const
Get the value of an attribute, raising fatal errors if unsuccessful.
Definition: object-base.cc:229
void SetPosition(const Vector &position)
The IEEE 802.11 SSID Information Element.
Definition: ssid.h:38
int64_t GetNanoSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
Definition: nstime.h:353
static void AssignWifiRandomStreams(Ptr< WifiMac > mac, int64_t stream)
Helper class used to assign positions and mobility models to nodes.
void ConfigureApStaMode(Ptr< Node > static_node, Ptr< Node > mobile_node)
bool IsData(void) const
Return true if the Type is DATA.
void SetRemote(PacketSocketAddress addr)
set the remote address and protocol to be used
Ptr< Node > Get(uint32_t i) const
Get the Ptr stored in this container at a given index.
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:895
AttributeValue implementation for Ssid.
Definition: ssid.h:95
void SetProtocol(uint16_t protocol)
Set the protocol.
NodeContainer nodes
Ptr< WifiMac > GetMac(void) const
Time Now(void)
create an ns3::Time instance which contains the current simulation time.
Definition: simulator.cc:330
tuple wifi
Definition: third.py:89
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
void PreRandomConfiguration(void)
handle packet fragmentation and retransmissions.
Definition: dca-txop.h:67
#define NS_TEST_ASSERT_MSG_GT(actual, limit, msg)
Test that an actual value is greater than a limit and report and abort if not.
Definition: test.h:990
void ConfigureAdhocMode(Ptr< Node > static_node, Ptr< Node > mobile_node)
void SetStartTime(Time start)
Specify application start time.
Definition: application.cc:69
#define NS_TEST_ASSERT_MSG_LT(actual, limit, msg)
Test that an actual value is less than a limit and report and abort if not.
Definition: test.h:804
Implements the IEEE 802.11 MAC header.