aboutsummaryrefslogtreecommitdiff
path: root/src/wire-plugins/plugin_wire_ebics.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wire-plugins/plugin_wire_ebics.c')
-rw-r--r--src/wire-plugins/plugin_wire_ebics.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/wire-plugins/plugin_wire_ebics.c b/src/wire-plugins/plugin_wire_ebics.c
index 5482762a3..1c74efd54 100644
--- a/src/wire-plugins/plugin_wire_ebics.c
+++ b/src/wire-plugins/plugin_wire_ebics.c
@@ -132,6 +132,14 @@ ebics_prepare_wire_transfer (void *cls,
132 TALER_WIRE_PrepareTransactionCallback psc, 132 TALER_WIRE_PrepareTransactionCallback psc,
133 void *psc_cls) 133 void *psc_cls)
134{ 134{
135 (void) cls;
136 (void) origin_account_section;
137 (void) destination_account_url;
138 (void) amount;
139 (void) exchange_base_url;
140 (void) wtid;
141 (void) psc;
142 (void) psc_cls;
135 GNUNET_break (0); // FIXME: not implemented 143 GNUNET_break (0); // FIXME: not implemented
136 return NULL; 144 return NULL;
137} 145}
@@ -148,6 +156,8 @@ static void
148ebics_prepare_wire_transfer_cancel (void *cls, 156ebics_prepare_wire_transfer_cancel (void *cls,
149 struct TALER_WIRE_PrepareHandle *pth) 157 struct TALER_WIRE_PrepareHandle *pth)
150{ 158{
159 (void) cls;
160 (void) pth;
151 GNUNET_break (0); // FIXME: not implemented 161 GNUNET_break (0); // FIXME: not implemented
152} 162}
153 163
@@ -169,6 +179,11 @@ ebics_execute_wire_transfer (void *cls,
169 TALER_WIRE_ConfirmationCallback cc, 179 TALER_WIRE_ConfirmationCallback cc,
170 void *cc_cls) 180 void *cc_cls)
171{ 181{
182 (void) cls;
183 (void) buf;
184 (void) buf_size;
185 (void) cc;
186 (void) cc_cls;
172 GNUNET_break (0); // FIXME: not implemented 187 GNUNET_break (0); // FIXME: not implemented
173 return NULL; 188 return NULL;
174} 189}
@@ -190,6 +205,8 @@ static void
190ebics_execute_wire_transfer_cancel (void *cls, 205ebics_execute_wire_transfer_cancel (void *cls,
191 struct TALER_WIRE_ExecuteHandle *eh) 206 struct TALER_WIRE_ExecuteHandle *eh)
192{ 207{
208 (void) cls;
209 (void) eh;
193 GNUNET_break (0); // FIXME: not implemented 210 GNUNET_break (0); // FIXME: not implemented
194} 211}
195 212
@@ -226,6 +243,14 @@ ebics_get_history (void *cls,
226 TALER_WIRE_HistoryResultCallback hres_cb, 243 TALER_WIRE_HistoryResultCallback hres_cb,
227 void *hres_cb_cls) 244 void *hres_cb_cls)
228{ 245{
246 (void) cls;
247 (void) account_section;
248 (void) direction;
249 (void) start_off;
250 (void) start_off_len;
251 (void) num_results;
252 (void) hres_cb;
253 (void) hres_cb_cls;
229 GNUNET_break (0); 254 GNUNET_break (0);
230 return NULL; 255 return NULL;
231} 256}
@@ -241,6 +266,8 @@ static void
241ebics_get_history_cancel (void *cls, 266ebics_get_history_cancel (void *cls,
242 struct TALER_WIRE_HistoryHandle *whh) 267 struct TALER_WIRE_HistoryHandle *whh)
243{ 268{
269 (void) cls;
270 (void) whh;
244 GNUNET_break (0); 271 GNUNET_break (0);
245} 272}
246 273
@@ -315,6 +342,11 @@ ebics_reject_transfer (void *cls,
315{ 342{
316 struct TALER_WIRE_RejectHandle *rh; 343 struct TALER_WIRE_RejectHandle *rh;
317 344
345 (void) account_section;
346 (void) start_off;
347 (void) start_off_len;
348 (void) rej_cb;
349 (void) rej_cb_cls;
318 GNUNET_break (0); /* not implemented, just a stub! */ 350 GNUNET_break (0); /* not implemented, just a stub! */
319 rh = GNUNET_new (struct TALER_WIRE_RejectHandle); 351 rh = GNUNET_new (struct TALER_WIRE_RejectHandle);
320 rh->rej_cb = rej_cb; 352 rh->rej_cb = rej_cb;
@@ -343,6 +375,7 @@ ebics_reject_transfer_cancel (void *cls,
343{ 375{
344 void *ret = rh->rej_cb_cls; 376 void *ret = rh->rej_cb_cls;
345 377
378 (void) cls;
346 GNUNET_SCHEDULER_cancel (rh->timeout_task); 379 GNUNET_SCHEDULER_cancel (rh->timeout_task);
347 GNUNET_free (rh); 380 GNUNET_free (rh);
348 return ret; 381 return ret;