aboutsummaryrefslogtreecommitdiff
path: root/src/escrow/escrow_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/escrow/escrow_api.c')
-rw-r--r--src/escrow/escrow_api.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/escrow/escrow_api.c b/src/escrow/escrow_api.c
index 4b3f5e68d..5d1701405 100644
--- a/src/escrow/escrow_api.c
+++ b/src/escrow/escrow_api.c
@@ -99,8 +99,8 @@ static struct GNUNET_ESCROW_KeyPluginFunctions *anastasis_api;
99 * 99 *
100 * @return pointer to the escrow plugin API 100 * @return pointer to the escrow plugin API
101 */ 101 */
102const struct GNUNET_ESCROW_KeyPluginFunctions * 102static const struct GNUNET_ESCROW_KeyPluginFunctions *
103init_plugin (struct GNUNET_ESCROW_Handle *h, 103init_plugin (const struct GNUNET_ESCROW_Handle *h,
104 enum GNUNET_ESCROW_Key_Escrow_Method method) 104 enum GNUNET_ESCROW_Key_Escrow_Method method)
105{ 105{
106 switch (method) 106 switch (method)
@@ -228,7 +228,7 @@ GNUNET_ESCROW_fini (struct GNUNET_ESCROW_Handle *h)
228} 228}
229 229
230 230
231void 231static void
232handle_start_escrow_result (void *cls) 232handle_start_escrow_result (void *cls)
233{ 233{
234 struct ESCROW_Plugin_AnchorContinuationWrapper *w = cls; 234 struct ESCROW_Plugin_AnchorContinuationWrapper *w = cls;
@@ -328,7 +328,7 @@ handle_restore_key_result (void *cls)
328 */ 328 */
329struct GNUNET_ESCROW_Operation * 329struct GNUNET_ESCROW_Operation *
330GNUNET_ESCROW_get (struct GNUNET_ESCROW_Handle *h, 330GNUNET_ESCROW_get (struct GNUNET_ESCROW_Handle *h,
331 struct GNUNET_ESCROW_Anchor *anchor, 331 const struct GNUNET_ESCROW_Anchor *anchor,
332 enum GNUNET_ESCROW_Key_Escrow_Method method, 332 enum GNUNET_ESCROW_Key_Escrow_Method method,
333 GNUNET_ESCROW_EgoContinuation cb, 333 GNUNET_ESCROW_EgoContinuation cb,
334 void *cb_cls) 334 void *cb_cls)
@@ -351,7 +351,7 @@ GNUNET_ESCROW_get (struct GNUNET_ESCROW_Handle *h,
351} 351}
352 352
353 353
354void 354static void
355handle_verify_escrow_result (void *cls) 355handle_verify_escrow_result (void *cls)
356{ 356{
357 struct ESCROW_Plugin_VerifyContinuationWrapper *w = cls; 357 struct ESCROW_Plugin_VerifyContinuationWrapper *w = cls;
@@ -388,7 +388,7 @@ handle_verify_escrow_result (void *cls)
388struct GNUNET_ESCROW_Operation * 388struct GNUNET_ESCROW_Operation *
389GNUNET_ESCROW_verify (struct GNUNET_ESCROW_Handle *h, 389GNUNET_ESCROW_verify (struct GNUNET_ESCROW_Handle *h,
390 struct GNUNET_IDENTITY_Ego *ego, 390 struct GNUNET_IDENTITY_Ego *ego,
391 struct GNUNET_ESCROW_Anchor *anchor, 391 const struct GNUNET_ESCROW_Anchor *anchor,
392 enum GNUNET_ESCROW_Key_Escrow_Method method, 392 enum GNUNET_ESCROW_Key_Escrow_Method method,
393 GNUNET_ESCROW_VerifyContinuation cb, 393 GNUNET_ESCROW_VerifyContinuation cb,
394 void *cb_cls) 394 void *cb_cls)