aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_escrow_plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_escrow_plugin.h')
-rw-r--r--src/include/gnunet_escrow_plugin.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/include/gnunet_escrow_plugin.h b/src/include/gnunet_escrow_plugin.h
index b8b88ff3f..dbdf6dce6 100644
--- a/src/include/gnunet_escrow_plugin.h
+++ b/src/include/gnunet_escrow_plugin.h
@@ -114,34 +114,6 @@ typedef struct GNUNET_ESCROW_Status *(*GNUNET_ESCROW_GetEscrowStatusFunction) (
114 114
115 115
116/** 116/**
117 * Function called to deserialize an escrow anchor string into a
118 * GNUNET_ESCROW_Anchor struct
119 *
120 * @param h the handle for the escrow component
121 * @param anchorString the encoded escrow anchor string
122 *
123 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct,
124 * NULL if we failed to parse the string
125 */
126typedef struct GNUNET_ESCROW_Anchor *(*GNUNET_ESCROW_AnchorStringToDataFunction) (
127 struct GNUNET_ESCROW_Handle *h,
128 char *anchorString);
129
130
131/**
132 * Function called to serialize an escrow anchor struct into a string
133 *
134 * @param h the handle for the escrow component
135 * @param escrowAnchor the escrow anchor struct
136 *
137 * @return the encoded escrow anchor string
138 */
139typedef char *(*GNUNET_ESCROW_AnchorDataToStringFunction) (
140 struct GNUNET_ESCROW_Handle *h,
141 struct GNUNET_ESCROW_Anchor *escrowAnchor);
142
143
144/**
145 * Function called to cancel a plugin operation 117 * Function called to cancel a plugin operation
146 * 118 *
147 * @param plugin_op_wrap plugin operation wrapper containing the plugin operation 119 * @param plugin_op_wrap plugin operation wrapper containing the plugin operation
@@ -182,16 +154,6 @@ struct GNUNET_ESCROW_KeyPluginFunctions
182 GNUNET_ESCROW_GetEscrowStatusFunction get_status; 154 GNUNET_ESCROW_GetEscrowStatusFunction get_status;
183 155
184 /** 156 /**
185 * Deserialize anchor string to data
186 */
187 GNUNET_ESCROW_AnchorStringToDataFunction anchor_string_to_data;
188
189 /**
190 * Serialize anchor data to string
191 */
192 GNUNET_ESCROW_AnchorDataToStringFunction anchor_data_to_string;
193
194 /**
195 * Cancel plugin operation 157 * Cancel plugin operation
196 */ 158 */
197 GNUNET_ESCROW_CancelPluginOperationFunction cancel_plugin_operation; 159 GNUNET_ESCROW_CancelPluginOperationFunction cancel_plugin_operation;