| 195 | } |
| 196 | |
| 197 | static const char *header_request_env_var(request_rec *r, char *a) |
| 198 | { |
| 199 | const char *s = apr_table_get(r->subprocess_env,a); |
| 200 | |
| 201 | if (s) |
| 202 | return unwrap_header(r->pool, s); |
| 203 | else |
| 204 | return "(null)"; |
| 205 | } |
| 206 | |
| 207 | static const char *header_request_ssl_var(request_rec *r, char *name) |
| 208 | { |
nothing calls this directly
no test coverage detected