| 683 | } |
| 684 | |
| 685 | static void set_error_response(h2_stream *stream, int http_status) |
| 686 | { |
| 687 | if (!h2_stream_is_ready(stream) && stream->rtmp) { |
| 688 | stream->rtmp->http_status = http_status; |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | static apr_status_t add_trailer(h2_stream *stream, |
| 693 | const char *name, size_t nlen, |
no test coverage detected