[BUG] check for global.maxconn before doing accept()

If the accept() is done before checking for global.maxconn, we can
accept too many connections and encounter a lack of file descriptors
when trying to connect to the server. This is the cause of the
"cannot get a server socket" message  encountered in debug mode
during injections with low timeouts.
diff --git a/src/client.c b/src/client.c
index 05ee8d5..02c7c02 100644
--- a/src/client.c
+++ b/src/client.c
@@ -76,7 +76,7 @@
 			max_accept = max;
 	}
 
-	while (p->feconn < p->maxconn && max_accept--) {
+	while (p->feconn < p->maxconn && actconn < global.maxconn && max_accept--) {
 		struct sockaddr_storage addr;
 		socklen_t laddr = sizeof(addr);