BIO_meth_get_create

Return the create callback installed on a BIO_METHOD.

Synopsis

Declared in <openssl/bio.h>

int(*
BIO_meth_get_create(BIO_METHOD const* bion))(BIO*);

Return Value

Create callback invoked when a BIO of this method is allocated, or NULL if unset.

Parameters

NameDescription
bionMethod to query.