src/internet/model/tcp-rx-buffer.cc
changeset 10978 754c8256c35c
parent 10968 2d29fee2b7b8
child 11151 5c9ec4cf871f
equal deleted inserted replaced
10977:f35701d8a0a0 10978:754c8256c35c
    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,