aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_reclaim_service.h
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2020-02-04 23:34:10 +0100
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2020-02-09 20:38:10 +0100
commit5fb277e8d012d687f4d2d032571cd4b57946bbfb (patch)
tree2387ee8a40ef9d308e6d34ebd0f8af0dc90feb5f /src/include/gnunet_reclaim_service.h
parent065ecd9a0f92ecafd6c552494a6310b92cc08597 (diff)
downloadgnunet-5fb277e8d012d687f4d2d032571cd4b57946bbfb.tar.gz
gnunet-5fb277e8d012d687f4d2d032571cd4b57946bbfb.zip
towards better API
Diffstat (limited to 'src/include/gnunet_reclaim_service.h')
-rw-r--r--src/include/gnunet_reclaim_service.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/gnunet_reclaim_service.h b/src/include/gnunet_reclaim_service.h
index c9c4fa5d1..ef9899dde 100644
--- a/src/include/gnunet_reclaim_service.h
+++ b/src/include/gnunet_reclaim_service.h
@@ -138,11 +138,13 @@ typedef void (*GNUNET_RECLAIM_AttributeTicketResult) (
138 * 138 *
139 * @param cls The callback closure 139 * @param cls The callback closure
140 * @param identity The identity authoritative over the attributes 140 * @param identity The identity authoritative over the attributes
141 * @param attr The attribute 141 * @param attestation The attestation
142 * @param attributes the parsed attributes
142 */ 143 */
143typedef void (*GNUNET_RECLAIM_AttestationResult) ( 144typedef void (*GNUNET_RECLAIM_AttestationResult) (
144 void *cls, const struct GNUNET_CRYPTO_EcdsaPublicKey *identity, 145 void *cls, const struct GNUNET_CRYPTO_EcdsaPublicKey *identity,
145 const struct GNUNET_RECLAIM_Attestation *attestation); 146 const struct GNUNET_RECLAIM_Attestation *attestation,
147 const struct GNUNET_RECLAIM_AttributeList *attributes);
146 148
147 149
148/** 150/**