mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Fix RTT set before value is available
This commit is contained in:
parent
722c0044b1
commit
7556bf43a6
@ -995,13 +995,15 @@ bool UDPPeer::isTimedOut(float timeout, std::string &reason)
|
|||||||
|
|
||||||
void UDPPeer::reportRTT(float rtt)
|
void UDPPeer::reportRTT(float rtt)
|
||||||
{
|
{
|
||||||
if (rtt < 0.0) {
|
if (rtt < 0)
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
RTTStatistics(rtt,"rudp",MAX_RELIABLE_WINDOW_SIZE*10);
|
RTTStatistics(rtt,"rudp",MAX_RELIABLE_WINDOW_SIZE*10);
|
||||||
|
|
||||||
// use this value to decide the resend timeout
|
// use this value to decide the resend timeout
|
||||||
float timeout = getStat(AVG_RTT) * RESEND_TIMEOUT_FACTOR;
|
const float rtt_stat = getStat(AVG_RTT);
|
||||||
|
if (rtt_stat < 0)
|
||||||
|
return;
|
||||||
|
float timeout = rtt_stat * RESEND_TIMEOUT_FACTOR;
|
||||||
if (timeout < RESEND_TIMEOUT_MIN)
|
if (timeout < RESEND_TIMEOUT_MIN)
|
||||||
timeout = RESEND_TIMEOUT_MIN;
|
timeout = RESEND_TIMEOUT_MIN;
|
||||||
if (timeout > RESEND_TIMEOUT_MAX)
|
if (timeout > RESEND_TIMEOUT_MAX)
|
||||||
|
Loading…
Reference in New Issue
Block a user