[MINOR] accept: count the incoming connection earlier

Right now we count the incoming connection only once everything has
been allocated. Since we're planning on considering early ACL rules,
we need to count the connection earlier.
diff --git a/src/client.c b/src/client.c
index be0c902..4126ee4 100644
--- a/src/client.c
+++ b/src/client.c
@@ -265,6 +265,7 @@
 		s->data_source = DATA_SRC_NONE;
 
 		s->uniq_id = totalconn;
+		totalconn++;
 		proxy_inc_fe_ctr(l, p);	/* note: cum_beconn will be increased once assigned */
 
 		txn = &s->txn;
@@ -486,7 +487,6 @@
 		}
 
 		actconn++;
-		totalconn++;
 
 		// fprintf(stderr, "accepting from %p => %d conn, %d total, task=%p\n", p, actconn, totalconn, t);
 	} /* end of while (p->feconn < p->maxconn) */