vquic.c guard off EAGAIN as in cf-socket.c

This commit is contained in:
Viktor Szakats 2026-06-08 02:37:04 +02:00
parent fb0d07ec8c
commit e23f4a1a73
No known key found for this signature in database

View file

@ -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: