MINOR: stats: report HTTP compression stats per frontend and per backend

It was a bit frustrating to have no idea about the bandwidth saved by
HTTP compression. Now we have per-frontend and per-backend stats. The
stats on the HTTP interface are shown in a hover title in the "bytes out"
column if at least something was fed to the compressor. 3 new columns
appeared in the CSV stats output.
diff --git a/include/types/counters.h b/include/types/counters.h
index 391915a..8326429 100644
--- a/include/types/counters.h
+++ b/include/types/counters.h
@@ -37,6 +37,10 @@
 	long long bytes_in;                     /* number of bytes transferred from the client to the server */
 	long long bytes_out;                    /* number of bytes transferred from the server to the client */
 
+	long long comp_in;                      /* input bytes fed to the compressor */
+	long long comp_out;                     /* output bytes emitted by the compressor */
+	long long comp_byp;                     /* input bytes that bypassed the compressor (cpu/ram/bw limitation) */
+
 	long long denied_req;                   /* blocked requests/responses because of security concerns */
 	long long denied_resp;                  /* blocked requests/responses because of security concerns */
 	long long failed_req;                   /* failed requests (eg: invalid or timeout) */