mirror of
https://github.com/curl/curl.git
synced 2026-07-30 19:48:04 +03:00
vquic.c guard off EAGAIN as in cf-socket.c
This commit is contained in:
parent
fb0d07ec8c
commit
e23f4a1a73
1 changed files with 2 additions and 2 deletions
|
|
@ -166,9 +166,9 @@ static CURLcode do_sendmsg(struct Curl_cfilter *cf,
|
|||
|
||||
if(!curlx_sztouz(rv, psent)) {
|
||||
switch(SOCKERRNO) {
|
||||
case EAGAIN:
|
||||
#if EAGAIN != SOCKEWOULDBLOCK
|
||||
case SOCKEWOULDBLOCK:
|
||||
#if EAGAIN != SOCKEWOULDBLOCK
|
||||
case EAGAIN:
|
||||
#endif
|
||||
return CURLE_AGAIN;
|
||||
case SOCKEMSGSIZE:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue