- use tunnel encryption state to select decryption key
[oweals/gnunet.git] / src / include / gnunet_gns_service.h
index 6779572147333424e0b0e0bc34b48f1d6ace2c8e..36ca0ab5e81de2e9adaa4ef1736d1fab12da73d5 100644 (file)
@@ -84,7 +84,7 @@ GNUNET_GNS_disconnect (struct GNUNET_GNS_Handle *handle);
  */
 typedef void (*GNUNET_GNS_LookupResultProcessor) (void *cls,
                                                  uint32_t rd_count,
-                                                 const struct GNUNET_NAMESTORE_RecordData *rd);
+                                                 const struct GNUNET_GNSRECORD_Data *rd);
 
 
 /**
@@ -104,13 +104,13 @@ typedef void (*GNUNET_GNS_LookupResultProcessor) (void *cls,
  * @param proc_cls closure for processor
  * @return handle to the queued request
  */
-struct GNUNET_GNS_LookupRequest*
+struct GNUNET_GNS_LookupRequest *
 GNUNET_GNS_lookup (struct GNUNET_GNS_Handle *handle,
                   const char *name,
-                  const struct GNUNET_CRYPTO_EccPublicKey *zone,
+                  const struct GNUNET_CRYPTO_EcdsaPublicKey *zone,
                   int type,
                   int only_cached,
-                  const struct GNUNET_CRYPTO_EccPrivateKey *shorten_zone_key,
+                  const struct GNUNET_CRYPTO_EcdsaPrivateKey *shorten_zone_key,
                   GNUNET_GNS_LookupResultProcessor proc,
                   void *proc_cls);