| 175 | static APR_OPTIONAL_FN_TYPE(ssl_var_lookup) *module_ssl_var_lookup; |
| 176 | |
| 177 | static 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 | |
| 186 | AP_DECLARE(const char *) ap_ssl_var_lookup(apr_pool_t *p, server_rec *s, |
| 187 | conn_rec *c, request_rec *r, |
nothing calls this directly
no test coverage detected