CLEANUP: config: make the cfg_keyword parsers take a const for the defproxy

The default proxy was passed as a variable to all parsers instead of a
const, which is not without risk, especially when some timeout parsers used
to make some int pointers point to the default values for comparisons. We
want to be certain that none of these parsers will modify the defaults
sections by accident, so it's important to mark this proxy as const.

This patch touches all occurrences found (89).
diff --git a/src/flt_http_comp.c b/src/flt_http_comp.c
index b0a2f0b..c9ac021 100644
--- a/src/flt_http_comp.c
+++ b/src/flt_http_comp.c
@@ -619,7 +619,7 @@
 
 static int
 parse_compression_options(char **args, int section, struct proxy *proxy,
-			  struct proxy *defpx, const char *file, int line,
+			  const struct proxy *defpx, const char *file, int line,
 			  char **err)
 {
 	struct comp    *comp;