add units to time, use configuration time api where appropriate, fixing Mantis #1875
[oweals/gnunet.git] / src / util / test_os_network.c
1 /*
2      This file is part of GNUnet.
3      (C) 2003, 2004, 2005, 2006, 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20 /**
21  * @file util/test_os_network.c
22  * @brief testcase for util/os_network.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_configuration_lib.h"
27 #include "gnunet_os_lib.h"
28
29 #define VERBOSE 0
30
31 /**
32  * Check if the address we got is IPv4 or IPv6 loopback (which should
33  * be present on all systems at all times); if so, set ok to 0
34  * (success).
35  */
36 static int
37 proc (void *cls, const char *name,
38       int isDefault,
39       const struct sockaddr * addr,
40       const struct sockaddr * broadcast_addr,
41       const struct sockaddr * netmask,
42       socklen_t addrlen)
43 {
44   int *ok = cls;
45   char buf[INET6_ADDRSTRLEN];
46
47   if (NULL == addr)
48     return GNUNET_OK;
49
50   inet_ntop (addr->sa_family,
51              (addr->sa_family ==
52               AF_INET) ? (void *) &((struct sockaddr_in *) addr)->sin_addr
53              : (void *) &((struct sockaddr_in6 *) addr)->sin6_addr, buf,
54              sizeof (buf));
55   if ((0 == strcmp ("::1", buf)) || (0 == strcmp ("127.0.0.1", buf)))
56     *ok = 0;
57   return GNUNET_OK;
58 }
59
60 static int
61 testifcs ()
62 {
63   int ret;
64
65   ret = 1;
66   GNUNET_OS_network_interfaces_list (&proc, &ret);
67   return ret;
68 }
69
70 int
71 main (int argc, char *argv[])
72 {
73   int errCnt = 0;
74
75   GNUNET_log_setup ("test-os-network", "WARNING", NULL);
76   if (0 != testifcs ())
77     errCnt++;
78   return errCnt;
79 }