Install the extended read callback on a BIO_METHOD.
Synopsis
Declared in <openssl/bio.h>
int
BIO_meth_set_read_ex(
BIO_METHOD* biom,
int(* bread)(BIO*, char*, size_t, size_t*));
Return Value
1 on success, or 0 on failure.
Parameters
Name |
Description |
biom |
Method table to update. |
bread |
Callback implementing BIO_read_ex()‐style input. |
Created with MrDocs