Browse Source

Increase listen backlog count to 50

master
Christopher Ramey 9 years ago
committed by cdramey
parent
commit
6ccbbdcb5e
  1. 2
      src/wstationd.c

2
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)
);

Loading…
Cancel
Save