BIO_meth_set_sendmmsg

Install the multi-message send callback used by BIO_sendmmsg() on a BIO_METHOD.

Synopsis

Declared in <openssl/bio.h>

int
BIO_meth_set_sendmmsg(
    BIO_METHOD* biom,
    int(* f)(BIO*, BIO_MSG*, size_t, size_t, uint64_t, size_t*));

Return Value

1 on success, or 0 on failure.

Parameters

NameDescription
biomMethod table to update.
fCallback implementing BIO_sendmmsg()-style output; may be NULL.