Default legacy BIO debug logger writing to the BIO's callback-argument BIO (deprecated).
Declared in <openssl/bio.h>
[[deprecated]]
long
BIO_debug_callback(
BIO* bio,
int cmd,
char const* argp,
int argi,
long argl,
long ret);
Deprecated. Use of this entity is allowed but discouraged.
ret unchanged (pass-through debug callback).
| Name | Description |
|---|---|
| bio | BIO whose operation is being reported. |
| cmd | BIO_CB_* operation code (read, write, ctrl, …). |
| argp | Pointer argument for the operation (buffer or ctrl pointer), or NULL. |
| argi | Integer argument for ctrl-style operations. |
| argl | Long argument for ctrl-style operations. |
| ret | Return value being reported for the operation. |