Searched refs:ProbeTime (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Timer.c392 Tcb->ProbeTime = Tcb->Rto;
396 Tcb->ProbeTime <<= 1;
399 if (Tcb->ProbeTime < TCP_RTO_MIN) {
401 Tcb->ProbeTime = TCP_RTO_MIN;
402 } else if (Tcb->ProbeTime > TCP_RTO_MAX) {
404 Tcb->ProbeTime = TCP_RTO_MAX;
407 TcpSetTimer (Tcb, TCP_TIMER_PROBE, Tcb->ProbeTime);
H A DTcp4Proto.h208 UINT32 ProbeTime; ///< The time out value for current window prober member in struct:_TCP_CB
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpTimer.c434 Tcb->ProbeTime = Tcb->Rto;
438 Tcb->ProbeTime <<= 1;
441 if (Tcb->ProbeTime < TCP_RTO_MIN) {
443 Tcb->ProbeTime = TCP_RTO_MIN;
444 } else if (Tcb->ProbeTime > TCP_RTO_MAX) {
446 Tcb->ProbeTime = TCP_RTO_MAX;
449 TcpSetTimer (Tcb, TCP_TIMER_PROBE, Tcb->ProbeTime);
H A DTcpProto.h285 UINT32 ProbeTime; ///< The time out value for current window prober. member in struct:_TCP_CONTROL_BLOCK

Completed in 37 milliseconds