Home | History | Annotate | Download | only in threads

Lines Matching refs:s_ssl

424 	SSL *s_ssl=NULL;
440 s_ssl=(SSL *)ctx[2];
442 s_ssl=SSL_new(s_ctx);
449 if ((s_ssl == NULL) || (c_ssl == NULL)) goto err;
463 SSL_set_accept_state(s_ssl);
464 SSL_set_bio(s_ssl,c_to_s,s_to_c);
465 BIO_set_ssl(s_bio,s_ssl,(ctx[3] == NULL)?BIO_CLOSE:BIO_NOCLOSE);
487 if (SSL_in_init(s_ssl))
489 SSL_state_string_long(s_ssl));
665 SSL_set_shutdown(s_ssl,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN);
672 * free()ed twice. Once when th s_ssl is SSL_free()ed and
674 * This is a hack required because s_ssl and c_ssl are sharing the same
679 if (s_ssl != NULL)
681 s_ssl->rbio=NULL;
682 s_ssl->wbio=NULL;