[#BIO_meth_set_gets] = BIO_meth_set_gets :mrdocs: Install the gets callback on a BIO_METHOD. == Synopsis Declared in `<openssl/bio.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int BIO_meth_set_gets( xref:BIO_METHOD.adoc[BIO_METHOD]* biom, int(* ossl_gets)(xref:BIO.adoc[BIO]*, char*, int)); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *biom* | Method table to update. | *ossl_gets* | Callback implementing BIO_gets()‐style line input. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#