| 36 | #if !AP_HAS_RESPONSE_BUCKETS |
| 37 | |
| 38 | static int is_unsafe(server_rec *s) |
| 39 | { |
| 40 | core_server_config *conf = ap_get_core_module_config(s->module_config); |
| 41 | return (conf->http_conformance == AP_HTTP_CONFORMANCE_UNSAFE); |
| 42 | } |
| 43 | |
| 44 | typedef struct { |
| 45 | apr_bucket_refcount refcount; |
no test coverage detected