aboutsummaryrefslogtreecommitdiff
path: root/src/util/gnunet-resolver.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-10-20 13:01:13 +0000
committerChristian Grothoff <christian@grothoff.org>2010-10-20 13:01:13 +0000
commit822aacaf607f72315c4a70dc1f7532f94dca54be (patch)
tree14a61a81029e0ff5e7ba0bab19f7dd7998ae1b63 /src/util/gnunet-resolver.c
parent1f69531ec9d9b5d9046895f8c6b0b590185ac17d (diff)
downloadgnunet-822aacaf607f72315c4a70dc1f7532f94dca54be.tar.gz
gnunet-822aacaf607f72315c4a70dc1f7532f94dca54be.zip
largely for testing
Diffstat (limited to 'src/util/gnunet-resolver.c')
-rw-r--r--src/util/gnunet-resolver.c96
1 files changed, 96 insertions, 0 deletions
diff --git a/src/util/gnunet-resolver.c b/src/util/gnunet-resolver.c
new file mode 100644
index 000000000..9686d3a06
--- /dev/null
+++ b/src/util/gnunet-resolver.c
@@ -0,0 +1,96 @@
1/*
2 This file is part of GNUnet.
3 (C) 2010 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/**
22 * @file util/gnunet-resolver.c
23 * @brief tool to test resolver
24 * @author Christian Grothoff
25 */
26#include "platform.h"
27#include "gnunet_util_lib.h"
28#include "gnunet_resolver_service.h"
29
30#define GET_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
31
32/**
33 * Callback function to display address.
34 */
35static void
36printer (void *cls,
37 const struct sockaddr * addr,
38 socklen_t addrlen)
39{
40 if (addr == NULL)
41 return;
42 FPRINTF (stdout,
43 "%s\n",
44 GNUNET_a2s (addr, addrlen));
45}
46
47
48/**
49 * Main function that will be run by the scheduler.
50 *
51 * @param cls closure
52 * @param sched the scheduler to use
53 * @param args remaining command-line arguments
54 * @param cfgfile name of the configuration file used (for saving, can be NULL!)
55 * @param cfg configuration
56 */
57static void
58run (void *cls,
59 struct GNUNET_SCHEDULER_Handle *sched,
60 char *const *args,
61 const char *cfgfile,
62 const struct GNUNET_CONFIGURATION_Handle *cfg)
63{
64 if (args[0] == NULL)
65 return;
66 GNUNET_RESOLVER_ip_get (sched, cfg,
67 args[0],
68 AF_UNSPEC,
69 GET_TIMEOUT,
70 &printer,
71 NULL);
72}
73
74/**
75 * The main function to obtain statistics in GNUnet.
76 *
77 * @param argc number of arguments from the command line
78 * @param argv command line arguments
79 * @return 0 ok, 1 on error
80 */
81int
82main (int argc, char *const *argv)
83{
84 static const struct GNUNET_GETOPT_CommandLineOption options[] = {
85 GNUNET_GETOPT_OPTION_END
86 };
87 return (GNUNET_OK ==
88 GNUNET_PROGRAM_run (argc,
89 argv,
90 "gnunet-resolver [hostname]",
91 gettext_noop
92 ("Test GNUnet DNS resolver code."),
93 options, &run, NULL)) ? 0 : 1;
94}
95
96/* end of gnunet-resolver.c */