Increase the socket listen queue length, 5 doesn't suffice to registration
authorDaniel Kouřil <kouril@ics.muni.cz>
Thu, 7 Apr 2005 11:32:13 +0000 (11:32 +0000)
committerDaniel Kouřil <kouril@ics.muni.cz>
Thu, 7 Apr 2005 11:32:13 +0000 (11:32 +0000)
storms

org.glite.security.proxyrenewal/project/version.properties
org.glite.security.proxyrenewal/src/renewd.c

index 1864e41..d503545 100644 (file)
@@ -1,4 +1,4 @@
 #Wed Jan 12 04:00:08 CET 2005
-module.version=1.2.1
+module.version=1.2.2
 module.build=137
 module.age=1
index a672210..4a595a8 100644 (file)
@@ -463,7 +463,7 @@ do_listen(char *socket_name, int *sock)
       return errno;
    }
 
-   ret = listen(s, 5); /* XXX enough ? */
+   ret = listen(s, 50);
    if (ret == -1) {
       edg_wlpr_Log(LOG_ERR, "listen(): %s", strerror(errno));
       close(s);