MEDIUM: htx: Add the parsing of trailers of chunked messages

HTTP trailers are now parsed in the same way headers are. It means trailers are
converted to K/V blocks followed by an end-of-trailer marker. For now, to make
things simple, the type for trailer blocks are not the same than for header
blocks. But the aim is to make no difference between headers and trailers by
using the same type. Probably for the end-of marker too.
diff --git a/src/flt_trace.c b/src/flt_trace.c
index 96a19a1..4eb8d5f 100644
--- a/src/flt_trace.c
+++ b/src/flt_trace.c
@@ -151,7 +151,7 @@
 		if (v.len > len)
 			v.len = len;
 		len -= v.len;
-		if (type == HTX_BLK_DATA || type == HTX_BLK_TLR)
+		if (type == HTX_BLK_DATA)
 			trace_hexdump(v);
 	}
 }