Home
last modified time | relevance | path

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

/openssl/test/helpers/
H A Dssltestlib.c42 static BIO_METHOD *method_tls_dump = NULL; variable
49 if (method_tls_dump == NULL) { in bio_f_tls_dump_filter()
50 method_tls_dump = BIO_meth_new(BIO_TYPE_TLS_DUMP_FILTER, in bio_f_tls_dump_filter()
52 if (method_tls_dump == NULL in bio_f_tls_dump_filter()
54 || !BIO_meth_set_read(method_tls_dump, tls_dump_read) in bio_f_tls_dump_filter()
55 || !BIO_meth_set_puts(method_tls_dump, tls_dump_puts) in bio_f_tls_dump_filter()
56 || !BIO_meth_set_gets(method_tls_dump, tls_dump_gets) in bio_f_tls_dump_filter()
57 || !BIO_meth_set_ctrl(method_tls_dump, tls_dump_ctrl) in bio_f_tls_dump_filter()
58 || !BIO_meth_set_create(method_tls_dump, tls_dump_new) in bio_f_tls_dump_filter()
62 return method_tls_dump; in bio_f_tls_dump_filter()
[all …]

Completed in 7 milliseconds