Install the gets callback on a BIO_METHOD.
Declared in <openssl/bio.h>
int
BIO_meth_set_gets(
BIO_METHOD* biom,
int(* ossl_gets)(BIO*, char*, int));
1 on success, or 0 on failure.
| Name | Description |
|---|---|
| biom | Method table to update. |
| ossl_gets | Callback implementing BIO_gets()-style line input. |