=head1 DESCRIPTION
BIO_get_rpoll_descriptor() and BIO_get_wpoll_descriptor(), on success, fill
-B<*desc> with a poll descriptor. A poll descriptor is a tagged union structure
+I<*desc> with a poll descriptor. A poll descriptor is a tagged union structure
which represents some kind of OS or non-OS resource which can be used to
synchronise on I/O availability events.
BIO_get_rpoll_descriptor() or BIO_get_wpoll_descriptor() to indicate that the
BIO is not pollable for readability or writeability respectively.
-For this type, no field within the B<value> field of the B<BIO_POLL_DESCRIPTOR>
+For this type, no field within the I<value> field of the B<BIO_POLL_DESCRIPTOR>
is valid.
=item BIO_POLL_DESCRIPTOR_TYPE_SOCK_FD
-The poll descriptor represents an OS socket resource. The field B<value.fd>
+The poll descriptor represents an OS socket resource. The field I<value.fd>
in the B<BIO_POLL_DESCRIPTOR> is valid if it is not set to -1.
The resource is whatever kind of handle is used by a given OS to represent
=item BIO_POLL_DESCRIPTOR_CUSTOM_START
Type values beginning with this value (inclusive) are reserved for application
-allocation for custom poll descriptor types. The field B<value.custom> in the
+allocation for custom poll descriptor types. The field I<value.custom> in the
B<BIO_POLL_DESCRIPTOR> is an array of length B<BIO_POLL_DESCRIPTOR_NUM_CUSTOM>.
Each entry in this array can store a void pointer or a B<uint64_t> and can be
used by the application arbitrarily.
The functions BIO_get_rpoll_descriptor() and BIO_get_wpoll_descriptor() return 1
on success and 0 on failure.
-These functions are permitted to succeed and initialise B<*desc> with a poll
+These functions are permitted to succeed and initialise I<*desc> with a poll
descriptor of type B<BIO_POLL_DESCRIPTOR_TYPE_NONE> to indicate that the BIO is
not pollable for readability or writeability respectively.
=head1 COPYRIGHT
-Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved.
+Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
=head1 COPYRIGHT
-Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved.
+Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
SSL_get_tick_timeout() determines when the SSL object next needs to perform
internal processing due to the passage of time.
-Calling SSL_get_tick_timeout() results in B<*tv> being written with an amount of
+Calling SSL_get_tick_timeout() results in I<*tv> being written with an amount of
time left before the SSL object needs to be ticked. If the SSL object needs to
be ticked immediately, it is set to zero; if the SSL object currently does not
-need to be ticked at any point in the future, B<tv_sec> is set to -1,
+need to be ticked at any point in the future, I<tv->tv_sec> is set to -1,
representing infinity.
This function is currently applicable only to DTLS and QUIC connection SSL
=head1 COPYRIGHT
-Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved.
+Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
descriptor (see L<BIO_get_rpoll_descriptor(3)>), as blocking mode cannot be
supported in this case.
-To enable blocking mode, call SSL_set_blocking_mode() with B<blocking> set to 1;
-to disable it, call SSL_set_blocking_mode() with B<blocking> set to 0.
+To enable blocking mode, call SSL_set_blocking_mode() with I<blocking> set to 1;
+to disable it, call SSL_set_blocking_mode() with I<blocking> set to 0.
To retrieve the current blocking mode, call SSL_get_blocking_mode().
=head1 COPYRIGHT
-Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved.
+Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
SSL_set_initial_peer_addr() sets the initial destination peer address to be used
for the purposes of establishing a QUIC connection in client mode. This function
can be used only on a QUIC connection SSL object, and can be used only before a
-connection attempt is first made. B<addr> must point to a B<BIO_ADDR>
+connection attempt is first made. I<addr> must point to a B<BIO_ADDR>
representing a UDP destination address of the server to connect to.
Where a QUIC connection object is provided with a write BIO which supports the
=head1 COPYRIGHT
-Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved.
+Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
=head1 COPYRIGHT
-Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved.
+Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy