We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebd5109 commit bc7e16aCopy full SHA for bc7e16a
1 file changed
cups/tls-openssl.c
@@ -1723,6 +1723,7 @@ _httpTLSRead(http_t *http, // I - Connection to server
1723
if (bytes > 0)
1724
return (bytes);
1725
1726
+ // For now, make difference only for error after which we can retry, EPIPE otherwise...
1727
if (SSL_get_error(http->tls, bytes) == SSL_ERROR_WANT_READ)
1728
errno = EAGAIN;
1729
else
@@ -2068,6 +2069,7 @@ _httpTLSWrite(http_t *http, // I - Connection to server
2068
2069
2070
2071
2072
2073
if (SSL_get_error(http->tls, bytes) == SSL_ERROR_WANT_WRITE)
2074
2075
0 commit comments