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