equal
deleted
inserted
replaced
33 static TypeId tid = TypeId ("ns3::TcpRxBuffer") |
33 static TypeId tid = TypeId ("ns3::TcpRxBuffer") |
34 .SetParent<Object> () |
34 .SetParent<Object> () |
35 .AddConstructor<TcpRxBuffer> () |
35 .AddConstructor<TcpRxBuffer> () |
36 .AddTraceSource ("NextRxSequence", |
36 .AddTraceSource ("NextRxSequence", |
37 "Next sequence number expected (RCV.NXT)", |
37 "Next sequence number expected (RCV.NXT)", |
38 MakeTraceSourceAccessor (&TcpRxBuffer::m_nextRxSeq)) |
38 MakeTraceSourceAccessor (&TcpRxBuffer::m_nextRxSeq), |
|
39 "ns3::SequenceNumber32TracedValueCallback") |
39 ; |
40 ; |
40 return tid; |
41 return tid; |
41 } |
42 } |
42 |
43 |
43 /* A user is supposed to create a TcpSocket through a factory. In TcpSocket, |
44 /* A user is supposed to create a TcpSocket through a factory. In TcpSocket, |