23 #include "ns3/simulator.h" 
   24 #include "ns3/node-container.h" 
   25 #include "ns3/wimax-helper.h" 
   26 #include "ns3/net-device-container.h" 
   27 #include "ns3/internet-stack-helper.h" 
   28 #include "ns3/ipv4-address-helper.h" 
   29 #include "ns3/ipv4-interface-container.h" 
   30 #include "ns3/ipv4-address.h" 
   31 #include "ns3/service-flow.h" 
   32 #include "ns3/ipcs-classifier-record.h" 
   43   virtual void DoRun (
void);
 
   49   : 
TestCase (
"Test the 2 different schedulers")
 
   66   ssDevs = wimax.
Install (ssNodes,
 
   67                           WimaxHelper::DEVICE_TYPE_SUBSCRIBER_STATION,
 
   68                           WimaxHelper::SIMPLE_PHY_TYPE_OFDM,
 
   70   bsDevs = wimax.
Install (bsNodes, WimaxHelper::DEVICE_TYPE_BASE_STATION, WimaxHelper::SIMPLE_PHY_TYPE_OFDM, scheduler);
 
   79   address.
SetBase (
"10.1.1.0", 
"255.255.255.0");
 
  103   Simulator::Stop (
Seconds (2 + 0.1));
 
  116                                                           ServiceFlow::SF_TYPE_RTPS,
 
  129                                                           ServiceFlow::SF_TYPE_RTPS,
 
  135   Simulator::Destroy ();
 
  143   if (
DoRunOnce (WimaxHelper::SCHED_TYPE_SIMPLE) == 
true)
 
  147   if (
DoRunOnce (WimaxHelper::SCHED_TYPE_RTPS) == 
true)
 
  162   virtual void DoRun (
void);
 
  168   : 
TestCase (
"Test the service flow scheduling types")
 
  185   ssDevs = wimax.
Install (ssNodes,
 
  186                           WimaxHelper::DEVICE_TYPE_SUBSCRIBER_STATION,
 
  187                           WimaxHelper::SIMPLE_PHY_TYPE_OFDM,
 
  188                           WimaxHelper::SCHED_TYPE_SIMPLE);
 
  189   bsDevs = wimax.
Install (bsNodes,
 
  190                           WimaxHelper::DEVICE_TYPE_BASE_STATION,
 
  191                           WimaxHelper::SIMPLE_PHY_TYPE_OFDM,
 
  192                           WimaxHelper::SCHED_TYPE_SIMPLE);
 
  201   address.
SetBase (
"10.1.1.0", 
"255.255.255.0");
 
  225   Simulator::Stop (
Seconds (2 + 0.1));
 
  253   Simulator::Destroy ();
 
  261   if (
DoRunOnce (ServiceFlow::SF_TYPE_UGS) == 
true)
 
  265   if (
DoRunOnce (ServiceFlow::SF_TYPE_RTPS) == 
true)
 
  269   if (
DoRunOnce (ServiceFlow::SF_TYPE_BE) == 
true)
 
holds a vector of std::pair of Ptr and interface index. 
 
Ptr< NetDevice > Get(uint32_t i) const 
Get the Ptr stored in this container at a given index. 
 
a class to represent an Ipv4 address mask 
 
SchedulerType
Scheduler Type Different implementations of uplink/downlink scheduler. 
 
aggregate IP/TCP/UDP functionality to existing Nodes. 
 
bool DoRunOnce(ServiceFlow::SchedulingType)
 
NetDeviceContainer Install(NodeContainer c, NetDeviceType type, PhyType phyType, SchedulerType schedulerType)
 
virtual ~Ns3WimaxSchedulingTestCase()
 
virtual void DoRun(void)
Implementation to actually run this TestCase. 
 
void AddTestCase(TestCase *testCase, enum TestDuration duration)
Add an individual child TestCase to this test suite. 
 
holds a vector of ns3::NetDevice pointers 
 
static Ns3WimaxQoSTestSuite ns3WimaxQoSTestSuite
 
Every class exported by the ns3 library is enclosed in the ns3 namespace. 
 
keep track of a set of node pointers. 
 
void Install(std::string nodeName) const 
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
 
virtual void DoRun(void)
Implementation to actually run this TestCase. 
 
This class implements service flows as described by the IEEE-802.16 standard. 
 
virtual ~Ns3WimaxSFTypeTestCase()
 
bool DoRunOnce(WimaxHelper::SchedulerType scheduler)
 
Ipv4 addresses are stored in host order in this class. 
 
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
 
Time Seconds(double value)
Construct a Time in the indicated unit. 
 
ServiceFlow CreateServiceFlow(ServiceFlow::Direction direction, ServiceFlow::SchedulingType schedulinType, IpcsClassifierRecord classifier)
Creates a transport service flow. 
 
helps to manage and create WimaxNetDevice objects 
 
A helper class to make life easier while doing simple IPv4 address assignment in scripts. 
 
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer. 
 
Ns3WimaxSchedulingTestCase()
 
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address. 
 
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const