-fix for #688590: allow user to specify how to install nsslibs
[oweals/gnunet.git] / src / gns / gnunet-service-gns_interceptor.h
index 03b91856e24e1fe0be40559229eca3de1b75d622..dc39aecefaacaaf4f939d101e50db91f38367392 100644 (file)
@@ -5,14 +5,19 @@
  * Initialize dns interceptor
  *
  * @param zone the zone
+ * @param key the private key of the local zone
  * @param c the configuration
  * @return GNUNET_YES on success GNUNET_SYSERR on error
  */
 int
-gns_interceptor_init(GNUNET_HashCode zone,
+gns_interceptor_init(struct GNUNET_CRYPTO_ShortHashCode zone,
+                     struct GNUNET_CRYPTO_RsaPrivateKey *key,
                      const struct GNUNET_CONFIGURATION_Handle *c);
 
+/**
+ * Stops the interceptor
+ */
 void
-gns_interceptor_stop(void){};
+gns_interceptor_stop(void);
 
 #endif