MINOR: connection: add a new list member in the connection struct

This list member will be used to attach a connection to a list of
idle, reusable or queued connections. It's unused for now. Given
that it's not expected to be used more than a few times per session,
the member was put after the target, in the area starting at the
second cache line of the structure.
diff --git a/include/proto/connection.h b/include/proto/connection.h
index 2fb25cc..952f9ea 100644
--- a/include/proto/connection.h
+++ b/include/proto/connection.h
@@ -481,6 +481,7 @@
 	conn->err_code = CO_ER_NONE;
 	conn->target = NULL;
 	conn->proxy_netns = NULL;
+	LIST_INIT(&conn->list);
 }
 
 /* Tries to allocate a new connection and initialized its main fields. The