Lines Matching refs:ctx
23 static int ssl_do_config(SSL *s, SSL_CTX *ctx, const char *name, int system)
34 if (s == NULL && ctx == NULL) {
57 libctx = s->ctx->libctx;
59 meth = ctx->method;
60 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx);
61 libctx = ctx->libctx;
94 int SSL_CTX_config(SSL_CTX *ctx, const char *name)
96 return ssl_do_config(NULL, ctx, name, 0);
99 void ssl_ctx_system_config(SSL_CTX *ctx)
101 ssl_do_config(NULL, ctx, NULL, 1);