diff --git a/src/mux_h2.c b/src/mux_h2.c index fc484f82b..ac7afcd2a 100644 --- a/src/mux_h2.c +++ b/src/mux_h2.c @@ -6594,6 +6594,12 @@ static int h2_dump_h2c_info(struct buffer *msg, struct h2c *h2c, const char *pfx (unsigned int)b_data(tmbuf), b_orig(tmbuf), (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf)); + chunk_appendf(msg, " .task=%p", h2c->task); + if (h2c->task) { + chunk_appendf(msg, " .exp=%s", + h2c->task->expire ? tick_is_expired(h2c->task->expire, now_ms) ? "" : + human_time(TICKS_TO_MS(h2c->task->expire - now_ms), TICKS_TO_MS(1000)) : ""); + } return ret; }