20 #include "ns3/abort.h"
22 #include "ns3/pcap-file.h"
23 #include "ns3/config.h"
24 #include "ns3/string.h"
25 #include "ns3/uinteger.h"
26 #include "ns3/data-rate.h"
27 #include "ns3/inet-socket-address.h"
28 #include "ns3/point-to-point-helper.h"
29 #include "ns3/internet-stack-helper.h"
30 #include "ns3/ipv4-global-routing-helper.h"
31 #include "ns3/ipv4-address-helper.h"
32 #include "ns3/packet-sink-helper.h"
33 #include "ns3/tcp-socket-factory.h"
34 #include "ns3/simulator.h"
85 virtual void StartApplication (
void);
86 virtual void StopApplication (
void);
88 void ScheduleTx (
void);
183 virtual void DoRun (
void);
194 void CwndChange (uint32_t oldCwnd, uint32_t newCwnd);
198 :
TestCase (
"Check to see that the ns-3 TCP congestion window works as expected against liblinux2.6.26.so"),
199 m_writeResults (false)
213 event.m_newCwnd = newCwnd;
243 devices = pointToPoint.
Install (nodes);
256 std::string nscStack =
"liblinux2.6.26.so";
257 stack.
SetTcp (
"ns3::NscTcpL4Protocol",
"Library",
StringValue (
"liblinux2.6.26.so"));
265 address.
SetBase (
"10.1.1.0",
"255.255.255.252");
273 uint16_t sinkPort = 8080;
277 sinkApps.
Start (Seconds (0.));
278 sinkApps.
Stop (Seconds (1.1));
300 Ptr<Socket> ns3TcpSocket = Socket::CreateSocket (nodes.
Get (0), TcpSocketFactory::GetTypeId ());
304 app->
Setup (ns3TcpSocket, sinkAddress, 1040, 10,
DataRate (
"5Mbps"));
329 Simulator::Stop (Seconds (2));
331 Simulator::Destroy ();
347 const uint32_t MSS = 536;
348 const uint32_t N_EVENTS = 21;
356 for (uint32_t i = 1, from = MSS, to = MSS * 2; i < N_EVENTS; ++i, from += MSS, to += MSS)
386 virtual void DoRun (
void);
387 void VerifyCwndRun (uint32_t beginIdx, uint32_t endIdx, uint32_t initialCwnd, uint32_t mss);
398 void CwndChange (uint32_t oldCwnd, uint32_t newCwnd);
402 :
TestCase (
"Check to see that the ns-3 TCP congestion window works as expected for out-of-order packet delivery"),
403 m_writeResults (false)
417 event.m_newCwnd = newCwnd;
457 ipv4.
SetBase (
"10.1.3.0",
"255.255.255.0");
459 ipv4.
SetBase (
"10.1.2.0",
"255.255.255.0");
461 ipv4.
SetBase (
"10.1.1.0",
"255.255.255.0");
465 Ipv4GlobalRoutingHelper::PopulateRoutingTables ();
468 uint16_t servPort = 50000;
475 apps.
Start (Seconds (0.0));
476 apps.
Stop (Seconds (5.4));
480 Ptr<Socket> ns3TcpSocket = Socket::CreateSocket (n0n1.
Get (0), TcpSocketFactory::GetTypeId ());
485 app->
Setup (ns3TcpSocket, sinkAddress, 1040, 1000,
DataRate (
"1Mbps"));
498 Simulator::Stop (Seconds (4.4));
500 Simulator::Destroy ();
518 const uint32_t MSS = 536;
519 const uint32_t N_EVENTS = 45;
558 uint32_t cwnd = 5 * MSS;
560 for (uint32_t i = 30; i < N_EVENTS; ++i)
562 double adder =
static_cast<double> (MSS * MSS) / cwnd;
563 adder = std::max (1.0, adder);
564 cwnd +=
static_cast<uint32_t
> (adder);
575 for(uint32_t i = beginIdx, to = initialCwnd; i < endIdx; ++i, to += mss)
holds a vector of ns3::Application pointers.
uint32_t AddApplication(Ptr< Application > application)
static void SendPacket(Ptr< Socket > socket, uint32_t pktSize, uint32_t pktCount, Time pktInterval)
void SetStopTime(Time stop)
Specify application stop time.
keep track of time values and allow control of global simulation resolution
NS_LOG_COMPONENT_DEFINE("GrantedTimeWindowMpiInterface")
holds a vector of std::pair of Ptr and interface index.
hold variables of type string
NetDeviceContainer Install(NodeContainer c)
virtual ~Ns3TcpCwndTestCase1()
aggregate IP/TCP/UDP functionality to existing Nodes.
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes...
bool IsRunning(void) const
This method is syntactic sugar for the ns3::Simulator::isExpired method.
Build a set of PointToPointNetDevice objects.
void CwndChange(uint32_t oldCwnd, uint32_t newCwnd)
void SetDeviceAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each NetDevice created by the helper.
a polymophic address class
A simple way to store test vectors (for stimulus or from responses)
virtual void StopApplication(void)
Application specific shutdown code.
Class for representing data rates.
TestVectors< CwndEvent > m_responses
void EnablePcapAll(std::string prefix, bool promiscuous=false)
Enable pcap output on each device (which is of the appropriate type) in the set of all nodes created ...
void InstallAll(void) const
Aggregate IPv4, IPv6, UDP, and TCP stacks to all nodes in the simulation.
The base class for all ns3 applications.
hold objects of type ns3::Time
virtual void StartApplication(void)
Application specific startup code.
Hold an unsigned integer type.
holds a vector of ns3::NetDevice pointers
virtual void DoRun(void)
Implementation to actually run this TestCase.
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
Ns3TcpCwndTestSuite ns3TcpCwndTestSuite
void Start(Time start)
Arrange for all of the Applications in this container to Start() at the Time given as a parameter...
virtual int Connect(const Address &address)=0
Initiate a connection to a remote host.
void VerifyCwndRun(uint32_t beginIdx, uint32_t endIdx, uint32_t initialCwnd, uint32_t mss)
bool TraceConnectWithoutContext(std::string name, const CallbackBase &cb)
void SetDefault(std::string name, const AttributeValue &value)
virtual void DoRun(void)
Implementation to actually run this TestCase.
virtual int Bind(const Address &address)=0
Allocate a local endpoint for this socket.
keep track of a set of node pointers.
void SetTcp(std::string tid)
set the Tcp stack which will not need any other parameter.
uint64_t GetBitRate() const
Get the underlying bitrate.
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
TestVectors< CwndEvent > m_responses
void AddTestCase(TestCase *testCase) NS_DEPRECATED
Add an individual child TestCase case to this TestCase.
void SetChannelAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each Channel created by the helper.
void Stop(Time stop)
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter...
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
void Add(NodeContainer other)
Append the contents of another NodeContainer to the end of this container.
an identifier for simulation events.
hold objects of type ns3::DataRate
Ptr< Node > Get(uint32_t i) const
Get the Ptr stored in this container at a given index.
void Setup(Ptr< Socket > socket, Address address, uint32_t packetSize, uint32_t nPackets, DataRate dataRate)
ApplicationContainer Install(NodeContainer c) const
Install an ns3::PacketSinkApplication on each node of the input container configured with all the att...
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.
void CwndChange(uint32_t oldCwnd, uint32_t newCwnd)
virtual int Send(Ptr< Packet > p, uint32_t flags)=0
Send data (or dummy data) to the remote host.
virtual int Close(void)=0
Close a socket.
virtual ~Ns3TcpCwndTestCase2()
void SetStartTime(Time start)
Specify application start time.
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
#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.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const