X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Funix.c;h=c5f55af99e48fc5827d84e545a7d6f5cf32428cc;hb=60a702f390f7e2addfdab79f2328db3ba2897c8b;hp=c67b724cd90d7e8af9de8b2602df57f5b6054e69;hpb=31e3a0ef5a0866477a3b54dc6ffbeb0aca4e0029;p=yaz-moved-to-github.git diff --git a/src/unix.c b/src/unix.c index c67b724..c5f55af 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.11 2005-02-01 14:37:47 adam Exp $ + * $Id: unix.c,v 1.13 2005-02-08 13:23:23 adam Exp $ * UNIX socket COMSTACK. By Morten Bøgeskov. */ /** @@ -313,6 +313,7 @@ static int unix_connect(COMSTACK h, void *address) { struct sockaddr_un *add = (struct sockaddr_un *)address; int r; + int i; TRC(fprintf(stderr, "unix_connect\n")); h->io_pending = 0; @@ -321,14 +322,28 @@ static int unix_connect(COMSTACK h, void *address) h->cerrno = CSOUTSTATE; return -1; } - r = connect(h->iofile, (struct sockaddr *) add, SUN_LEN(add)); + for (i = 0; i<3; i++) + { + r = connect(h->iofile, (struct sockaddr *) add, SUN_LEN(add)); + if (r < 0 && yaz_errno() == EAGAIN) + { +#if HAVE_USLEEP + usleep(i*10000+1000); /* 1ms, 11ms, 21ms */ +#else + sleep(1); +#endif + continue; + } + else + break; + } if (r < 0) { if (yaz_errno() == EINPROGRESS) { h->event = CS_CONNECT; h->state = CS_ST_CONNECTING; - h->io_pending = CS_WANT_WRITE|CS_WANT_READ; + h->io_pending = CS_WANT_WRITE; return 1; } h->cerrno = CSYSERR;