speedlimit: also reset on send unpausing

The low speedlimit currently counts both up- and download speed
accumulated. So, when unpausing upload, also reset the counter.

Closes #19687
This commit is contained in:
Stefan Eissing 2025-11-25 09:30:34 +01:00 committed by Daniel Stenberg
parent 6069c340b4
commit ba65073037
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
3 changed files with 11 additions and 1 deletions

View file

@ -196,6 +196,14 @@ void Curl_pgrsRecvPause(struct Curl_easy *data, bool enable)
}
}
void Curl_pgrsSendPause(struct Curl_easy *data, bool enable)
{
if(!enable) {
data->progress.speeder_c = 0; /* reset speed records */
pgrs_speedinit(data); /* reset low speed measurements */
}
}
/*
*
* Curl_pgrsTimeWas(). Store the timestamp time at the given label.