| 1508 | #if AP_HAS_RESPONSE_BUCKETS |
| 1509 | |
| 1510 | static int is_unsafe(ap_bucket_response *h) |
| 1511 | { |
| 1512 | const char *v = h->notes? apr_table_get(h->notes, H2_HDR_CONFORMANCE) : NULL; |
| 1513 | return (v && !strcmp(v, H2_HDR_CONFORMANCE_UNSAFE)); |
| 1514 | } |
| 1515 | |
| 1516 | apr_status_t h2_res_create_ngtrailer(h2_ngheader **ph, apr_pool_t *p, |
| 1517 | ap_bucket_headers *headers) |
no outgoing calls
no test coverage detected