} value;
} BIO_POLL_DESCRIPTOR;
- __owur int BIO_get_rpoll_descriptor(BIO *b, BIO_POLL_DESCRIPTOR *desc);
- __owur int BIO_get_wpoll_descriptor(BIO *b, BIO_POLL_DESCRIPTOR *desc);
+ int BIO_get_rpoll_descriptor(BIO *b, BIO_POLL_DESCRIPTOR *desc);
+ int BIO_get_wpoll_descriptor(BIO *b, BIO_POLL_DESCRIPTOR *desc);
=head1 DESCRIPTION
QUIC implements its own flow control and uses UDP datagrams, backpressure
conditions in terms of the underlying BIO providing network I/O are not directly
relevant to the circumstances in which these errors are produced. In particular,
-B<SSL_ERROR_WANT_WRITE> indicates that the internal send buffer for a given QUIC
-stream has been filled. Likewise, B<SSL_ERROR_WANT_READ> indicates that the
-internal receive buffer for a given QUIC stream is empty.
+B<SSL_ERROR_WANT_WRITE> indicates that the OpenSSL internal send buffer for a
+given QUIC stream has been filled. Likewise, B<SSL_ERROR_WANT_READ> indicates
+that the OpenSSL internal receive buffer for a given QUIC stream is empty.
It is safe to call SSL_read() or SSL_read_ex() when more data is available
even when the call that set this error was an SSL_write() or SSL_write_ex().
#include <openssl/ssl.h>
- __owur int SSL_get_rpoll_descriptor(SSL *s, BIO_POLL_DESCRIPTOR *desc);
- __owur int SSL_get_wpoll_descriptor(SSL *s, BIO_POLL_DESCRIPTOR *desc);
- __owur int SSL_want_net_read(SSL *s);
- __owur int SSL_want_net_write(SSL *s);
+ int SSL_get_rpoll_descriptor(SSL *s, BIO_POLL_DESCRIPTOR *desc);
+ int SSL_get_wpoll_descriptor(SSL *s, BIO_POLL_DESCRIPTOR *desc);
+ int SSL_want_net_read(SSL *s);
+ int SSL_want_net_write(SSL *s);
=head1 DESCRIPTION
#include <openssl/ssl.h>
- __owur int SSL_get_tick_timeout(SSL *s, struct timeval *tv);
+ int SSL_get_tick_timeout(SSL *s, struct timeval *tv);
=head1 DESCRIPTION
#include <openssl/ssl.h>
- __owur int SSL_set_blocking_mode(SSL *s, int blocking);
- __owur int SSL_get_blocking_mode(SSL *s);
+ int SSL_set_blocking_mode(SSL *s, int blocking);
+ int SSL_get_blocking_mode(SSL *s);
=head1 DESCRIPTION
#include <openssl/ssl.h>
- __owur int SSL_set_initial_peer_addr(SSL *s, const BIO_ADDR *addr);
+ int SSL_set_initial_peer_addr(SSL *s, const BIO_ADDR *addr);
=head1 DESCRIPTION