1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

increase the listen queue. Now that the eventscripts may become clients and connect back to the server we do get a lot more concurrent connection attempts (takepip/teleaseip are performed in parallell)

(This used to be ctdb commit 018f8b0b1823ef59b46f1a671aec5309d10628f4)
This commit is contained in:
Ronnie Sahlberg 2009-04-06 14:00:41 +10:00
parent 1f87ee85bc
commit e5e2f6f8f7

View File

@ -582,7 +582,7 @@ static int ux_socket_bind(struct ctdb_context *ctdb)
}
if (listen(ctdb->daemon.sd, 10) != 0) {
if (listen(ctdb->daemon.sd, 100) != 0) {
DEBUG(DEBUG_CRIT,("Unable to listen on ctdb socket '%s'\n", ctdb->daemon.name));
goto failed;
}