MINOR: http_fecth: Implement body_len and body_size sample fetches for the HTX

HTX implementation for these 2 sample fetches was missing. This patch fills this
gap.
diff --git a/src/http_fetch.c b/src/http_fetch.c
index 68c455c..292da21 100644
--- a/src/http_fetch.c
+++ b/src/http_fetch.c
@@ -917,7 +917,28 @@
 {
 	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
 		/* HTX version */
-		return 0; /* TODO: to be implemented */
+		struct htx *htx = smp_prefetch_htx(smp, args);
+		struct htx_blk *blk;
+		unsigned long long len = 0;
+
+		if (!htx)
+			return 0;
+
+		len = htx->data;
+
+		/* Remove the length of headers part */
+		blk = htx_get_head_blk(htx);
+		while (blk) {
+			len -= htx_get_blksz(blk);
+			if (htx_get_blk_type(blk) == HTX_BLK_EOH)
+				break;
+			blk = htx_get_next_blk(htx, blk);
+		}
+
+		smp->data.type = SMP_T_SINT;
+		smp->data.u.sint = len;
+
+		smp->flags = SMP_F_VOL_TEST;
 	}
 	else {
 		/* LEGACY version */
@@ -947,7 +968,30 @@
 {
 	if (IS_HTX_SMP(smp) || (smp->px->mode == PR_MODE_TCP)) {
 		/* HTX version */
-		return 0; /* TODO: to be implemented */
+		struct htx *htx = smp_prefetch_htx(smp, args);
+		struct htx_blk *blk;
+		unsigned long long len = 0;
+
+		if (!htx)
+			return 0;
+
+		len = htx->data;
+
+		/* Remove the length of headers part */
+		blk = htx_get_head_blk(htx);
+		while (blk) {
+			len -= htx_get_blksz(blk);
+			if (htx_get_blk_type(blk) == HTX_BLK_EOH)
+				break;
+			blk = htx_get_next_blk(htx, blk);
+		}
+		if (htx->extra != ULLONG_MAX)
+			len += htx->extra;
+
+		smp->data.type = SMP_T_SINT;
+		smp->data.u.sint = len;
+
+		smp->flags = SMP_F_VOL_TEST;
 	}
 	else {
 		/* LEGACY version */