aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_escrow_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_escrow_lib.h')
-rw-r--r--src/include/gnunet_escrow_lib.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/gnunet_escrow_lib.h b/src/include/gnunet_escrow_lib.h
index 56bd56032..3d3e39664 100644
--- a/src/include/gnunet_escrow_lib.h
+++ b/src/include/gnunet_escrow_lib.h
@@ -125,12 +125,12 @@ typedef void (*GNUNET_ESCROW_EgoCreateContinuation) (
125 * Continuation for PUT operations. 125 * Continuation for PUT operations.
126 * 126 *
127 * @param cls closure 127 * @param cls closure
128 * @param escrowAnchor the escrow anchor needed to get the data back 128 * @param anchor the escrow anchor needed to get the data back
129 * @param emsg error message, NULL on success 129 * @param emsg error message, NULL on success
130 */ 130 */
131typedef void (*GNUNET_ESCROW_AnchorContinuation) ( 131typedef void (*GNUNET_ESCROW_AnchorContinuation) (
132 void *cls, 132 void *cls,
133 struct GNUNET_ESCROW_Anchor *escrowAnchor, 133 struct GNUNET_ESCROW_Anchor *anchor,
134 const char *emsg); 134 const char *emsg);
135 135
136/** 136/**
@@ -331,7 +331,7 @@ GNUNET_ESCROW_get (
331 * 331 *
332 * @param h the handle for the escrow component 332 * @param h the handle for the escrow component
333 * @param ego the identity ego that was put into escrow 333 * @param ego the identity ego that was put into escrow
334 * @param escrowAnchor the escrow anchor returned by the GNUNET_ESCROW_put method 334 * @param anchor the escrow anchor returned by the GNUNET_ESCROW_put method
335 * @param method the escrow method to use 335 * @param method the escrow method to use
336 * @param cb function to call with the verification result on completion 336 * @param cb function to call with the verification result on completion
337 * @param cb_cls closure for @a cb 337 * @param cb_cls closure for @a cb
@@ -342,7 +342,7 @@ struct GNUNET_ESCROW_Operation *
342GNUNET_ESCROW_verify ( 342GNUNET_ESCROW_verify (
343 struct GNUNET_ESCROW_Handle *h, 343 struct GNUNET_ESCROW_Handle *h,
344 struct GNUNET_IDENTITY_Ego *ego, 344 struct GNUNET_IDENTITY_Ego *ego,
345 struct GNUNET_ESCROW_Anchor *escrowAnchor, 345 struct GNUNET_ESCROW_Anchor *anchor,
346 enum GNUNET_ESCROW_Key_Escrow_Method method, 346 enum GNUNET_ESCROW_Key_Escrow_Method method,
347 GNUNET_ESCROW_VerifyContinuation cb, 347 GNUNET_ESCROW_VerifyContinuation cb,
348 void *cb_cls); 348 void *cb_cls);
@@ -386,13 +386,13 @@ GNUNET_ESCROW_anchor_string_to_data (
386/** 386/**
387 * Serialize an escrow anchor (struct GNUNET_ESCROW_Anchor) into a string 387 * Serialize an escrow anchor (struct GNUNET_ESCROW_Anchor) into a string
388 * 388 *
389 * @param escrowAnchor the escrow anchor struct 389 * @param anchor the escrow anchor struct
390 * 390 *
391 * @return the encoded escrow anchor string 391 * @return the encoded escrow anchor string
392 */ 392 */
393char * 393char *
394GNUNET_ESCROW_anchor_data_to_string ( 394GNUNET_ESCROW_anchor_data_to_string (
395 const struct GNUNET_ESCROW_Anchor *escrowAnchor); 395 const struct GNUNET_ESCROW_Anchor *anchor);
396 396
397 397
398/** 398/**