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 it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your 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 Affero General Public License for more details.
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
18 SPDX-License-Identifier: AGPL3.0-or-later
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,
59 * Callback function to display address.
61 * @param cls closure (unused)
62 * @param addr one of the addresses of the host, NULL for the last address
63 * @param addrlen length of the address
66 print_sockaddr (void *cls,
67 const struct sockaddr *addr,
81 * Main function that will be run by the scheduler.
84 * @param args remaining command-line arguments
85 * @param cfgfile name of the configuration file used (for saving, can be NULL!)
86 * @param cfg configuration
92 const struct GNUNET_CONFIGURATION_Handle *cfg)
94 const struct sockaddr *sa;
96 struct sockaddr_in v4;
97 struct sockaddr_in6 v6;
106 GNUNET_RESOLVER_ip_get (args[0],
115 memset (&v4, 0, sizeof (v4));
116 v4.sin_family = AF_INET;
117 #if HAVE_SOCKADDR_IN_SIN_LEN
118 v4.sin_len = sizeof (v4);
120 if (1 == inet_pton (AF_INET,
124 sa = (struct sockaddr *) &v4;
127 memset (&v6, 0, sizeof (v6));
128 v6.sin6_family = AF_INET6;
129 #if HAVE_SOCKADDR_IN_SIN_LEN
130 v6.sin6_len = sizeof (v6);
132 if (1 == inet_pton (AF_INET6,
136 sa = (struct sockaddr *) &v6;
142 "`%s' is not a valid IP: %s\n",
147 GNUNET_RESOLVER_hostname_get (sa, salen,
156 * The main function to access GNUnet's DNS resolver.
158 * @param argc number of arguments from the command line
159 * @param argv command line arguments
160 * @return 0 ok, 1 on error
163 main (int argc, char *const *argv)
165 struct GNUNET_GETOPT_CommandLineOption options[] = {
166 GNUNET_GETOPT_option_flag ('r',
168 gettext_noop ("perform a reverse lookup"),
170 GNUNET_GETOPT_OPTION_END
174 if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
178 GNUNET_PROGRAM_run (argc, argv, "gnunet-resolver [hostname]",
179 gettext_noop ("Use build-in GNUnet stub resolver"),
180 options, &run, NULL)) ? 0 : 1;
181 GNUNET_free ((void*) argv);
185 /* end of gnunet-resolver.c */