| 223 | } |
| 224 | |
| 225 | static const char *header_request_idle(request_rec *r, char *a) |
| 226 | { |
| 227 | ap_sload_t t; |
| 228 | ap_get_sload(&t); |
| 229 | return apr_psprintf(r->pool, "i=%d", t.idle); |
| 230 | } |
| 231 | |
| 232 | static const char *header_request_busy(request_rec *r, char *a) |
| 233 | { |
nothing calls this directly
no test coverage detected