Prefer <config.h> over "config.h". See autoconf doc for explanation.
[gnulib.git] / tests / test-getaddrinfo.c
1 /* Test the getaddrinfo module.
2
3    Copyright (C) 2006-2008 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 "getaddrinfo.h"
22 #include "inet_ntop.h"
23 #include <stdio.h>
24 #include <string.h>
25
26 /* BeOS does not have AF_UNSPEC.  */
27 #ifndef AF_UNSPEC
28 # define AF_UNSPEC 0
29 #endif
30
31 #ifndef EAI_SERVICE
32 # define EAI_SERVICE 0
33 #endif
34
35 int simple (char *host, char *service)
36 {
37   char buf[BUFSIZ];
38   struct addrinfo hints;
39   struct addrinfo *ai0, *ai;
40   int res;
41
42   printf ("Finding %s service %s...\n", host, service);
43
44   /* This initializes "hints" but does not use it.  Is there a reason
45      for this?  If so, please fix this comment.  */
46   memset (&hints, 0, sizeof (hints));
47   hints.ai_flags = AI_CANONNAME;
48   hints.ai_family = AF_UNSPEC;
49   hints.ai_socktype = SOCK_STREAM;
50
51   res = getaddrinfo (host, service, 0, &ai0);
52
53   printf ("res %d: %s\n", res, gai_strerror (res));
54
55   if (res != 0)
56     {
57       /* Solaris reports EAI_SERVICE for "http" and "https".  Don't
58          fail the test merely because of this.  */
59       if (res == EAI_SERVICE)
60         return 0;
61
62       return 1;
63     }
64
65   for (ai = ai0; ai; ai = ai->ai_next)
66     {
67       printf ("\tflags %x\n", ai->ai_flags);
68       printf ("\tfamily %x\n", ai->ai_family);
69       printf ("\tsocktype %x\n", ai->ai_socktype);
70       printf ("\tprotocol %x\n", ai->ai_protocol);
71       printf ("\taddrlen %ld: ", (unsigned long) ai->ai_addrlen);
72       printf ("\tFound %s\n",
73               inet_ntop (ai->ai_family,
74                          &((struct sockaddr_in *)
75                           ai->ai_addr)->sin_addr,
76                          buf, sizeof (buf) - 1));
77       if (ai->ai_canonname)
78         printf ("\tFound %s...\n", ai->ai_canonname);
79
80       {
81         char ipbuf[BUFSIZ];
82         char portbuf[BUFSIZ];
83
84         res = getnameinfo (ai->ai_addr, ai->ai_addrlen,
85                            ipbuf, sizeof (ipbuf) - 1,
86                            portbuf, sizeof (portbuf) - 1,
87                            NI_NUMERICHOST|NI_NUMERICSERV);
88         printf ("\t\tgetnameinfo %d: %s\n", res, gai_strerror (res));
89         if (res == 0)
90           {
91             printf ("\t\tip %s\n", ipbuf);
92             printf ("\t\tport %s\n", portbuf);
93           }
94       }
95
96     }
97
98   freeaddrinfo (ai0);
99
100   return 0;
101 }
102
103 #define HOST1 "www.gnu.org"
104 #define SERV1 "http"
105 #define HOST2 "www.ibm.com"
106 #define SERV2 "https"
107 #define HOST3 "microsoft.com"
108 #define SERV3 "http"
109 #define HOST4 "google.org"
110 #define SERV4 "ldap"
111
112 int main (void)
113 {
114 #if _WIN32
115   {
116     WORD requested;
117     WSADATA data;
118     int err;
119
120     requested = MAKEWORD (1, 1);
121     err = WSAStartup (requested, &data);
122     if (err != 0)
123       return 1;
124
125     if (data.wVersion < requested)
126       {
127         WSACleanup ();
128         return 2;
129       }
130   }
131 #endif
132
133   return simple (HOST1, SERV1)
134     + simple (HOST2, SERV2)
135     + simple (HOST3, SERV3)
136     + simple (HOST4, SERV4);
137 }