Home
last modified time | relevance | path

Searched refs:method_tls_dump (Results 1 – 1 of 1) sorted by relevance

/freebsd/crypto/openssl/test/helpers/
H A Dssltestlib.c47 static BIO_METHOD *method_tls_dump = NULL; variable
56 if (method_tls_dump == NULL) { in bio_f_tls_dump_filter()
57 method_tls_dump = BIO_meth_new(BIO_TYPE_TLS_DUMP_FILTER, in bio_f_tls_dump_filter()
59 if (method_tls_dump == NULL in bio_f_tls_dump_filter()
60 || !BIO_meth_set_write(method_tls_dump, tls_dump_write) in bio_f_tls_dump_filter()
61 || !BIO_meth_set_read(method_tls_dump, tls_dump_read) in bio_f_tls_dump_filter()
62 || !BIO_meth_set_puts(method_tls_dump, tls_dump_puts) in bio_f_tls_dump_filter()
63 || !BIO_meth_set_gets(method_tls_dump, tls_dump_gets) in bio_f_tls_dump_filter()
64 || !BIO_meth_set_ctrl(method_tls_dump, tls_dump_ctrl) in bio_f_tls_dump_filter()
65 || !BIO_meth_set_create(method_tls_dump, tls_dump_new) in bio_f_tls_dump_filter()
[all …]