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

Function ssl_var_lookup

server/ssl.c:177–184  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

175static APR_OPTIONAL_FN_TYPE(ssl_var_lookup) *module_ssl_var_lookup;
176
177static const char *ssl_var_lookup(apr_pool_t *p, server_rec *s,
178 conn_rec *c, request_rec *r,
179 const char *name)
180{
181 /* Someone retrieved the optional function., not knowing about the
182 * new API. We redirect them to what they should have invoked. */
183 return ap_ssl_var_lookup(p, s, c, r, name);
184}
185
186AP_DECLARE(const char *) ap_ssl_var_lookup(apr_pool_t *p, server_rec *s,
187 conn_rec *c, request_rec *r,

Callers

nothing calls this directly

Calls 1

ap_ssl_var_lookupFunction · 0.85

Tested by

no test coverage detected