| 288 | } |
| 289 | |
| 290 | apr_status_t h2_beam_destroy(h2_bucket_beam *beam, conn_rec *c) |
| 291 | { |
| 292 | if (beam->pool) { |
| 293 | H2_BEAM_LOG(beam, c, APLOG_TRACE2, 0, "destroy", NULL); |
| 294 | apr_pool_cleanup_run(beam->pool, beam, beam_cleanup); |
| 295 | } |
| 296 | H2_BEAM_LOG(beam, c, APLOG_TRACE2, 0, "destroyed", NULL); |
| 297 | return APR_SUCCESS; |
| 298 | } |
| 299 | |
| 300 | apr_status_t h2_beam_create(h2_bucket_beam **pbeam, conn_rec *from, |
| 301 | apr_pool_t *pool, int id, const char *tag, |