Home | History | Annotate | Download | only in flip_server

Lines Matching refs:ssl_ctx

201   SSL_CTX* ssl_ctx;
216 state->ssl_ctx = SSL_CTX_new(state->ssl_method);
217 if (!state->ssl_ctx) {
220 if (SSL_CTX_use_certificate_file(state->ssl_ctx,
225 if (SSL_CTX_use_PrivateKey_file(state->ssl_ctx,
230 if (!SSL_CTX_check_private_key(state->ssl_ctx)) {
235 SSL* flip_new_ssl(SSL_CTX* ssl_ctx) {
236 SSL* ssl = SSL_new(ssl_ctx);
823 ssl_ = flip_new_ssl(global_ssl_state->ssl_ctx);