-removing 2nd argument from GNUNET_CLIENT_disconnect as it was virtually always GNUNE...
[oweals/gnunet.git] / src / util / resolver.h
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2012 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 util/resolver.h
24  */
25 #ifndef RESOLVER_H
26 #define RESOLVER_H
27
28 #include "gnunet_common.h"
29
30 #define DEBUG_RESOLVER GNUNET_EXTRA_LOGGING
31
32 GNUNET_NETWORK_STRUCT_BEGIN
33
34 /**
35  * Request for the resolver.  Followed by either the "struct sockaddr"
36  * or the 0-terminated hostname.
37  *
38  * The response will be one or more messages of type
39  * RESOLVER_RESPONSE, each with the message header immediately
40  * followed by the requested data (0-terminated hostname or struct
41  * in[6]_addr, depending on direction).  The last RESOLVER_RESPONSE
42  * will just be a header without any data (used to indicate the end of
43  * the list).
44  */
45 struct GNUNET_RESOLVER_GetMessage
46 {
47   /**
48    * Type:  GNUNET_MESSAGE_TYPE_RESOLVER_REQUEST
49    */
50   struct GNUNET_MessageHeader header;
51
52   /**
53    * GNUNET_YES to get hostname from IP,
54    * GNUNET_NO to get IP from hostname.
55    */
56   int32_t direction GNUNET_PACKED;
57
58   /**
59    * Address family to use (AF_INET, AF_INET6 or AF_UNSPEC).
60    */
61   int32_t af GNUNET_PACKED;
62
63   /* followed by 0-terminated string for A/AAAA-lookup or
64      by 'struct in_addr' / 'struct in6_addr' for reverse lookup */
65
66 };
67 GNUNET_NETWORK_STRUCT_END
68
69 #endif