mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:31:41 +03:00
aws-lc: do not use large buffer
test_10_08, uploading larger files for a h2 proxy, sporadically fails with a decrpytion error on received data in AWS-LC. The frequency can be increased by simulated network receive blocks. Not setting a 4 * TLS record sized buffer, leaving AWS-LC at its default buffer size seems to mitigate this problem. Closes #18434
This commit is contained in:
parent
63b7d8b8f4
commit
e65dc7fa23
3 changed files with 9 additions and 4 deletions
|
|
@ -474,7 +474,7 @@ static CURLcode proxy_h2_progress_ingress(struct Curl_cfilter *cf,
|
|||
Curl_bufq_len(&ctx->inbufq), result, nread);
|
||||
if(result) {
|
||||
if(result != CURLE_AGAIN) {
|
||||
failf(data, "Failed receiving HTTP2 data");
|
||||
failf(data, "Failed receiving HTTP2 proxy data");
|
||||
return result;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue