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