QUIC Front End I/O API: Remove __owur from man pages

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19703)
This commit is contained in:
Hugo Landau 2023-01-06 11:50:55 +00:00
parent 9f0ade7c47
commit 19142ef124
6 changed files with 13 additions and 13 deletions

View File

@ -20,8 +20,8 @@ can be used to determine when a BIO object can next be read or written
} 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

View File

@ -88,9 +88,9 @@ B<SSL_ERROR_WANT_WRITE> have different but largely compatible semantics. Since
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().

View File

@ -10,10 +10,10 @@ network I/O can be performed
#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

View File

@ -8,7 +8,7 @@ SSL_get_tick_timeout - determine when an SSL object next needs to be ticked
#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

View File

@ -9,8 +9,8 @@ QUIC SSL object
#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

View File

@ -8,7 +8,7 @@ SSL_set_initial_peer_addr - set the initial peer address for a QUIC connection
#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