| 239 | } |
| 240 | |
| 241 | static h2_c2_transit *c2_transit_get(h2_mplx *m) |
| 242 | { |
| 243 | h2_c2_transit **ptransit = apr_array_pop(m->c2_transits); |
| 244 | if (ptransit) { |
| 245 | return *ptransit; |
| 246 | } |
| 247 | return c2_transit_create(m); |
| 248 | } |
| 249 | |
| 250 | static void c2_transit_recycle(h2_mplx *m, h2_c2_transit *transit) |
| 251 | { |
no test coverage detected