MINOR: backend: handle reuse for conns with no server as target

If dispatch mode or transparent backend is used, the backend connection
target is a proxy instead of a server. In these cases, the reuse of
backend connections is not consistent.

With the default behavior, no reuse is done and every new request uses a
new connection. However, if http-reuse is set to never, the connection
are stored by the mux in the session and can be reused for future
requests in the same session.

As no server is used for these connections, no reuse can be made outside
of the session, similarly to http-reuse never mode. A different
http-reuse config value should not have an impact. To achieve this, mark
these connections as private to have a defined behavior.

For this feature to properly work, the connection hash has been slightly
adjusted. The server pointer as an input as been replaced by a generic
target pointer to refer to the server or proxy instance. The hash is
always calculated on connect_server even if the connection target is not
a server. This also requires to allocate the connection hash node for
every backend connections, not just the one with a server target.
diff --git a/src/connection.c b/src/connection.c
index a9edf01..535fb6b 100644
--- a/src/connection.c
+++ b/src/connection.c
@@ -1465,7 +1465,7 @@
 
 	buf = trash.area;
 
-	conn_hash_update(buf, &idx, &params->srv, sizeof(params->srv), &hash_flags, 0);
+	conn_hash_update(buf, &idx, &params->target, sizeof(params->target), &hash_flags, 0);
 
 	if (params->sni_prehash) {
 		conn_hash_update(buf, &idx,