/**
* Add the given address with infinit expiration to the buffer.
*
- * @param ac add context
+ * @param cls closure
* @param address address to add
* @param expiration old expiration
* @return GNUNET_OK keep iterating
*
* @param h handle to the namestore
* @param pkey private key of the zone
- * @param expire block expiration time
* @param name name that is being mapped (at most 255 characters long)
* @param rd record data to store
* @param cont continuation to call when done
/**
* Starts a new zone iteration (used to periodically PUT all of our
- * records into our DHT). This MUST lock the GNUNET_NAMESTORE_Handle
- * for any other calls than GNUNET_NAMESTORE_zone_iterator_next and
- * GNUNET_NAMESTORE_zone_iteration_stop. "proc" will be called once
+ * records into our DHT). "proc" will be called once
* immediately, and then again after
* "GNUNET_NAMESTORE_zone_iterator_next" is invoked.
*
/**
* Write zonefile to disk
- * @param file where to write
- * @param ret the key
+ * @param filename where to write
+ * @param c the crypto container
*
* @return GNUNET_OK on success, GNUNET_SYSERR on fail
*/
-int write_key_to_file (const char *filename, struct GNUNET_NAMESTORE_CryptoContainer *c)
+int
+write_key_to_file (const char *filename, struct GNUNET_NAMESTORE_CryptoContainer *c)
{
struct GNUNET_CRYPTO_RsaPrivateKey *ret = c->privkey;
struct GNUNET_CRYPTO_RsaPrivateKeyBinaryEncoded *enc;
*
* @param h handle to the namestore
* @param pkey private key of the zone
- * @param expire block expiration time
* @param name name that is being mapped (at most 255 characters long)
* @param rd record data to store
* @param cont continuation to call when done