summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-10-24 08:49:49 +0100
committerHugo Landau <hlandau@openssl.org>2023-10-26 15:10:32 +0100
commit4177999d2783d24f5053a1edb4de9aa5ecd11c4d (patch)
tree07617ed16bb01cd62ddf3543a7d809cfebbad8fd
parente1559fbb53465cdb156d9317869c11a9575461ba (diff)
Preemptively reflect the changes in #22480
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22487)
-rw-r--r--doc/man3/BIO_set_callback.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man3/BIO_set_callback.pod b/doc/man3/BIO_set_callback.pod
index 114e4cfdfa..6c81110e9a 100644
--- a/doc/man3/BIO_set_callback.pod
+++ b/doc/man3/BIO_set_callback.pod
@@ -227,19 +227,19 @@ the actual call parameter, see B<BIO_callback_ctrl>.
=item B<BIO_sendmmsg(BIO *b, BIO_MSG *msg, size_t stride, size_t num_msg, uint64_t flags, size_t *msgs_processed)>
- callback_ex(b, BIO_CB_SENDMMSG, args, 0, 0, 0, 0, NULL)
+ callback_ex(b, BIO_CB_SENDMMSG, args, 0, 0, 0, 1, NULL)
or
- callback(b, BIO_CB_SENDMMSG, args, 0, 0, 0)
+ callback(b, BIO_CB_SENDMMSG, args, 0, 0, 1)
is called before the call and
- callback_ex(b, BIO_CB_SENDMMSG | BIO_CB_RETURN, args, ret, 0, 0, 0, NULL)
+ callback_ex(b, BIO_CB_SENDMMSG | BIO_CB_RETURN, args, ret, 0, 0, ret, NULL)
or
- callback(b, BIO_CB_SENDMMSG | BIO_CB_RETURN, args, ret, 0, 0, 0)
+ callback(b, BIO_CB_SENDMMSG | BIO_CB_RETURN, args, ret, 0, 0, ret)
after.