-dce
[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 1
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, int isDefault, const struct sockaddr *addr,
38       const struct sockaddr *broadcast_addr, const struct sockaddr *netmask,
39       socklen_t addrlen)
40 {
41   int *ok = cls;
42   char buf[INET6_ADDRSTRLEN];
43
44   if (NULL == addr)
45     return GNUNET_OK;
46 #if VERBOSE
47   const char * protocol;
48   if (addrlen == sizeof (struct sockaddr_in))
49     protocol = "IPv4";
50   else
51     protocol = "IPv6";
52   printf ("%s Address `%s'\n", protocol, GNUNET_a2s ((const struct sockaddr *) addr,addrlen) );
53   printf ("     Netmask `%s'\n", GNUNET_a2s ((const struct sockaddr *) netmask, addrlen) );
54   printf ("     Broadcast `%s'\n", GNUNET_a2s ((const struct sockaddr *) broadcast_addr,addrlen) );
55 #endif
56
57   inet_ntop (addr->sa_family,
58              (addr->sa_family ==
59               AF_INET) ? (void *) &((struct sockaddr_in *) addr)->sin_addr
60              : (void *) &((struct sockaddr_in6 *) addr)->sin6_addr, buf,
61              sizeof (buf));
62   if ((0 == strcmp ("::1", buf)) || (0 == strcmp ("127.0.0.1", buf)))
63     *ok = 0;
64   return GNUNET_OK;
65 }
66
67 static int
68 testifcs ()
69 {
70   int ret;
71
72   ret = 1;
73   GNUNET_OS_network_interfaces_list (&proc, &ret);
74   return ret;
75 }
76
77 int
78 main (int argc, char *argv[])
79 {
80   int errCnt = 0;
81
82   GNUNET_log_setup ("test-os-network", "WARNING", NULL);
83   if (0 != testifcs ())
84     errCnt++;
85   return errCnt;
86 }