Skip to content

Commit

Permalink
Preemptively reflect the changes in #22480
Browse files Browse the repository at this point in the history
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from #22487)
  • Loading branch information
hlandau committed Oct 26, 2023
1 parent e1559fb commit 4177999
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/man3/BIO_set_callback.pod
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 4177999

Please sign in to comment.