ares_timeout.c: fix compiler warning
[platform/upstream/c-ares.git] / ares_timeout.c
1
2 /* Copyright 1998 by the Massachusetts Institute of Technology.
3  *
4  * Permission to use, copy, modify, and distribute this
5  * software and its documentation for any purpose and without
6  * fee is hereby granted, provided that the above copyright
7  * notice appear in all copies and that both that copyright
8  * notice and this permission notice appear in supporting
9  * documentation, and that the name of M.I.T. not be used in
10  * advertising or publicity pertaining to distribution of the
11  * software without specific, written prior permission.
12  * M.I.T. makes no representations about the suitability of
13  * this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  */
16
17 #include "ares_setup.h"
18
19 #ifdef HAVE_LIMITS_H
20 #include <limits.h>
21 #endif
22 #ifdef HAVE_SYS_TIME_H
23 #include <sys/time.h>
24 #endif
25
26 #include <time.h>
27
28 #include "ares.h"
29 #include "ares_private.h"
30
31 /* WARNING: Beware that this is linear in the number of outstanding
32  * requests! You are probably far better off just calling ares_process()
33  * once per second, rather than calling ares_timeout() to figure out
34  * when to next call ares_process().
35  */
36 struct timeval *ares_timeout(ares_channel channel, struct timeval *maxtv,
37                              struct timeval *tvbuf)
38 {
39   struct query *query;
40   struct list_node* list_head;
41   struct list_node* list_node;
42   struct timeval now;
43   struct timeval nextstop;
44   long offset, min_offset;
45
46   /* No queries, no timeout (and no fetch of the current time). */
47   if (ares__is_list_empty(&(channel->all_queries)))
48     return maxtv;
49
50   /* Find the minimum timeout for the current set of queries. */
51   now = ares__tvnow();
52   min_offset = -1;
53
54   list_head = &(channel->all_queries);
55   for (list_node = list_head->next; list_node != list_head;
56        list_node = list_node->next)
57     {
58       query = list_node->data;
59       if (query->timeout.tv_sec == 0)
60         continue;
61       offset = ares__timeoffset(&now, &query->timeout);
62       if (offset < 0)
63         offset = 0;
64       if (min_offset == -1 || offset < min_offset)
65         min_offset = offset;
66     }
67
68   /* If we found a minimum timeout and it's sooner than the one specified in
69    * maxtv (if any), return it.  Otherwise go with maxtv.
70    */
71   if (min_offset != -1)
72     {
73       int ioffset = (min_offset > (long)INT_MAX) ? INT_MAX : (int)min_offset;
74
75       nextstop.tv_sec = ioffset/1000;
76       nextstop.tv_usec = (ioffset%1000)*1000;
77
78       if (!maxtv || ares__timedout(maxtv, &nextstop))
79         {
80           *tvbuf = nextstop;
81           return tvbuf;
82         }
83     }
84
85   return maxtv;
86 }