Lines Matching defs:c_to_s
2599 BIO *c_to_s = NULL;
2619 c_to_s = BIO_new(BIO_s_mem());
2621 if ((s_to_c == NULL) || (c_to_s == NULL)) {
2634 SSL_set_bio(c_ssl, s_to_c, c_to_s);
2642 if (!BIO_up_ref(c_to_s)) {
2643 /* c_to_s and s_to_c will get freed when we free c_ssl */
2644 c_to_s = NULL;
2655 SSL_set_bio(s_ssl, c_to_s, s_to_c);
2658 c_to_s = NULL;
2859 BIO_free(c_to_s);