DATA frames produce a special trace with the amount of transferred data
in arg4, but this was not reported by h2_trace(). This commit just adds
it.
if (h2s->id && h2s->errcode)
chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
}
+
+ if ((mask & H2_EV_RX_DATA) && level == TRACE_LEVEL_DATA)
+ chunk_appendf(&trace_buf, " data=%llu", (ullong)a4);
}
/* Let's dump decoded requests and responses right after parsing. They