aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-04-10 11:26:46 +0200
committerSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-04-10 11:26:46 +0200
commitb1af3dcf2ad69264883a398ab431fa99c7135f79 (patch)
treeaed788ced81305b7cc7ed361c33fa9bb386bd087 /src/include
parente331d5f6dfb406f9c56d4b3cb69b671b317d6992 (diff)
downloadgnunet-b1af3dcf2ad69264883a398ab431fa99c7135f79.tar.gz
gnunet-b1af3dcf2ad69264883a398ab431fa99c7135f79.zip
add attribute expiration
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_identity_provider_service.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/gnunet_identity_provider_service.h b/src/include/gnunet_identity_provider_service.h
index be935e898..bc666a216 100644
--- a/src/include/gnunet_identity_provider_service.h
+++ b/src/include/gnunet_identity_provider_service.h
@@ -115,6 +115,7 @@ typedef void
115 * @param h handle to the identity provider 115 * @param h handle to the identity provider
116 * @param pkey private key of the identity 116 * @param pkey private key of the identity
117 * @param attr the attribute 117 * @param attr the attribute
118 * @param exp_interval the relative expiration interval for the attribute
118 * @param cont continuation to call when done 119 * @param cont continuation to call when done
119 * @param cont_cls closure for @a cont 120 * @param cont_cls closure for @a cont
120 * @return handle to abort the request 121 * @return handle to abort the request
@@ -123,6 +124,7 @@ struct GNUNET_IDENTITY_PROVIDER_Operation *
123GNUNET_IDENTITY_PROVIDER_attribute_store (struct GNUNET_IDENTITY_PROVIDER_Handle *h, 124GNUNET_IDENTITY_PROVIDER_attribute_store (struct GNUNET_IDENTITY_PROVIDER_Handle *h,
124 const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey, 125 const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey,
125 const struct GNUNET_IDENTITY_ATTRIBUTE_Claim *attr, 126 const struct GNUNET_IDENTITY_ATTRIBUTE_Claim *attr,
127 const struct GNUNET_TIME_Relative *exp_interval,
126 GNUNET_IDENTITY_PROVIDER_ContinuationWithStatus cont, 128 GNUNET_IDENTITY_PROVIDER_ContinuationWithStatus cont,
127 void *cont_cls); 129 void *cont_cls);
128 130