| 69 | } |
| 70 | |
| 71 | void h2_conn_ctx_assign_session(h2_conn_ctx_t *ctx, struct h2_session *session) |
| 72 | { |
| 73 | ctx->session = session; |
| 74 | ctx->id = apr_psprintf(session->pool, "%d-%lu", session->child_num, (unsigned long)session->id); |
| 75 | } |
| 76 | |
| 77 | apr_status_t h2_conn_ctx_init_for_c2(h2_conn_ctx_t **pctx, conn_rec *c2, |
| 78 | struct h2_mplx *mplx, struct h2_stream *stream, |