Home | History | Annotate | Download | only in Tcp4Dxe

Lines Matching refs:SndNxt

143   Get the maximum SndNxt.

147 @return The sequence number of the maximum SndNxt.
159 return Tcb->SndNxt;
165 ASSERT (TCP_SEQ_GEQ (TCPSEG_NETBUF (Nbuf)->End, Tcb->SndNxt));
210 if (TCP_SEQ_GT (Limit, Tcb->SndNxt)) {
211 Win = TCP_SUB_SEQ (Limit, Tcb->SndNxt);
221 TCP_SUB_SEQ (TcpGetMaxSndNxt (Tcb), Tcb->SndNxt);
251 ((Tcb->SndNxt == Tcb->SndUna) ||
351 } else if ((Seg->End == Tcb->SndNxt) &&
430 ASSERT ((Tcb != NULL) && TCP_SEQ_LEQ (Seq, Tcb->SndNxt) && (Len > 0));
633 // Compare the SndNxt with the max sequence number sent.
755 Seq = Tcb->SndNxt;
803 if ((TcpGetMaxSndNxt (Tcb) == Tcb->SndNxt) &&
871 if (TCP_SEQ_GT (End, Tcb->SndNxt)) {
872 Tcb->SndNxt = End;
932 Seg->Seq = Tcb->SndNxt;
933 Seg->End = Tcb->SndNxt;
972 // SndNxt-1 is out of window. The peer should respond
976 Seg->Seq = Tcb->SndNxt - 1;
977 Seg->End = Tcb->SndNxt - 1;
1090 Nhead->Seq = HTONL (Tcb->SndNxt);