BIO_meth_new
methods_ebcdic = BIO_meth_new(BIO_TYPE_EBCDIC_FILTER,
BIO_METHOD *BIO_meth_new(int type, const char *name);
corebiometh = BIO_meth_new(BIO_TYPE_CORE_TO_PROV, "BIO to Core filter");
methods_async = BIO_meth_new(BIO_TYPE_ASYNC_FILTER, "Async filter");
if (!TEST_ptr(meth1 = BIO_meth_new(id, "Method1"))
|| !TEST_ptr(meth2 = BIO_meth_new(BIO_TYPE_NONE, "Method2"))
|| !TEST_ptr(meth3 = BIO_meth_new(BIO_TYPE_NONE | BIO_TYPE_FILTER, "Method3"))
method_noisy_dgram = BIO_meth_new(BIO_TYPE_NOISY_DGRAM_FILTER,
method_pkt_split_dgram = BIO_meth_new(BIO_TYPE_PKT_SPLIT_DGRAM_FILTER,
tmp = BIO_meth_new(BIO_TYPE_CIPHER_PACKET_FILTER, "Cipher Packet Filter");
if (!TEST_ptr(meth_mem = BIO_meth_new(BIO_TYPE_MEMPACKET_TEST,
method_tls_dump = BIO_meth_new(BIO_TYPE_TLS_DUMP_FILTER,
if (!TEST_ptr(meth_always_retry = BIO_meth_new(BIO_TYPE_ALWAYS_RETRY,
if (!TEST_ptr(meth_maybe_retry = BIO_meth_new(BIO_TYPE_MAYBE_RETRY,
method_tls_corrupt = BIO_meth_new(BIO_TYPE_CUSTOM_FILTER,
method_watchccs = BIO_meth_new(BIO_TYPE_WATCHCCS_FILTER,