Home | History | Annotate | Download | only in TcpDxe

Lines Matching refs:CWnd

74     Tcb->CWnd = Tcb->Ssthresh + 3 * Tcb->SndMss;

92 // If this is a duplicated ACK, increse Cwnd by SMSS.
98 Tcb->CWnd += Tcb->SndMss;
120 Tcb->CWnd = MIN (Tcb->Ssthresh, FlightSize + Tcb->SndMss);
135 // , then deflate the CWnd
141 // Deflate the CWnd by the amount of new data
143 // is ACKed, add back SMSS byte to CWnd after
150 Tcb->CWnd -= Acked;
1230 if (Tcb->CWnd < Tcb->Ssthresh) {
1232 Tcb->CWnd += Tcb->SndMss;
1235 Tcb->CWnd += MAX (Tcb->SndMss * Tcb->SndMss / Tcb->CWnd, 1);
1238 Tcb->CWnd = MIN (Tcb->CWnd, TCP_MAX_WIN << Tcb->SndWndScale);