From 6ccbbdcb5ec825bb5529812fe3e07896ed11650a Mon Sep 17 00:00:00 2001 From: Christopher Ramey Date: Wed, 4 Feb 2015 21:00:05 +0000 Subject: [PATCH] Increase listen backlog count to 50 --- src/wstationd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wstationd.c b/src/wstationd.c index 7b9d4cc..af8168a 100644 --- a/src/wstationd.c +++ b/src/wstationd.c @@ -120,7 +120,7 @@ int main(int argc, char *argv[]) } // Listen on port - if(listen(sockfd, 10) != 0){ + if(listen(sockfd, 50) != 0){ fprintf(stderr, "%s: cannot listen - %s\n", exec_name, strerror(errno) );