socket: Increase listen socket backlog queue length
diff --git a/common/socket.c b/common/socket.c
index 1c38965..7677b1d 100644
--- a/common/socket.c
+++ b/common/socket.c
@@ -157,7 +157,7 @@
 		return -1;
 	}
 
-	if (listen(sock, 10) < 0) {
+	if (listen(sock, 100) < 0) {
 		perror("listen");
 		socket_close(sock);
 		return -1;
@@ -366,7 +366,7 @@
 		return -1;
 	}
 
-	if (listen(sfd, 1) < 0) {
+	if (listen(sfd, 100) < 0) {
 		perror("listen()");
 		socket_close(sfd);
 		return -1;