aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-service-gns_interceptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gns/gnunet-service-gns_interceptor.h')
-rw-r--r--src/gns/gnunet-service-gns_interceptor.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gns/gnunet-service-gns_interceptor.h b/src/gns/gnunet-service-gns_interceptor.h
new file mode 100644
index 000000000..03b91856e
--- /dev/null
+++ b/src/gns/gnunet-service-gns_interceptor.h
@@ -0,0 +1,18 @@
1#ifndef GNUNET_GNS_INTERCEPTOR_H
2#define GNUNET_GNS_INTERCEPTOR_H
3
4/**
5 * Initialize dns interceptor
6 *
7 * @param zone the zone
8 * @param c the configuration
9 * @return GNUNET_YES on success GNUNET_SYSERR on error
10 */
11int
12gns_interceptor_init(GNUNET_HashCode zone,
13 const struct GNUNET_CONFIGURATION_Handle *c);
14
15void
16gns_interceptor_stop(void){};
17
18#endif