Write up to dlen bytes from data to a BIO.
Declared in <openssl/bio.h>
int
BIO_write_ex(
BIO* b,
void const* data,
size_t dlen,
size_t* written);
1 if any data was written, or 0 otherwise.
| Name | Description |
|---|---|
| b | Destination BIO. |
| data | Bytes to write. |
| dlen | Number of bytes to write. |
| written | On success, receives the number of bytes actually written. |