21 #include "ns3/simple-channel.h"
23 #include "ns3/config.h"
24 #include "ns3/tcp-header.h"
60 uint32_t initSsTh, uint32_t packets,
const TypeId& congControl,
61 const std::string &desc);
64 virtual void CWndTrace (uint32_t oldValue, uint32_t newValue);
70 virtual void ConfigureEnvironment ();
71 virtual void ConfigureProperties ();
91 const std::string &desc)
95 m_totalAckedBytes (0),
96 m_allowedIncrease (0),
108 TcpGeneralTest::ConfigureEnvironment ();
116 TcpGeneralTest::ConfigureProperties ();
148 uint32_t segSize =
GetSegSize (TcpGeneralTest::SENDER);
149 uint32_t increase = newValue - oldValue;
155 " with a segsize of " << segSize);
163 NS_LOG_INFO (
"Incremented cWnd by " << segSize <<
" bytes in Slow Start " <<
164 "achieving a value of " << newValue);
233 uint32_t initSsTh, uint32_t packets,
const TypeId& congControl,
234 const std::string &desc);
245 const std::string &msg)
256 TcpSocketSmallAcks::GetTypeId (),
258 socket->SetBytesToAck (125);
276 std::list<TypeId> types = {
277 TcpNewReno::GetTypeId (),
280 for (
const auto &t : types)
282 std::string typeName = t.
GetName ();
285 "slow start 500 byte, " + typeName),
288 "slow start 1000 byte, " + typeName),
291 "slow start small packets, " + typeName),
294 "slow start ack attacker, 500 byte, " + typeName),
297 "slow start ack attacker, 1000 byte, " + typeName),
A slow start test using a socket which sends smaller ACKs.
TcpSlowStartAttackerTest(uint32_t segmentSize, uint32_t packetSize, uint32_t initSsTh, uint32_t packets, const TypeId &congControl, const std::string &desc)
Constructor.
virtual Ptr< TcpSocketMsgBase > CreateReceiverSocket(Ptr< Node > node)
Create and install the socket to install on the receiver.
Test the normal behavior for slow start.
bool m_initial
First cycle flag.
TcpSlowStartNormalTest(uint32_t segmentSize, uint32_t packetSize, uint32_t initSsTh, uint32_t packets, const TypeId &congControl, const std::string &desc)
Constructor.
uint32_t m_packetSize
Packet size.
virtual void Tx(const Ptr< const Packet > p, const TcpHeader &h, SocketWho who)
Packet transmitted down to IP layer.
uint32_t m_packets
Packet counter.
virtual void Rx(const Ptr< const Packet > p, const TcpHeader &h, SocketWho who)
Packet received from IP layer.
void QueueDrop(SocketWho who)
uint32_t m_ackedBytes
ACKed bytes.
void PhyDrop(SocketWho who)
uint32_t m_segmentSize
Segment size.
virtual void ConfigureEnvironment()
Change the configuration of the environment.
uint32_t m_sentBytes
Sent bytes.
uint32_t m_totalAckedBytes
Total ACKed bytes.
virtual void ConfigureProperties()
Change the configuration of the socket properties.
uint32_t m_allowedIncrease
Allowed increase.
virtual void CWndTrace(uint32_t oldValue, uint32_t newValue)
Trace the cWnd over the slow start.
TCP Slow Start TestSuite.
NUMERIC_TYPE GetValue() const
Extracts the numeric value of the sequence number.
General infrastructure for TCP testing.
void SetAppPktCount(uint32_t pktCount)
Set app packet count.
SocketWho
Used as parameter of methods, specifies on what node the caller is interested (e.g.
void SetAppPktSize(uint32_t pktSize)
Set app packet size.
uint32_t GetInitialSsThresh(SocketWho who)
Get the initial slow start threshold.
virtual Ptr< TcpSocketMsgBase > CreateSocket(Ptr< Node > node, TypeId socketType, TypeId congControl)
Create a socket.
uint32_t GetSegSize(SocketWho who)
Get the segment size of the node specified.
TypeId m_congControlTypeId
Congestion control.
void SetInitialSsThresh(SocketWho who, uint32_t initialSsThresh)
Forcefully set the initial ssthresh.
void SetSegmentSize(SocketWho who, uint32_t segmentSize)
Forcefully set the segment size.
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
std::string GetName(void) const
@ UNIT
This test suite implements a Unit Test.
a unique identifier for an interface.
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Time Now(void)
create an ns3::Time instance which contains the current simulation time.
#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.
#define NS_TEST_ASSERT_MSG_LT_OR_EQ(actual, limit, msg)
Test that an actual value is less than or equal to a limit and report and abort if not.
#define NS_TEST_ASSERT_MSG_GT_OR_EQ(actual, limit, msg)
Test that an actual value is greater than or equal to a limit and report and abort if not.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
static TcpSlowStartTestSuite g_tcpSlowStartTestSuite
Static variable for test initialization.
static const uint32_t packetSize