From 945e7d349478e8adddecf9aef35b62ec110c71ee Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 9 Feb 2005 09:18:27 +0000 Subject: [PATCH] Increase listen backlog parameter for UNIX domain sockets. --- src/unix.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/unix.c b/src/unix.c index c5f55af..3449001 100644 --- a/src/unix.c +++ b/src/unix.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: unix.c,v 1.13 2005-02-08 13:23:23 adam Exp $ + * $Id: unix.c,v 1.14 2005-02-09 09:18:27 adam Exp $ * UNIX socket COMSTACK. By Morten Bøgeskov. */ /** @@ -327,7 +327,7 @@ static int unix_connect(COMSTACK h, void *address) r = connect(h->iofile, (struct sockaddr *) add, SUN_LEN(add)); if (r < 0 && yaz_errno() == EAGAIN) { -#if HAVE_USLEEP +#if HAVE_USLEEP usleep(i*10000+1000); /* 1ms, 11ms, 21ms */ #else sleep(1); @@ -420,7 +420,7 @@ static int unix_bind(COMSTACK h, void *address, int mode) } chown(path, sp->uid, sp->gid); chmod(path, sp->umask != -1 ? sp->umask : 0666); - if (mode == CS_SERVER && listen(h->iofile, 3) < 0) + if (mode == CS_SERVER && listen(h->iofile, 100) < 0) { h->cerrno = CSYSERR; return -1; -- 1.7.10.4