aboutsummaryrefslogtreecommitdiff
path: root/src/util/resolver.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-10-01 16:23:25 +0000
committerChristian Grothoff <christian@grothoff.org>2009-10-01 16:23:25 +0000
commitf0aa7bc0a136b1e436018ef72e1c814f04c33379 (patch)
treed52c0ad69e3507610fb3271f1f5273bd4d05c124 /src/util/resolver.h
parent028a762caf0c2e1cc7b23a9dc4becf9859d13c15 (diff)
downloadgnunet-f0aa7bc0a136b1e436018ef72e1c814f04c33379.tar.gz
gnunet-f0aa7bc0a136b1e436018ef72e1c814f04c33379.zip
moving resolver to util, making DNS lookups asynchronous in util
Diffstat (limited to 'src/util/resolver.h')
-rw-r--r--src/util/resolver.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/util/resolver.h b/src/util/resolver.h
new file mode 100644
index 000000000..31637f01d
--- /dev/null
+++ b/src/util/resolver.h
@@ -0,0 +1,63 @@
1/*
2 This file is part of GNUnet.
3 (C) 2009 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 2, 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 * @author Christian Grothoff
23 * @file resolver/resolver.h
24 */
25#ifndef RESOLVER_H
26#define RESOLVER_H
27
28#include "gnunet_common.h"
29
30#define DEBUG_RESOLVER GNUNET_NO
31
32/**
33 * Request for the resolver. Followed by either
34 * the "struct sockaddr" or the 0-terminated hostname.
35 *
36 * The response will be one or more messages of type
37 * RESOLVER_RESPONSE, each with the message header
38 * immediately followed by the requested data
39 * (hostname or struct sockaddr, depending on direction).
40 * The last RESOLVER_RESPONSE will just be a header
41 * without any data (used to indicate the end of the list).
42 */
43struct GNUNET_RESOLVER_GetMessage
44{
45 /**
46 * Type: GNUNET_MESSAGE_TYPE_STATISTICS_VALUE
47 */
48 struct GNUNET_MessageHeader header;
49
50 /**
51 * GNUNET_YES to get hostname from IP,
52 * GNUNET_NO to get IP from hostname.
53 */
54 int32_t direction GNUNET_PACKED;
55
56 /**
57 * Domain to use (AF_INET, AF_INET6 or AF_UNSPEC).
58 */
59 int32_t domain GNUNET_PACKED;
60
61};
62
63#endif