mirror of
https://github.com/curl/curl.git
synced 2026-05-30 07:37:33 +03:00
vquic: sending non-gso packets fix for EAGAIN
The function returned OK on EAGAIN and not the correct code. Reported-by: Joshua Rogers Closes #18936
This commit is contained in:
parent
cc7b12347b
commit
0b4a704500
1 changed files with 1 additions and 1 deletions
|
|
@ -254,7 +254,7 @@ out:
|
|||
CURL_TRC_CF(data, cf, "vquic_%s(len=%zu, gso=%zu, calls=%zu)"
|
||||
" -> %d, sent=%zu",
|
||||
VQUIC_SEND_METHOD, pktlen, gsolen, calls, result, *psent);
|
||||
return CURLE_OK;
|
||||
return result;
|
||||
}
|
||||
|
||||
static CURLcode vquic_send_packets(struct Curl_cfilter *cf,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue