[BUG] proxy: stats frontend and peers were missing many initializers

This was revealed with one of the very latest patches which caused
the listener_queue not to be initialized on the stats socket frontend.
And in fact a number of other ones were missing too. This is getting so
boring that now we'll always make use of the same function to initialize
any proxy. Doing so has even saved about 500 bytes on the binary due to
the avoided code redundancy.

No backport is needed.
diff --git a/src/dumpstats.c b/src/dumpstats.c
index 9699985..9caebdd 100644
--- a/src/dumpstats.c
+++ b/src/dumpstats.c
@@ -153,18 +153,7 @@
 	if (!fe)
 		return NULL;
 
-	LIST_INIT(&fe->pendconns);
-	LIST_INIT(&fe->acl);
-	LIST_INIT(&fe->block_cond);
-	LIST_INIT(&fe->redirect_rules);
-	LIST_INIT(&fe->mon_fail_cond);
-	LIST_INIT(&fe->switching_rules);
-	LIST_INIT(&fe->tcp_req.inspect_rules);
-
-	/* Timeouts are defined as -1, so we cannot use the zeroed area
-	 * as a default value.
-	 */
-	proxy_reset_timeouts(fe);
+	init_new_proxy(fe);
 
 	fe->last_change = now.tv_sec;
 	fe->id = strdup("GLOBAL");