2 This file is part of GNUnet.
3 Copyright (C) 2010 GNUnet e.V.
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.
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.
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., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
22 * @file util/gnunet-resolver.c
23 * @brief tool to test resolver
24 * @author Christian Grothoff
27 #include "gnunet_util_lib.h"
28 #include "gnunet_resolver_service.h"
30 #define GET_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
33 * Flag for reverse lookup.
39 * Prints each hostname obtained from DNS.
41 * @param cls closure (unused)
42 * @param hostname one of the names for the host, NULL
43 * on the last call to the callback
46 print_hostname (void *cls,
51 FPRINTF (stdout, "%s\n", hostname);
56 * Callback function to display address.
58 * @param cls closure (unused)
59 * @param addr one of the addresses of the host, NULL for the last address
60 * @param addrlen length of the address
63 print_sockaddr (void *cls, const struct sockaddr *addr, socklen_t addrlen)
67 FPRINTF (stdout, "%s\n", GNUNET_a2s (addr, addrlen));
72 * Main function that will be run by the scheduler.
75 * @param args remaining command-line arguments
76 * @param cfgfile name of the configuration file used (for saving, can be NULL!)
77 * @param cfg configuration
80 run (void *cls, char *const *args, const char *cfgfile,
81 const struct GNUNET_CONFIGURATION_Handle *cfg)
83 const struct sockaddr *sa;
85 struct sockaddr_in v4;
86 struct sockaddr_in6 v6;
92 GNUNET_RESOLVER_ip_get (args[0], AF_UNSPEC, GET_TIMEOUT, &print_sockaddr, NULL);
97 memset (&v4, 0, sizeof (v4));
98 v4.sin_family = AF_INET;
99 #if HAVE_SOCKADDR_IN_SIN_LEN
100 v4.sin_len = sizeof (v4);
102 if (1 == inet_pton (AF_INET,
106 sa = (struct sockaddr *) &v4;
109 memset (&v6, 0, sizeof (v6));
110 v6.sin6_family = AF_INET6;
111 #if HAVE_SOCKADDR_IN_SIN_LEN
112 v6.sin6_len = sizeof (v6);
114 if (1 == inet_pton (AF_INET6,
118 sa = (struct sockaddr *) &v6;
124 "`%s' is not a valid IP: %s\n",
129 GNUNET_RESOLVER_hostname_get (sa, salen,
138 * The main function to access GNUnet's DNS resolver.
140 * @param argc number of arguments from the command line
141 * @param argv command line arguments
142 * @return 0 ok, 1 on error
145 main (int argc, char *const *argv)
147 struct GNUNET_GETOPT_CommandLineOption options[] = {
148 GNUNET_GETOPT_OPTION_SET_ONE ('r',
150 gettext_noop ("perform a reverse lookup"),
152 GNUNET_GETOPT_OPTION_END
156 if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
160 GNUNET_PROGRAM_run (argc, argv, "gnunet-resolver [hostname]",
161 gettext_noop ("Use build-in GNUnet stub resolver"),
162 options, &run, NULL)) ? 0 : 1;
163 GNUNET_free ((void*) argv);
167 /* end of gnunet-resolver.c */