- interactive option to disable waiting on keystroke but wait instead for termination...
[oweals/gnunet.git] / src / gns / gnunet-service-gns_resolver.h
1 /*
2      This file is part of GNUnet.
3      (C) 2009-2013 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  * @file gns/gnunet-service-gns_resolver.h
22  * @brief GNUnet GNS service
23  * @author Martin Schanzenbach
24  */
25 #ifndef GNS_RESOLVER_H
26 #define GNS_RESOLVER_H
27 #include "gns.h"
28 #include "gnunet_dht_service.h"
29 #include "gnunet_namecache_service.h"
30
31 /**
32  * Initialize the resolver subsystem.
33  * MUST be called before #GNS_resolver_lookup.
34  *
35  * @param nh handle to the namestore
36  * @param nc the namecache handle
37  * @param dht handle to the dht
38  * @param c configuration handle
39  * @param max_bg_queries maximum amount of background queries
40  */
41 void
42 GNS_resolver_init (struct GNUNET_NAMESTORE_Handle *nh,
43                    struct GNUNET_NAMECACHE_Handle *nc,
44                    struct GNUNET_DHT_Handle *dht,
45                    const struct GNUNET_CONFIGURATION_Handle *c,
46                    unsigned long long max_bg_queries);
47
48
49 /**
50  * Cleanup resolver: Terminate pending lookups
51  */
52 void
53 GNS_resolver_done (void);
54
55
56 /**
57  * Handle for an active request.
58  */
59 struct GNS_ResolverHandle;
60
61
62 /**
63  * Function called with results for a GNS resolution.
64  *
65  * @param cls closure
66  * @param rd_count number of records in @a rd
67  * @param rd records returned for the lookup
68  */
69 typedef void (*GNS_ResultProcessor)(void *cls,
70                                     uint32_t rd_count,
71                                     const struct GNUNET_GNSRECORD_Data *rd);
72
73
74 /**
75  * Lookup of a record in a specific zone
76  * calls RecordLookupProcessor on result or timeout
77  *
78  * @param zone the zone to perform the lookup in
79  * @param record_type the record type to look up
80  * @param name the name to look up
81  * @param shorten_key optional private key for authority caching, can be NULL
82  * @param only_cached GNUNET_NO to only check locally not DHT for performance
83  * @param proc the processor to call
84  * @param proc_cls the closure to pass to @a proc
85  * @return handle to cancel operation
86  */
87 struct GNS_ResolverHandle *
88 GNS_resolver_lookup (const struct GNUNET_CRYPTO_EcdsaPublicKey *zone,
89                      uint32_t record_type,
90                      const char *name,
91                      const struct GNUNET_CRYPTO_EcdsaPrivateKey *shorten_key,
92                      int only_cached,
93                      GNS_ResultProcessor proc,
94                      void *proc_cls);
95
96
97 /**
98  * Cancel active resolution (i.e. client disconnected).
99  *
100  * @param rh resolution to abort
101  */
102 void
103 GNS_resolver_lookup_cancel (struct GNS_ResolverHandle *rh);
104
105
106
107
108 /**
109  * Generic function to check for TLDs.  Checks if "name" ends in ".tld"
110  *
111  * @param name the name to check
112  * @param tld the tld to check
113  * @return #GNUNET_YES or #GNUNET_NO
114  */
115 int
116 is_tld (const char *name,
117         const char *tld);
118
119
120
121 /**
122  * Checks for gnu/zkey
123  */
124 #define is_gnu_tld(name) is_tld(name, GNUNET_GNS_TLD)
125 #define is_zkey_tld(name) is_tld(name, GNUNET_GNS_TLD_ZKEY)
126
127
128 #endif