Searched refs:method_tls_dump (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/ |
H A D | ssltestlib.c | 67 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 …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/test/helpers/ |
H A D | ssltestlib.c | 51 static BIO_METHOD *method_tls_dump = NULL; variable 59 if (method_tls_dump == NULL) { in bio_f_tls_dump_filter() 60 method_tls_dump = BIO_meth_new(BIO_TYPE_TLS_DUMP_FILTER, in bio_f_tls_dump_filter() 62 if ( method_tls_dump == NULL in bio_f_tls_dump_filter() 63 || !BIO_meth_set_write(method_tls_dump, tls_dump_write) in bio_f_tls_dump_filter() 64 || !BIO_meth_set_read(method_tls_dump, tls_dump_read) in bio_f_tls_dump_filter() 65 || !BIO_meth_set_puts(method_tls_dump, tls_dump_puts) in bio_f_tls_dump_filter() 66 || !BIO_meth_set_gets(method_tls_dump, tls_dump_gets) in bio_f_tls_dump_filter() 67 || !BIO_meth_set_ctrl(method_tls_dump, tls_dump_ctrl) in bio_f_tls_dump_filter() 68 || !BIO_meth_set_create(method_tls_dump, tls_dump_new) in bio_f_tls_dump_filter() [all …]
|