| 690 | const ap_bucket_response *res) |
| 691 | #else |
| 692 | apr_array_header_t *h2_push_collect_update(struct h2_stream *stream, |
| 693 | const struct h2_request *req, |
| 694 | const struct h2_headers *res) |
| 695 | #endif |
| 696 | { |
| 697 | apr_array_header_t *pushes; |
| 698 | |
| 699 | pushes = h2_push_collect(stream->pool, req, stream->push_policy, res); |
| 700 | return h2_push_diary_update(stream->session, pushes); |
| 701 | } |
| 702 | |
| 703 | typedef struct { |
| 704 | h2_push_diary *diary; |
no test coverage detected