Home | History | Annotate | Download | only in TcpDxe

Lines Matching refs:SndNxt

139   Get the maximum SndNxt.

143 @return The sequence number of the maximum SndNxt.
155 return Tcb->SndNxt;
161 ASSERT (TCP_SEQ_GEQ (TCPSEG_NETBUF (Nbuf)->End, Tcb->SndNxt));
205 if (TCP_SEQ_GT (Limit, Tcb->SndNxt)) {
206 Win = TCP_SUB_SEQ (Limit, Tcb->SndNxt);
215 Left = GET_SND_DATASIZE (Sk) + TCP_SUB_SEQ (TcpGetMaxSndNxt (Tcb), Tcb->SndNxt);
245 ((Tcb->SndNxt == Tcb->SndUna) || TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_NO_NAGLE))
346 } else if ((Seg->End == Tcb->SndNxt) && (GET_SND_DATASIZE (Tcb->Sk) == 0)) {
422 ASSERT ((Tcb != NULL) && TCP_SEQ_LEQ (Seq, Tcb->SndNxt) && (Len > 0));
627 // Compare the SndNxt with the max sequence number sent.
798 Seq = Tcb->SndNxt;
845 if ((TcpGetMaxSndNxt (Tcb) == Tcb->SndNxt) &&
915 if (TCP_SEQ_GT (End, Tcb->SndNxt)) {
916 Tcb->SndNxt = End;
976 Seg->Seq = Tcb->SndNxt;
977 Seg->End = Tcb->SndNxt;
1015 // SndNxt-1 is out of window. The peer should respond
1019 Seg->Seq = Tcb->SndNxt - 1;
1020 Seg->End = Tcb->SndNxt - 1;
1141 Nhead->Seq = HTONL (Tcb->SndNxt);