From: Hugo Landau Date: Fri, 6 Jan 2023 11:50:55 +0000 (+0000) Subject: QUIC Front End I/O API: Remove __owur from man pages X-Git-Tag: openssl-3.2.0-alpha1~1465 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19142ef1242939f9bacbf0255582a9c4a5f16c9c;p=thirdparty%2Fopenssl.git QUIC Front End I/O API: Remove __owur from man pages Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/19703) --- diff --git a/doc/man3/BIO_get_rpoll_descriptor.pod b/doc/man3/BIO_get_rpoll_descriptor.pod index 0aa1fd9369a..36d6b64ff58 100644 --- a/doc/man3/BIO_get_rpoll_descriptor.pod +++ b/doc/man3/BIO_get_rpoll_descriptor.pod @@ -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 diff --git a/doc/man3/SSL_get_error.pod b/doc/man3/SSL_get_error.pod index efc4e60de2a..a91acd98367 100644 --- a/doc/man3/SSL_get_error.pod +++ b/doc/man3/SSL_get_error.pod @@ -88,9 +88,9 @@ B 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 indicates that the internal send buffer for a given QUIC -stream has been filled. Likewise, B indicates that the -internal receive buffer for a given QUIC stream is empty. +B indicates that the OpenSSL internal send buffer for a +given QUIC stream has been filled. Likewise, B 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(). diff --git a/doc/man3/SSL_get_rpoll_descriptor.pod b/doc/man3/SSL_get_rpoll_descriptor.pod index 3f0b1f16c4c..62378576f0c 100644 --- a/doc/man3/SSL_get_rpoll_descriptor.pod +++ b/doc/man3/SSL_get_rpoll_descriptor.pod @@ -10,10 +10,10 @@ network I/O can be performed #include - __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 diff --git a/doc/man3/SSL_get_tick_timeout.pod b/doc/man3/SSL_get_tick_timeout.pod index 5cab7a54744..e944620bed5 100644 --- a/doc/man3/SSL_get_tick_timeout.pod +++ b/doc/man3/SSL_get_tick_timeout.pod @@ -8,7 +8,7 @@ SSL_get_tick_timeout - determine when an SSL object next needs to be ticked #include - __owur int SSL_get_tick_timeout(SSL *s, struct timeval *tv); + int SSL_get_tick_timeout(SSL *s, struct timeval *tv); =head1 DESCRIPTION diff --git a/doc/man3/SSL_set_blocking_mode.pod b/doc/man3/SSL_set_blocking_mode.pod index 7a14613e6a1..98a195143ea 100644 --- a/doc/man3/SSL_set_blocking_mode.pod +++ b/doc/man3/SSL_set_blocking_mode.pod @@ -9,8 +9,8 @@ QUIC SSL object #include - __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 diff --git a/doc/man3/SSL_set_initial_peer_addr.pod b/doc/man3/SSL_set_initial_peer_addr.pod index 6ebe7bead46..acb4ef22c05 100644 --- a/doc/man3/SSL_set_initial_peer_addr.pod +++ b/doc/man3/SSL_set_initial_peer_addr.pod @@ -8,7 +8,7 @@ SSL_set_initial_peer_addr - set the initial peer address for a QUIC connection #include - __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