/usr/include/gnunet/gnunet_dns_service.h is in gnunet-dev 0.9.3-7build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | /*
This file is part of GNUnet
(C) 2012 Christian Grothoff (and other contributing authors)
GNUnet is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 2, or (at your
option) any later version.
GNUnet is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNUnet; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
/**
* @file include/gnunet_dns_service.h
* @brief API to access the DNS service.
* @author Christian Grothoff
*/
#ifndef GNUNET_DNS_SERVICE_NEW_H
#define GNUNET_DNS_SERVICE_NEW_H
#include "gnunet_common.h"
#include "gnunet_util_lib.h"
/**
* Opaque DNS handle
*/
struct GNUNET_DNS_Handle;
/**
* Handle to identify an individual DNS request.
*/
struct GNUNET_DNS_RequestHandle;
/**
* Flags that specify when to call the client's handler.
*/
enum GNUNET_DNS_Flags
{
/**
* Useless option: never call the client.
*/
GNUNET_DNS_FLAG_NEVER = 0,
/**
* Set this flag to see all requests first prior to resolution
* (for monitoring). Clients that set this flag must then
* call "GNUNET_DNS_request_forward" when they process a request
* for the first time. Caling "GNUNET_DNS_request_answer" is
* not allowed for MONITOR peers.
*/
GNUNET_DNS_FLAG_REQUEST_MONITOR = 1,
/**
* This client should be called on requests that have not
* yet been resolved as this client provides a resolution
* service. Note that this does not guarantee that the
* client will see all requests as another client might be
* called first and that client might have already done the
* resolution, in which case other pre-resolution clients
* won't see the request anymore.
*/
GNUNET_DNS_FLAG_PRE_RESOLUTION = 2,
/**
* This client wants to be called on the results of a DNS resolution
* (either resolved by PRE-RESOLUTION clients or the global DNS).
* The client then has a chance to modify the answer (or cause it to
* be dropped). There is no guarantee that other POST-RESOLUTION
* client's won't modify (or drop) the answer afterwards.
*/
GNUNET_DNS_FLAG_POST_RESOLUTION = 4,
/**
* Set this flag to see all requests just before they are
* returned to the network. Clients that set this flag must then
* call "GNUNET_DNS_request_forward" when they process a request
* for the last time. Caling "GNUNET_DNS_request_answer" is
* not allowed for MONITOR peers.
*/
GNUNET_DNS_FLAG_RESPONSE_MONITOR = 8
};
/**
* Signature of a function that is called whenever the DNS service
* encounters a DNS request and needs to do something with it. The
* function has then the chance to generate or modify the response by
* calling one of the three "GNUNET_DNS_request_*" continuations.
*
* When a request is intercepted, this function is called first to
* give the client a chance to do the complete address resolution;
* "rdata" will be NULL for this first call for a DNS request, unless
* some other client has already filled in a response.
*
* If multiple clients exist, all of them are called before the global
* DNS. The global DNS is only called if all of the clients'
* functions call GNUNET_DNS_request_forward. Functions that call
* GNUNET_DNS_request_forward will be called again before a final
* response is returned to the application. If any of the clients'
* functions call GNUNET_DNS_request_drop, the response is dropped.
*
* @param cls closure
* @param rh request handle to user for reply
* @param request_length number of bytes in request
* @param request udp payload of the DNS request
*/
typedef void (*GNUNET_DNS_RequestHandler)(void *cls,
struct GNUNET_DNS_RequestHandle *rh,
size_t request_length,
const char *request);
/**
* If a GNUNET_DNS_RequestHandler calls this function, the client
* has no desire to interfer with the request and it should
* continue to be processed normally.
*
* @param rh request that should now be forwarded
*/
void
GNUNET_DNS_request_forward (struct GNUNET_DNS_RequestHandle *rh);
/**
* If a GNUNET_DNS_RequestHandler calls this function, the request is
* to be dropped and no response should be generated.
*
* @param rh request that should now be dropped
*/
void
GNUNET_DNS_request_drop (struct GNUNET_DNS_RequestHandle *rh);
/**
* If a GNUNET_DNS_RequestHandler calls this function, the request is
* supposed to be answered with the data provided to this call (with
* the modifications the function might have made). The reply given
* must always be a valid DNS reply and not a mutated DNS request.
*
* @param rh request that should now be answered
* @param reply_length size of reply (uint16_t to force sane size)
* @param reply reply data
*/
void
GNUNET_DNS_request_answer (struct GNUNET_DNS_RequestHandle *rh,
uint16_t reply_length,
const char *reply);
/**
* Connect to the service-dns
*
* @param cfg configuration to use
* @param flags when to call rh
* @param rh function to call with DNS requests
* @param rh_cls closure to pass to rh
* @return DNS handle
*/
struct GNUNET_DNS_Handle *
GNUNET_DNS_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
enum GNUNET_DNS_Flags flags,
GNUNET_DNS_RequestHandler rh,
void *rh_cls);
/**
* Disconnect from the DNS service.
*
* @param dh DNS handle
*/
void
GNUNET_DNS_disconnect (struct GNUNET_DNS_Handle *dh);
#endif
|