aboutsummaryrefslogtreecommitdiff
path: root/src/escrow/escrow_plugin_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/escrow/escrow_plugin_helper.h')
-rw-r--r--src/escrow/escrow_plugin_helper.h24
1 files changed, 20 insertions, 4 deletions
diff --git a/src/escrow/escrow_plugin_helper.h b/src/escrow/escrow_plugin_helper.h
index f2a54eb6b..b7764edd5 100644
--- a/src/escrow/escrow_plugin_helper.h
+++ b/src/escrow/escrow_plugin_helper.h
@@ -82,7 +82,7 @@ ESCROW_cleanup_ego_list (struct ESCROW_PluginHandle *ph);
82 82
83 83
84/** 84/**
85 * Update the status of an escrow in the configuration. 85 * Update the status of an escrow in the configuration after a VERIFY operation.
86 * 86 *
87 * @param h handle for the escrow component 87 * @param h handle for the escrow component
88 * @param ego the ego of which the escrow status is updated 88 * @param ego the ego of which the escrow status is updated
@@ -91,9 +91,25 @@ ESCROW_cleanup_ego_list (struct ESCROW_PluginHandle *ph);
91 * @return GNUNET_OK on success 91 * @return GNUNET_OK on success
92 */ 92 */
93int 93int
94ESCROW_update_escrow_status (struct GNUNET_ESCROW_Handle *h, 94ESCROW_update_escrow_status_verify (struct GNUNET_ESCROW_Handle *h,
95 struct GNUNET_IDENTITY_Ego *ego, 95 struct GNUNET_IDENTITY_Ego *ego,
96 const char *plugin_name); 96 const char *plugin_name);
97
98
99/**
100 * Update the status of an escrow in the configuration after a PUT operation.
101 *
102 * @param h handle for the escrow component
103 * @param ego the ego of which the escrow status is updated
104 * @param plugin_name the name of the used plugin
105 *
106 * @return GNUNET_OK on success
107 */
108int
109ESCROW_update_escrow_status_put (struct GNUNET_ESCROW_Handle *h,
110 struct GNUNET_IDENTITY_Ego *ego,
111 const char *plugin_name);
112
97 113
98/** 114/**
99 * Get the status of an escrow from the configuration. 115 * Get the status of an escrow from the configuration.