BIO_meth_set_ctrl

Install the ctrl callback on a BIO_METHOD.

Synopsis

Declared in <openssl/bio.h>

int
BIO_meth_set_ctrl(
    BIO_METHOD* biom,
    long(* ctrl)(BIO*, int, long, void*));

Return Value

1 on success, or 0 on failure.

Parameters

NameDescription
biomMethod table to update.
ctrlCallback implementing BIO_ctrl()-style commands.