added multiple iteration support for averaging
[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_util_lib.h"
26
27
28 /**
29  * Check if the address we got is IPv4 or IPv6 loopback (which should
30  * be present on all systems at all times); if so, set ok to 0
31  * (success).
32  */
33 static int
34 proc (void *cls, const char *name, int isDefault, const struct sockaddr *addr,
35       const struct sockaddr *broadcast_addr, const struct sockaddr *netmask,
36       socklen_t addrlen)
37 {
38   int *ok = cls;
39   char buf[INET6_ADDRSTRLEN];
40   const char * protocol;
41
42   if (NULL == addr)
43     return GNUNET_OK;
44   if (addrlen == sizeof (struct sockaddr_in))
45     protocol = "IPv4";
46   else
47     protocol = "IPv6";
48   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
49               "%s Address `%s'\n", protocol, GNUNET_a2s ((const struct sockaddr *) addr,addrlen) );
50   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
51               "Netmask `%s'\n", GNUNET_a2s ((const struct sockaddr *) netmask, addrlen) );
52   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
53               "`%s'\n", GNUNET_a2s ((const struct sockaddr *) broadcast_addr,addrlen) );
54   inet_ntop (addr->sa_family,
55              (addr->sa_family ==
56               AF_INET) ? (void *) &((struct sockaddr_in *) addr)->sin_addr
57              : (void *) &((struct sockaddr_in6 *) addr)->sin6_addr, buf,
58              sizeof (buf));
59   if ((0 == strcmp ("::1", buf)) || (0 == strcmp ("127.0.0.1", buf)))
60     *ok = 0;
61   return GNUNET_OK;
62 }
63
64
65 int
66 main (int argc, char *argv[])
67 {
68   int ret;
69
70   GNUNET_log_setup ("test-os-network", "WARNING", NULL);
71   ret = 1;
72   GNUNET_OS_network_interfaces_list (&proc, &ret);
73   return ret;
74 }
75
76 /* end of test_os_network.c */