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