test-getaddrinfo: whitespace cleanup
[gnulib.git] / tests / test-getaddrinfo.c
1 /* Test the getaddrinfo module.
2
3    Copyright (C) 2006-2009 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* Written by Simon Josefsson.  */
19
20 #include <config.h>
21 #include <netdb.h>
22
23 #include <arpa/inet.h>
24 #include <errno.h>
25 #include <netinet/in.h>
26 #include <stdio.h>
27 #include <string.h>
28
29 /* Whether to print debugging messages.  */
30 #define ENABLE_DEBUGGING 0
31
32 #if ENABLE_DEBUGGING
33 # define dbgprintf printf
34 #else
35 # define dbgprintf if (0) printf
36 #endif
37
38 /* BeOS does not have AF_UNSPEC.  */
39 #ifndef AF_UNSPEC
40 # define AF_UNSPEC 0
41 #endif
42
43 #ifndef EAI_SERVICE
44 # define EAI_SERVICE 0
45 #endif
46
47 int simple (char *host, char *service)
48 {
49   char buf[BUFSIZ];
50   static int skip = 0;
51   struct addrinfo hints;
52   struct addrinfo *ai0, *ai;
53   int res;
54   int err;
55
56   /* Once we skipped the test, do not try anything else */
57   if (skip)
58     return 0;
59
60   dbgprintf ("Finding %s service %s...\n", host, service);
61
62   /* This initializes "hints" but does not use it.  Is there a reason
63      for this?  If so, please fix this comment.  */
64   memset (&hints, 0, sizeof (hints));
65   hints.ai_flags = AI_CANONNAME;
66   hints.ai_family = AF_UNSPEC;
67   hints.ai_socktype = SOCK_STREAM;
68
69   res = getaddrinfo (host, service, 0, &ai0);
70   err = errno;
71
72   dbgprintf ("res %d: %s\n", res, gai_strerror (res));
73
74   if (res != 0)
75     {
76       /* EAI_AGAIN is returned if no network is available. Don't fail
77          the test merely because someone is down the country on their
78          in-law's farm. */
79       if (res == EAI_AGAIN)
80         {
81           skip++;
82           fprintf (stderr, "skipping getaddrinfo test: no network?\n");
83           return 77;
84         }
85       /* IRIX reports EAI_NONAME for "https".  Don't fail the test
86          merely because of this.  */
87       if (res == EAI_NONAME)
88         return 0;
89       /* Solaris reports EAI_SERVICE for "http" and "https".  Don't
90          fail the test merely because of this.  */
91       if (res == EAI_SERVICE)
92         return 0;
93       /* AIX reports EAI_NODATA for "https".  Don't fail the test
94          merely because of this.  */
95       if (res == EAI_NODATA)
96         return 0;
97       /* Provide details if errno was set.  */
98       if (res == EAI_SYSTEM)
99         dbgprintf ("system error: %s\n", strerror (err));
100
101       return 1;
102     }
103
104   for (ai = ai0; ai; ai = ai->ai_next)
105     {
106       dbgprintf ("\tflags %x\n", ai->ai_flags);
107       dbgprintf ("\tfamily %x\n", ai->ai_family);
108       dbgprintf ("\tsocktype %x\n", ai->ai_socktype);
109       dbgprintf ("\tprotocol %x\n", ai->ai_protocol);
110       dbgprintf ("\taddrlen %ld: ", (unsigned long) ai->ai_addrlen);
111       dbgprintf ("\tFound %s\n",
112                  inet_ntop (ai->ai_family,
113                             &((struct sockaddr_in *)
114                               ai->ai_addr)->sin_addr,
115                             buf, sizeof (buf) - 1));
116       if (ai->ai_canonname)
117         dbgprintf ("\tFound %s...\n", ai->ai_canonname);
118
119       {
120         char ipbuf[BUFSIZ];
121         char portbuf[BUFSIZ];
122
123         res = getnameinfo (ai->ai_addr, ai->ai_addrlen,
124                            ipbuf, sizeof (ipbuf) - 1,
125                            portbuf, sizeof (portbuf) - 1,
126                            NI_NUMERICHOST|NI_NUMERICSERV);
127         dbgprintf ("\t\tgetnameinfo %d: %s\n", res, gai_strerror (res));
128         if (res == 0)
129           {
130             dbgprintf ("\t\tip %s\n", ipbuf);
131             dbgprintf ("\t\tport %s\n", portbuf);
132           }
133       }
134
135     }
136
137   freeaddrinfo (ai0);
138
139   return 0;
140 }
141
142 #define HOST1 "www.gnu.org"
143 #define SERV1 "http"
144 #define HOST2 "www.ibm.com"
145 #define SERV2 "https"
146 #define HOST3 "microsoft.com"
147 #define SERV3 "http"
148 #define HOST4 "google.org"
149 #define SERV4 "ldap"
150
151 int main (void)
152 {
153 #if _WIN32
154   {
155     WORD requested;
156     WSADATA data;
157     int err;
158
159     requested = MAKEWORD (1, 1);
160     err = WSAStartup (requested, &data);
161     if (err != 0)
162       return 1;
163
164     if (data.wVersion < requested)
165       {
166         WSACleanup ();
167         return 2;
168       }
169   }
170 #endif
171
172   return simple (HOST1, SERV1)
173     + simple (HOST2, SERV2)
174     + simple (HOST3, SERV3)
175     + simple (HOST4, SERV4);
176 }