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

Name

Description

biom

Method table to update.

f

Callback implementing BIO_sendmmsg()‐style output; may be NULL.

Created with MrDocs