X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Funix.c;h=3449001059de76e92b569a479fe792f3481b1421;hp=c5f55af99e48fc5827d84e545a7d6f5cf32428cc;hb=945e7d349478e8adddecf9aef35b62ec110c71ee;hpb=1425def96bbdcd685ab8634c4e655766819abd6a 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;