Searched refs:SndMss (Results 1 – 12 of 12) sorted by relevance
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/ |
D | TcpInput.c | 64 Tcb->Ssthresh = MAX (FlightSize >> 1, (UINT32) (2 * Tcb->SndMss)); in TcpFastRecover() 74 Tcb->CWnd = Tcb->Ssthresh + 3 * Tcb->SndMss; in TcpFastRecover() 98 Tcb->CWnd += Tcb->SndMss; in TcpFastRecover() 120 Tcb->CWnd = MIN (Tcb->Ssthresh, FlightSize + Tcb->SndMss); in TcpFastRecover() 145 if (Acked >= Tcb->SndMss) { in TcpFastRecover() 146 Acked -= Tcb->SndMss; in TcpFastRecover() 1239 Tcb->CWnd += Tcb->SndMss; in TcpInput() 1242 Tcb->CWnd += MAX (Tcb->SndMss * Tcb->SndMss / Tcb->CWnd, 1); in TcpInput()
|
D | TcpOutput.c | 95 if ((Increase > Tcb->SndMss) || (2 * Increase >= GET_RCV_BUFFSIZE (Sk))) { in TcpRcvWinNow() 219 if (Len > Tcb->SndMss) { in TcpDataToSend() 220 Len = Tcb->SndMss; in TcpDataToSend() 239 if ((Len == Tcb->SndMss) || (2 * Len >= Tcb->SndWndMax)) { in TcpDataToSend() 678 Len = MIN (Len, Tcb->SndMss); in TcpRetransmit() 941 } while (Len == Tcb->SndMss); in TcpToSendData()
|
D | TcpMisc.c | 124 Tcb->SndMss = (UINT16) MAX (64, Opt->Mss); in TcpInitTcbPeer() 127 if (Tcb->SndMss > RcvMss) { in TcpInitTcbPeer() 128 Tcb->SndMss = RcvMss; in TcpInitTcbPeer() 138 Tcb->CWnd = Tcb->SndMss; in TcpInitTcbPeer() 171 Tcb->SndMss -= TCP_OPTION_TS_ALIGNED_LEN; in TcpInitTcbPeer()
|
D | TcpTimer.c | 207 Tcb->Ssthresh = MAX ((UINT32) (2 * Tcb->SndMss), FlightSize / 2); in TcpRexmitTimeout() 209 Tcb->CWnd = Tcb->SndMss; in TcpRexmitTimeout()
|
D | TcpProto.h | 272 UINT16 SndMss; ///< Max send segment size. member
|
D | TcpDispatcher.c | 583 Tcb->SndMss = 536; in TcpConfigurePcb() 589 Tcb->CWnd = Tcb->SndMss; in TcpConfigurePcb()
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/ |
D | Tcp4Input.c | 66 Tcb->Ssthresh = MAX (FlightSize >> 1, (UINT32) (2 * Tcb->SndMss)); in TcpFastRecover() 76 Tcb->CWnd = Tcb->Ssthresh + 3 * Tcb->SndMss; in TcpFastRecover() 96 Tcb->CWnd += Tcb->SndMss; in TcpFastRecover() 114 Tcb->CWnd = MIN (Tcb->Ssthresh, FlightSize + Tcb->SndMss); in TcpFastRecover() 135 if (Acked >= Tcb->SndMss) { in TcpFastRecover() 136 Acked -= Tcb->SndMss; in TcpFastRecover() 1128 Tcb->CWnd += Tcb->SndMss; in TcpInput() 1131 Tcb->CWnd += MAX (Tcb->SndMss * Tcb->SndMss / Tcb->CWnd, 1); in TcpInput()
|
D | Tcp4Misc.c | 118 Tcb->SndMss = (UINT16) MAX (64, Opt->Mss); in TcpInitTcbPeer() 121 if (Tcb->SndMss > RcvMss) { in TcpInitTcbPeer() 122 Tcb->SndMss = RcvMss; in TcpInitTcbPeer() 132 Tcb->CWnd = Tcb->SndMss; in TcpInitTcbPeer() 167 Tcb->SndMss -= TCP_OPTION_TS_ALIGNED_LEN; in TcpInitTcbPeer()
|
D | Tcp4Output.c | 96 if ((Increase > Tcb->SndMss) || in TcpRcvWinNow() 225 if (Len > Tcb->SndMss) { in TcpDataToSend() 226 Len = Tcb->SndMss; in TcpDataToSend() 245 if ((Len == Tcb->SndMss) || (2 * Len >= Tcb->SndWndMax)) { in TcpDataToSend() 682 Len = MIN (Len, Tcb->SndMss); in TcpRetransmit() 894 if (Len == Tcb->SndMss) { in TcpToSendData()
|
D | Tcp4Timer.c | 166 Tcb->Ssthresh = MAX ((UINT32) (2 * Tcb->SndMss), FlightSize / 2); in TcpRexmitTimeout() 168 Tcb->CWnd = Tcb->SndMss; in TcpRexmitTimeout()
|
D | Tcp4Dispatcher.c | 433 Tcb->SndMss = 536; in Tcp4ConfigurePcb() 439 Tcb->CWnd = Tcb->SndMss; in Tcp4ConfigurePcb()
|
D | Tcp4Proto.h | 195 UINT16 SndMss; ///< Max send segment size member
|