Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/test/
H A Dsslcorrupttest.c105 static BIO_METHOD *method_tls_corrupt = NULL; variable
110 if (method_tls_corrupt == NULL) { in bio_f_tls_corrupt_filter()
111 method_tls_corrupt = BIO_meth_new(BIO_TYPE_CUSTOM_FILTER, in bio_f_tls_corrupt_filter()
113 if ( method_tls_corrupt == NULL in bio_f_tls_corrupt_filter()
114 || !BIO_meth_set_write(method_tls_corrupt, tls_corrupt_write) in bio_f_tls_corrupt_filter()
115 || !BIO_meth_set_read(method_tls_corrupt, tls_corrupt_read) in bio_f_tls_corrupt_filter()
116 || !BIO_meth_set_puts(method_tls_corrupt, tls_corrupt_puts) in bio_f_tls_corrupt_filter()
117 || !BIO_meth_set_gets(method_tls_corrupt, tls_corrupt_gets) in bio_f_tls_corrupt_filter()
118 || !BIO_meth_set_ctrl(method_tls_corrupt, tls_corrupt_ctrl) in bio_f_tls_corrupt_filter()
119 || !BIO_meth_set_create(method_tls_corrupt, tls_corrupt_new) in bio_f_tls_corrupt_filter()
[all …]