21 #define __STDC_LIMIT_MACROS 23 #include "ns3/object.h" 25 #include "ns3/uinteger.h" 26 #include "ns3/double.h" 27 #include "ns3/boolean.h" 28 #include "ns3/trace-source-accessor.h" 29 #include "ns3/nstime.h" 40 "SYN_RCVD",
"ESTABLISHED",
"CLOSE_WAIT",
41 "LAST_ACK",
"FIN_WAIT_1",
"FIN_WAIT_2",
42 "CLOSING",
"TIME_WAIT" };
49 .SetGroupName (
"Internet")
50 .AddAttribute (
"SndBufSize",
51 "TcpSocket maximum transmit buffer size (bytes)",
55 MakeUintegerChecker<uint32_t> ())
56 .AddAttribute (
"RcvBufSize",
57 "TcpSocket maximum receive buffer size (bytes)",
61 MakeUintegerChecker<uint32_t> ())
62 .AddAttribute (
"SegmentSize",
63 "TCP maximum segment size in bytes (may be adjusted based on MTU discovery)",
67 MakeUintegerChecker<uint32_t> ())
68 .AddAttribute (
"InitialSlowStartThreshold",
69 "TCP initial slow start threshold (bytes)",
73 MakeUintegerChecker<uint32_t> ())
74 .AddAttribute (
"InitialCwnd",
75 "TCP initial congestion window size (segments)",
79 MakeUintegerChecker<uint32_t> ())
80 .AddAttribute (
"ConnTimeout",
81 "TCP retransmission timeout when opening connection (seconds)",
86 .AddAttribute (
"ConnCount",
87 "Number of connection attempts (SYN retransmissions) before " 92 MakeUintegerChecker<uint32_t> ())
93 .AddAttribute (
"DataRetries",
94 "Number of data retransmission attempts",
98 MakeUintegerChecker<uint32_t> ())
99 .AddAttribute (
"DelAckTimeout",
100 "Timeout value for TCP delayed acks, in seconds",
105 .AddAttribute (
"DelAckCount",
106 "Number of packets to wait before sending a TCP ack",
110 MakeUintegerChecker<uint32_t> ())
111 .AddAttribute (
"TcpNoDelay",
"Set to true to disable Nagle's algorithm",
116 .AddAttribute (
"PersistTimeout",
117 "Persist timeout to probe for rx window",
virtual void SetSndBufSize(uint32_t size)=0
Set the send buffer size.
AttributeValue implementation for Boolean.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
virtual uint32_t GetDataRetries(void) const =0
Get the number of data transmission retries before giving up.
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Last state, used only in debug messages.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_FUNCTION_NOARGS()
Output the name of the function.
virtual void SetInitialCwnd(uint32_t cwnd)=0
Set the initial Congestion Window.
virtual void SetRcvBufSize(uint32_t size)=0
Set the receive buffer size.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
virtual void SetInitialSSThresh(uint32_t threshold)=0
Set the initial Slow Start Threshold.
virtual void SetPersistTimeout(Time timeout)=0
Set the timeout for persistent connection.
A low-level Socket API based loosely on the BSD Socket API.
static const char *const TcpStateName[TcpSocket::LAST_STATE]
Literal names of TCP states for use in log messages.
static TypeId GetTypeId(void)
Get the type ID.
AttributeValue implementation for Time.
virtual void SetDataRetries(uint32_t retries)=0
Set the number of data transmission retries before giving up.
Hold an unsigned integer type.
virtual void SetSynRetries(uint32_t count)=0
Set the number of connection retries before giving up.
virtual uint32_t GetSndBufSize(void) const =0
Get the send buffer size.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
virtual void SetDelAckMaxCount(uint32_t count)=0
Set the number of packet to fire an ACK before delay timeout.
Ptr< const AttributeChecker > MakeBooleanChecker(void)
virtual void SetTcpNoDelay(bool noDelay)=0
Enable/Disable Nagle's algorithm.
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
virtual uint32_t GetRcvBufSize(void) const =0
Get the receive buffer size.
virtual uint32_t GetSynRetries(void) const =0
Get the number of connection retries before giving up.
virtual void SetDelAckTimeout(Time timeout)=0
Set the time to delay an ACK.
virtual uint32_t GetSegSize(void) const =0
Get the segment size.
virtual Time GetDelAckTimeout(void) const =0
Get the time to delay an ACK.
virtual bool GetTcpNoDelay(void) const =0
Check if Nagle's algorithm is enabled or not.
virtual void SetConnTimeout(Time timeout)=0
Set the connection timeout.
virtual uint32_t GetDelAckMaxCount(void) const =0
Get the number of packet to fire an ACK before delay timeout.
virtual Time GetConnTimeout(void) const =0
Get the connection timeout.
Time Seconds(double value)
Construct a Time in the indicated unit.
virtual void SetSegSize(uint32_t size)=0
Set the segment size.
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
a unique identifier for an interface.
virtual uint32_t GetInitialCwnd(void) const =0
Get the initial Congestion Window.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
virtual uint32_t GetInitialSSThresh(void) const =0
Get the initial Slow Start Threshold.
virtual Time GetPersistTimeout(void) const =0
Get the timeout for persistent connection.