BIO_meth_set_write

Install the legacy write callback on a BIO_METHOD.

Synopsis

Declared in <openssl/bio.h>

int
BIO_meth_set_write(
    BIO_METHOD* biom,
    int(* write)(BIO*, char const*, int));

Return Value

1 on success, or 0 on failure.

Parameters

NameDescription
biomMethod table to update.
writeCallback implementing BIO_write()-style output.