]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Preemptively reflect the changes in #22480
authorHugo Landau <hlandau@openssl.org>
Tue, 24 Oct 2023 07:49:49 +0000 (08:49 +0100)
committerHugo Landau <hlandau@openssl.org>
Thu, 26 Oct 2023 14:10:32 +0000 (15:10 +0100)
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)

doc/man3/BIO_set_callback.pod

index 114e4cfdfa2c16f5c4eb42bcf79a27b739dadbd5..6c81110e9aaf0de3cff2e1cf8657185257bd2ccc 100644 (file)
@@ -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.