Home
last modified time | relevance | path

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

/third_party/openssl/test/
Dssltestlib.c67 static BIO_METHOD *method_tls_dump = NULL; variable
74 if (method_tls_dump == NULL) { in bio_f_tls_dump_filter()
75 method_tls_dump = BIO_meth_new(BIO_TYPE_TLS_DUMP_FILTER, in bio_f_tls_dump_filter()
77 if ( method_tls_dump == NULL in bio_f_tls_dump_filter()
78 || !BIO_meth_set_write(method_tls_dump, tls_dump_write) in bio_f_tls_dump_filter()
79 || !BIO_meth_set_read(method_tls_dump, tls_dump_read) in bio_f_tls_dump_filter()
80 || !BIO_meth_set_puts(method_tls_dump, tls_dump_puts) in bio_f_tls_dump_filter()
81 || !BIO_meth_set_gets(method_tls_dump, tls_dump_gets) in bio_f_tls_dump_filter()
82 || !BIO_meth_set_ctrl(method_tls_dump, tls_dump_ctrl) in bio_f_tls_dump_filter()
83 || !BIO_meth_set_create(method_tls_dump, tls_dump_new) in bio_f_tls_dump_filter()
[all …]