| 626 | } |
| 627 | |
| 628 | void h2_stream_destroy(h2_stream *stream) |
| 629 | { |
| 630 | ap_assert(stream); |
| 631 | H2_STRM_ASSERT_MAGIC(stream, H2_STRM_MAGIC_OK); |
| 632 | ap_log_cerror(APLOG_MARK, APLOG_TRACE3, 0, stream->session->c1, |
| 633 | H2_STRM_MSG(stream, "destroy")); |
| 634 | H2_STRM_ASSIGN_MAGIC(stream, H2_STRM_MAGIC_SDEL); |
| 635 | apr_pool_destroy(stream->pool); |
| 636 | } |
| 637 | |
| 638 | void h2_stream_rst(h2_stream *stream, int error_code) |
| 639 | { |