MCPcopy Create free account
hub / github.com/apache/httpd / expr_var_fn

Function expr_var_fn

modules/ssl/ssl_engine_vars.c:85–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85static const char *expr_var_fn(ap_expr_eval_ctx_t *ctx, const void *data)
86{
87 char *var = (char *)data;
88 SSLConnRec *sslconn = ssl_get_effective_config(ctx->c);
89
90 return sslconn ? ssl_var_lookup_ssl(ctx->p, sslconn, ctx->r, var) : NULL;
91}
92
93static const char *expr_func_fn(ap_expr_eval_ctx_t *ctx, const void *data,
94 const char *arg)

Callers

nothing calls this directly

Calls 2

ssl_get_effective_configFunction · 0.85
ssl_var_lookup_sslFunction · 0.85

Tested by

no test coverage detected