* @param cls closure
* @param issuer the issuer chain
* @param issuer_len length of issuer chain
- * @param rd the records in reply
+ * @param value the value returned
*/
-typedef void (*GNUNET_CREDENTIAL_LookupResultProcessor) (void *cls,
- struct GNUNET_IDENTITY_Ego *issuer,
- uint16_t issuer_len,
- const struct GNUNET_CREDENTIAL_Value *value);
+typedef void
+(*GNUNET_CREDENTIAL_LookupResultProcessor) (void *cls,
+ struct GNUNET_IDENTITY_Ego *issuer,
+ uint16_t issuer_len,
+ const struct GNUNET_CREDENTIAL_Value *value);
/**
*/
struct GNUNET_CREDENTIAL_LookupRequest *
GNUNET_CREDENTIAL_lookup (struct GNUNET_CREDENTIAL_Handle *handle,
- const char *credential,
- const struct GNUNET_IDENTITY_Ego *subject,
- GNUNET_CREDENTIAL_LookupResultProcessor proc,
- void *proc_cls);
+ const char *credential,
+ const struct GNUNET_IDENTITY_Ego *subject,
+ GNUNET_CREDENTIAL_LookupResultProcessor proc,
+ void *proc_cls);
/**
* @param rd_count number of records in @a rd
* @param rd the records in reply
*/
-typedef void (*GNUNET_GNS_LookupResultProcessor) (void *cls,
- uint32_t rd_count,
- const struct GNUNET_GNSRECORD_Data *rd);
+typedef void
+(*GNUNET_GNS_LookupResultProcessor) (void *cls,
+ uint32_t rd_count,
+ const struct GNUNET_GNSRECORD_Data *rd);
/**
* Iterator called on obtained result for a GNS lookup.
*
* @param cls closure
- * @param rd_count number of records in @a rd
- * @param rd the records in reply
+ * @param name result of the reverse lookup
*/
-typedef void (*GNUNET_GNS_ReverseLookupResultProcessor) (void *cls,
- const char* name);
+typedef void
+(*GNUNET_GNS_ReverseLookupResultProcessor) (void *cls,
+ const char* name);
/**
* @param proc_cls closure for @a proc
* @return handle to the request
*/
-struct GNUNET_GNS_ReverseLookupRequest*
+struct GNUNET_GNS_ReverseLookupRequest *
GNUNET_GNS_reverse_lookup (struct GNUNET_GNS_Handle *handle,
const struct GNUNET_CRYPTO_EcdsaPublicKey *zone_key,
const struct GNUNET_CRYPTO_EcdsaPublicKey *root_key,
GNUNET_SET_RESULT_REMOVED,
/**
- * Client gets only elements that have been removed from the set.
+ * Client gets only elements that have been added to the set.
*
* Only supported for set union.
*/
/**
* Message that describes the desired mutation.
- * May only be a GNUNET_MESSAGE_TYPE_SET_ADD or
- * GNUNET_MESSAGE_TYPE_SET_REMOVE.
+ * May only be a #GNUNET_MESSAGE_TYPE_SET_ADD or
+ * #GNUNET_MESSAGE_TYPE_SET_REMOVE.
*/
struct GNUNET_MessageHeader *mutation_message;
};