aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_namestore_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_namestore_service.h')
-rw-r--r--src/include/gnunet_namestore_service.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/include/gnunet_namestore_service.h b/src/include/gnunet_namestore_service.h
index f2f314bfc..497d57136 100644
--- a/src/include/gnunet_namestore_service.h
+++ b/src/include/gnunet_namestore_service.h
@@ -227,6 +227,7 @@ GNUNET_NAMESTORE_verify_signature (const struct GNUNET_CRYPTO_RsaPublicKeyBinary
227 * 227 *
228 * @param h handle to the namestore 228 * @param h handle to the namestore
229 * @param pkey private key of the zone 229 * @param pkey private key of the zone
230 * @param expire block expiration time
230 * @param name name that is being mapped (at most 255 characters long) 231 * @param name name that is being mapped (at most 255 characters long)
231 * @param rd record data to store 232 * @param rd record data to store
232 * @param cont continuation to call when done 233 * @param cont continuation to call when done
@@ -235,11 +236,12 @@ GNUNET_NAMESTORE_verify_signature (const struct GNUNET_CRYPTO_RsaPublicKeyBinary
235 */ 236 */
236struct GNUNET_NAMESTORE_QueueEntry * 237struct GNUNET_NAMESTORE_QueueEntry *
237GNUNET_NAMESTORE_record_create (struct GNUNET_NAMESTORE_Handle *h, 238GNUNET_NAMESTORE_record_create (struct GNUNET_NAMESTORE_Handle *h,
238 const struct GNUNET_CRYPTO_RsaPrivateKey *pkey, 239 const struct GNUNET_CRYPTO_RsaPrivateKey *pkey,
239 const char *name, 240 const struct GNUNET_TIME_Absolute expire,
240 const struct GNUNET_NAMESTORE_RecordData *rd, 241 const char *name,
241 GNUNET_NAMESTORE_ContinuationWithStatus cont, 242 const struct GNUNET_NAMESTORE_RecordData *rd,
242 void *cont_cls); 243 GNUNET_NAMESTORE_ContinuationWithStatus cont,
244 void *cont_cls);
243 245
244 246
245/** 247/**