| 1708 | } |
| 1709 | |
| 1710 | AP_DECLARE(void) ap_finalize_sub_req_protocol(request_rec *sub) |
| 1711 | { |
| 1712 | /* tell the filter chain there is no more content coming */ |
| 1713 | if (!sub->eos_sent) { |
| 1714 | end_output_stream(sub, OK); |
| 1715 | } |
| 1716 | } |
| 1717 | |
| 1718 | /* finalize_request_protocol is called at completion of sending the |
| 1719 | * response. Its sole purpose is to send the terminating protocol |
no test coverage detected