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