Install the legacy write callback on a BIO_METHOD.
Declared in <openssl/bio.h>
int
BIO_meth_set_write(
BIO_METHOD* biom,
int(* write)(BIO*, char const*, int));
1 on success, or 0 on failure.
| Name | Description |
|---|---|
| biom | Method table to update. |
| write | Callback implementing BIO_write()-style output. |