Home | History | Annotate | Download | only in Tcp4Dxe

Lines Matching refs:CWnd

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

90 // If this is a duplicated ACK, increse Cwnd by SMSS.
96 Tcb->CWnd += Tcb->SndMss;
114 Tcb->CWnd = MIN (Tcb->Ssthresh, FlightSize + Tcb->SndMss);
125 // , then deflate the CWnd
131 // Deflate the CWnd by the amount of new data
133 // is ACKed, add back SMSS byte to CWnd after
140 Tcb->CWnd -= Acked;
1120 if (Tcb->CWnd < Tcb->Ssthresh) {
1122 Tcb->CWnd += Tcb->SndMss;
1125 Tcb->CWnd += MAX (Tcb->SndMss * Tcb->SndMss / Tcb->CWnd, 1);
1128 Tcb->CWnd = MIN (Tcb->CWnd, TCP_MAX_WIN << Tcb->SndWndScale);