Home
last modified time | relevance | path

Searched refs:SndMss (Results 1 – 12 of 12) sorted by relevance

/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
DTcpInput.c64 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()
DTcpOutput.c95 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()
DTcpMisc.c124 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()
DTcpTimer.c207 Tcb->Ssthresh = MAX ((UINT32) (2 * Tcb->SndMss), FlightSize / 2); in TcpRexmitTimeout()
209 Tcb->CWnd = Tcb->SndMss; in TcpRexmitTimeout()
DTcpProto.h272 UINT16 SndMss; ///< Max send segment size. member
DTcpDispatcher.c583 Tcb->SndMss = 536; in TcpConfigurePcb()
589 Tcb->CWnd = Tcb->SndMss; in TcpConfigurePcb()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
DTcp4Input.c66 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()
DTcp4Misc.c118 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()
DTcp4Output.c96 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()
DTcp4Timer.c166 Tcb->Ssthresh = MAX ((UINT32) (2 * Tcb->SndMss), FlightSize / 2); in TcpRexmitTimeout()
168 Tcb->CWnd = Tcb->SndMss; in TcpRexmitTimeout()
DTcp4Dispatcher.c433 Tcb->SndMss = 536; in Tcp4ConfigurePcb()
439 Tcb->CWnd = Tcb->SndMss; in Tcp4ConfigurePcb()
DTcp4Proto.h195 UINT16 SndMss; ///< Max send segment size member