From: Adam Dickmeiss Date: Thu, 25 Jul 2002 12:51:48 +0000 (+0000) Subject: Default timeout is 25 seconds X-Git-Tag: YAZ.1.8.8~10 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=a0ff2572c63e4be9254b12d08b0166b6232477de Default timeout is 25 seconds --- diff --git a/zoom/zoom-c.c b/zoom/zoom-c.c index 1d22eae..1b2480b 100644 --- a/zoom/zoom-c.c +++ b/zoom/zoom-c.c @@ -1,5 +1,5 @@ /* - * $Id: zoom-c.c,v 1.36 2002-07-11 10:39:05 adam Exp $ + * $Id: zoom-c.c,v 1.37 2002-07-25 12:51:48 adam Exp $ * * ZOOM layer for C, connections, result sets, queries. */ @@ -2314,7 +2314,7 @@ ZOOM_event (int no, ZOOM_connection *cs) #if HAVE_SYS_POLL_H #else - tv.tv_sec = 15; + tv.tv_sec = 25; tv.tv_usec = 0; FD_ZERO (&input); @@ -2375,7 +2375,7 @@ ZOOM_event (int no, ZOOM_connection *cs) if (!nfds) return 0; #if HAVE_SYS_POLL_H - r = poll (pollfds, nfds, 15000); + r = poll (pollfds, nfds, 25000); for (i = 0; i