Lines Matching refs:ssl_
542 ssl_(ssl),
570 if (ssl_) {
571 SSL_set_shutdown(ssl_, SSL_get_shutdown(ssl_) | SSL_RECEIVED_SHUTDOWN);
573 SSL_shutdown(ssl_);
579 if (ssl_) {
580 SSL_free(ssl_);
713 auto rv = SSL_do_handshake(ssl_);
716 auto err = SSL_get_error(ssl_, rv);
744 if (SSL_session_reused(ssl_)) {
757 auto rv = SSL_read(ssl_, buf.data(), buf.size());
760 auto err = SSL_get_error(ssl_, rv);
797 auto rv = SSL_write(ssl_, wb_.pos, wb_.rleft());
800 auto err = SSL_get_error(ssl_, rv);
892 if (ssl_ && !nghttp2::tls::check_http2_requirement(ssl_)) {
904 SSL_get0_next_proto_negotiated(ssl_, &next_proto, &next_proto_len);
918 SSL_get0_alpn_selected(ssl_, &next_proto, &next_proto_len);