19 #ifndef TCPGENERALTEST_H
20 #define TCPGENERALTEST_H
22 #include "ns3/simple-net-device.h"
23 #include "ns3/error-model.h"
24 #include "ns3/tcp-socket-base.h"
212 uint32_t pktSize = 500,
213 uint32_t pktCount = 10,
217 uint32_t initialSlowStartThresh = 0xffff,
218 uint32_t initialCwnd = 1,
219 uint32_t segmentSize = 500,
221 uint32_t mtu = 1500);
305 virtual void DoRun (
void);
334 uint32_t pktCount,
Time pktInterval);
477 virtual void CWndTrace (uint32_t oldValue, uint32_t newValue)
710 #endif // TCPGENERALTEST_H
virtual void ProcessedAck(const Ptr< const TcpSocketState > tcb, const TcpHeader &h, SocketWho who)
Processed ack.
Time GetMinRto(SocketWho who)
Get the minimun RTO attribute.
Simulation virtual time values and global simulation resolution.
virtual void DoTeardown(void)
Teardown the TCP test.
Time GetPersistentTimeout(SocketWho who)
Get the persistent timeout of the selected socket.
Smart pointer class similar to boost::intrusive_ptr.
virtual void SendEmptyPacket(uint8_t flags)
Send empty packet, copied/pasted from TcpSocketBase.
uint32_t GetPktSize() const
Get the application packet size.
Ptr< TcpSocketMsgBase > m_senderSocket
Pointer to sender socket.
void PhyDropCb(std::string context, Ptr< const Packet > p)
Time m_propagationDelay
Propagation delay of the channel.
uint32_t GetDelAckCount(SocketWho who)
Get the number of delayed ack (if present)
uint32_t GetSegSize(SocketWho who)
Get the segment size of the node specified.
Class for inserting callbacks special points of the flow of TCP sockets.
Ptr< TcpSocketMsgBase > GetSenderSocket()
Get the pointer to a previously created sender socket.
void SetForkCb(Callback< void, Ptr< TcpSocketMsgBase > > cb)
Set the callback invoked after the forking.
virtual void DoRun(void)
Execute the tcp test.
void NormalCloseCb(Ptr< Socket > socket)
virtual void PhyDrop(SocketWho who)
Link drop.
void QueueDropCb(std::string context, Ptr< const Packet > p)
virtual void ErrorClose(SocketWho who)
Socket closed with an error.
void SetBytesToAck(uint32_t bytes)
virtual Ptr< TcpSocketMsgBase > CreateReceiverSocket(Ptr< Node > node)
Create and install the socket to install on the receiver.
virtual void FinalChecks()
Performs the (eventual) final checks through test asserts.
Callback< void, Ptr< const Packet >, const TcpHeader &, Ptr< const TcpSocketBase > > AckManagementCallback
void DoConnect()
Scheduled at 0.0, SENDER starts the connection to RECEIVER.
void SendPacket(Ptr< Socket > socket, uint32_t pktSize, uint32_t pktCount, Time pktInterval)
Send packets to other endpoint.
virtual void CompleteFork(Ptr< Packet > p, const TcpHeader &tcpHeader, const Address &fromAddress, const Address &toAddress)
Complete a connection by forking the socket.
AckManagementCallback m_rcvAckCb
virtual void Rx(const Ptr< const Packet > p, const TcpHeader &h, SocketWho who)
Packet received from IP layer.
static TcpSocketState::TcpCongState_t GetCongStateFrom(Ptr< const TcpSocketState > tcb)
Convenience function to retrieve the ACK state from a TCB.
T Get(void) const
Get the underlying value.
virtual void Tx(const Ptr< const Packet > p, const TcpHeader &h, SocketWho who)
Packet transmitted down to IP layer.
virtual Ptr< ErrorModel > CreateSenderErrorModel()
Create and return the error model to install in the sender node.
uint32_t m_initialCwnd
Initial congestion window.
a polymophic address class
RetrCallback m_retrCallback
void SetRcvAckCb(AckManagementCallback cb)
Set the callback invoked when an ACK is received (at the beginning of the processing) ...
TcpGeneralTest(const std::string &desc, uint32_t pktSize=500, uint32_t pktCount=10, const Time &pktInterval=Seconds(0.01), const Time &propagationDelay=Seconds(0.5), const Time &startTime=Seconds(10), uint32_t initialSlowStartThresh=0xffff, uint32_t initialCwnd=1, uint32_t segmentSize=500, TypeId congestionControl=TcpNewReno::GetTypeId(), uint32_t mtu=1500)
TcpGeneralTest constructor.
uint32_t GetRWnd(SocketWho who)
Get the rWnd of the selected socket.
virtual void ReceivePacket(Ptr< Socket > socket)
Packet received.
Time GetDelAckTimeout(SocketWho who)
Get the timeout of delayed ack (if present)
static TypeId GetTypeId(void)
Get the type ID.
void ErrorCloseCb(Ptr< Socket > socket)
Callback< void, Ptr< const TcpSocketState >, Ptr< const TcpSocketBase > > RetrCallback
uint32_t GetDupAckCount(SocketWho who)
Get the number of dupack received.
TcpSocketMsgBase(const TcpSocketMsgBase &other)
virtual void Retransmit(void)
Halving cwnd and call DoRetransmit()
virtual Ptr< TcpSocketBase > Fork(void)
Call CopyObject<> to clone me.
void SetRetransmitCb(RetrCallback cb)
Set the callback invoked after the processing of a retransmit timeout.
uint32_t m_pktCount
Count of the application packet.
Time m_interPacketInterval
Time between sending application packet.
uint32_t GetInitialCwnd() const
Get the initial congestion window.
Time GetConnTimeout(SocketWho who)
Get the retransmission time for the SYN segments.
A base class for implementation of a stream socket using TCP.
void ProcessedAckCb(Ptr< const Packet > p, const TcpHeader &h, Ptr< const TcpSocketBase > tcp)
virtual Ptr< TcpSocketMsgBase > CreateSocket(Ptr< Node > node, TypeId socketType, TypeId congControl)
Create a socket.
virtual void RcvAck(const Ptr< const TcpSocketState > tcb, const TcpHeader &h, SocketWho who)
Received ack.
TcpCongState_t
Definition of the Congestion state machine.
AckManagementCallback m_processedAckCb
void RxPacketCb(const Ptr< const Packet > p, const TcpHeader &h, const Ptr< const TcpSocketBase > tcp)
uint32_t GetMtu() const
Get the MTU of the environment.
Ptr< TcpSocketMsgBase > m_receiverSocket
Pointer to receiver socket.
Time GetRto(SocketWho who)
Get the retransmission time.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
virtual void QueueDrop(SocketWho who)
Drop on the queue.
TracedValue< TcpCongState_t > m_congState
State in the Congestion state machine.
virtual Ptr< TcpSocketMsgBase > CreateSenderSocket(Ptr< Node > node)
Create and install the socket to install on the sender.
TcpSocketSmallAcks(const TcpSocketSmallAcks &other)
uint32_t GetReTxThreshold(SocketWho who)
Get the retransmission threshold.
static TypeId GetTypeId(void)
void ForkCb(Ptr< TcpSocketMsgBase > tcp)
Time GetClockGranularity(SocketWho who)
Get the clock granularity attribute.
void SetProcessedAckCb(AckManagementCallback cb)
Set the callback invoked when an ACK is received and processed (at the end of the processing) ...
virtual void CongStateTrace(const TcpSocketState::TcpCongState_t oldValue, const TcpSocketState::TcpCongState_t newValue)
State on Ack state machine changes.
Time GetPktInterval() const
Get the interval to wait for each packet sent down from application to TCP.
SocketWho
Used as parameter of methods, specifies on what node the caller is interested (e.g.
virtual void NormalClose(SocketWho who)
Socket closed normally.
Ptr< RttEstimator > GetRttEstimator(SocketWho who)
Get the Rtt estimator of the socket.
General infrastructure for TCP testing.
An identifier for simulation events.
Time GetStartTime() const
Get the data start time.
static TypeId GetTypeId(void)
Ptr< TcpSocketMsgBase > GetReceiverSocket()
Get the pointer to a previously created receiver socket.
virtual Ptr< SimpleChannel > CreateChannel()
Create and return the channel installed between the two socket.
Time Seconds(double value)
Construct a Time in the indicated unit.
void TxPacketCb(const Ptr< const Packet > p, const TcpHeader &h, const Ptr< const TcpSocketBase > tcp)
Ptr< TcpSocketState > GetTcb(SocketWho who)
Get the TCB from selected socket.
uint32_t GetPktCount() const
Get the number of application packets.
void RtoExpiredCb(const Ptr< const TcpSocketState > tcb, const Ptr< const TcpSocketBase > tcp)
uint32_t m_mtu
MTU of the environment.
Callback< void, Ptr< TcpSocketMsgBase > > m_forkCb
Time GetPropagationDelay() const
Get the channel Propagation Delay.
A TCP socket which sends ACKs smaller than the segment received.
EventId GetPersistentEvent(SocketWho who)
Get the persistent event of the selected socket.
virtual Ptr< ErrorModel > CreateReceiverErrorModel()
Create and return the error model to install in the receiver node.
virtual void ReceivedAck(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received an ACK packet.
uint32_t m_initialSlowStartThresh
Initial slow start threshold.
void RcvAckCb(Ptr< const Packet > p, const TcpHeader &h, Ptr< const TcpSocketBase > tcp)
uint32_t m_bytesLeftToBeAcked
SequenceNumber32 m_lastAckedSeq
InetSocketAddress m_remoteAddr
void SetRcvBufSize(SocketWho who, uint32_t size)
Forcefully set a defined size for rx buffer.
TcpStates_t
Names of the 11 TCP states.
uint32_t GetInitialSsThresh() const
Get the initial slow start threshold.
uint32_t m_segmentSize
Segment size.
virtual void RTOExpired(const Ptr< const TcpSocketState > tcb, SocketWho who)
Rto has expired.
Ptr< TcpSocketBase > Fork(void)
Call CopyObject<> to clone me.
a unique identifier for an interface.
virtual void CWndTrace(uint32_t oldValue, uint32_t newValue)
Congestion window changes.
uint32_t m_pktSize
Size of the application packet.
TcpSocket::TcpStates_t GetTcpState(SocketWho who)
Get the state of the TCP state machine.
Time m_startTime
Data transmission time.
void HandleAccept(Ptr< Socket > socket, const Address &from)
TypeId m_congControlTypeId
Congestion control.