aboutsummaryrefslogtreecommitdiff
path: root/src/escrow/plugin_escrow_gns.c
diff options
context:
space:
mode:
authorjospaeth <spaethj@in.tum.de>2020-08-03 12:40:13 +0200
committerjospaeth <spaethj@in.tum.de>2020-08-03 12:40:13 +0200
commit2822c5af3ef8f29ac2b5727ee3c13c6338852e58 (patch)
treed1bd6c5b6409fb82b4b01cc472860f484cc3232a /src/escrow/plugin_escrow_gns.c
parentc44480a40fac3be1c586430c74c69bc0eda9eaf7 (diff)
downloadgnunet-2822c5af3ef8f29ac2b5727ee3c13c6338852e58.tar.gz
gnunet-2822c5af3ef8f29ac2b5727ee3c13c6338852e58.zip
remove renew from the API
Diffstat (limited to 'src/escrow/plugin_escrow_gns.c')
-rw-r--r--src/escrow/plugin_escrow_gns.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/escrow/plugin_escrow_gns.c b/src/escrow/plugin_escrow_gns.c
index 278ceff5b..6e9ea5181 100644
--- a/src/escrow/plugin_escrow_gns.c
+++ b/src/escrow/plugin_escrow_gns.c
@@ -99,21 +99,6 @@ start_gns_key_escrow (struct GNUNET_ESCROW_Handle *h,
99 99
100 100
101/** 101/**
102 * Renew the GNS escrow of the key
103 *
104 * @param op the escrow operation
105 * @param escrowAnchor the the escrow anchor returned by the start method
106 */
107void
108renew_gns_key_escrow (struct GNUNET_ESCROW_Operation *op,
109 struct GNUNET_ESCROW_Anchor *escrowAnchor)
110{
111 // TODO: implement
112 op->cb_renew (NULL);
113}
114
115
116/**
117 * Verify the GNS escrow of the key 102 * Verify the GNS escrow of the key
118 * 103 *
119 * @param h the handle for the escrow component 104 * @param h the handle for the escrow component
@@ -249,7 +234,6 @@ libgnunet_plugin_escrow_gns_init (void *cls)
249 234
250 api = GNUNET_new (struct GNUNET_ESCROW_KeyPluginFunctions); 235 api = GNUNET_new (struct GNUNET_ESCROW_KeyPluginFunctions);
251 api->start_key_escrow = &start_gns_key_escrow; 236 api->start_key_escrow = &start_gns_key_escrow;
252 api->renew_key_escrow = &renew_gns_key_escrow;
253 api->verify_key_escrow = &verify_gns_key_escrow; 237 api->verify_key_escrow = &verify_gns_key_escrow;
254 api->restore_key = &restore_gns_key_escrow; 238 api->restore_key = &restore_gns_key_escrow;
255 api->anchor_string_to_data = &gns_anchor_string_to_data; 239 api->anchor_string_to_data = &gns_anchor_string_to_data;