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)
This commit is contained in:
Hugo Landau 2023-10-24 08:49:49 +01:00
parent e1559fbb53
commit 4177999d27
1 changed files with 4 additions and 4 deletions

View 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.