(no commit message)
[oweals/gnunet.git] / src / transport / plugin_transport_http_client.c
1 /*
2      This file is part of GNUnet
3      (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file transport/plugin_transport_http_client.c
23  * @brief http transport service plugin
24  * @author Matthias Wachs
25  */
26
27 #include "plugin_transport_http.h"
28
29 #if VERBOSE_CURL
30 /**
31  * Function to log curl debug messages with GNUNET_log
32  * @param curl handle
33  * @param type curl_infotype
34  * @param data data
35  * @param size size
36  * @param cls  closure
37  * @return 0
38  */
39 static int
40 client_log (CURL * curl, curl_infotype type, char *data, size_t size, void *cls)
41 {
42   if (type == CURLINFO_TEXT)
43   {
44     char text[size + 2];
45
46     memcpy (text, data, size);
47     if (text[size - 1] == '\n')
48       text[size] = '\0';
49     else
50     {
51       text[size] = '\n';
52       text[size + 1] = '\0';
53     }
54 #if BUILD_HTTPS
55     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-https", "Client: %X - %s", cls, text);
56 #else
57     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-http", "Client: %X - %s", cls, text);
58 #endif
59   }
60   return 0;
61 }
62 #endif
63
64 /**
65  * Task performing curl operations
66  * @param cls plugin as closure
67  * @param tc gnunet scheduler task context
68  */
69 static void
70 client_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
71
72 /**
73  * Function setting up file descriptors and scheduling task to run
74  *
75  * @param  plugin plugin as closure
76  * @return GNUNET_SYSERR for hard failure, GNUNET_OK for ok
77  */
78 static int
79 client_schedule (struct Plugin *plugin)
80 {
81   fd_set rs;
82   fd_set ws;
83   fd_set es;
84   int max;
85   struct GNUNET_NETWORK_FDSet *grs;
86   struct GNUNET_NETWORK_FDSet *gws;
87   long to;
88   CURLMcode mret;
89   struct GNUNET_TIME_Relative timeout;
90
91   /* Cancel previous scheduled task */
92   if (plugin->client_perform_task!= GNUNET_SCHEDULER_NO_TASK)
93   {
94     GNUNET_SCHEDULER_cancel (plugin->client_perform_task);
95     plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
96   }
97
98   max = -1;
99   FD_ZERO (&rs);
100   FD_ZERO (&ws);
101   FD_ZERO (&es);
102   mret = curl_multi_fdset (plugin->client_mh, &rs, &ws, &es, &max);
103   if (mret != CURLM_OK)
104   {
105     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("%s failed at %s:%d: `%s'\n"),
106                 "curl_multi_fdset", __FILE__, __LINE__,
107                 curl_multi_strerror (mret));
108     return GNUNET_SYSERR;
109   }
110   mret = curl_multi_timeout (plugin->client_mh, &to);
111   if (to == -1)
112     timeout = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5);
113   else
114     timeout = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, to);
115   if (mret != CURLM_OK)
116   {
117     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("%s failed at %s:%d: `%s'\n"),
118                 "curl_multi_timeout", __FILE__, __LINE__,
119                 curl_multi_strerror (mret));
120     return GNUNET_SYSERR;
121   }
122
123   grs = GNUNET_NETWORK_fdset_create ();
124   gws = GNUNET_NETWORK_fdset_create ();
125   GNUNET_NETWORK_fdset_copy_native (grs, &rs, max + 1);
126   GNUNET_NETWORK_fdset_copy_native (gws, &ws, max + 1);
127
128   plugin->client_perform_task =
129       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
130                                    GNUNET_SCHEDULER_NO_TASK,
131                                    timeout,
132                                    grs,
133                                    gws,
134                                    &client_run,
135                                    plugin);
136   GNUNET_NETWORK_fdset_destroy (gws);
137   GNUNET_NETWORK_fdset_destroy (grs);
138   return GNUNET_OK;
139 }
140
141
142 int
143 client_send (struct Session *s, struct HTTP_Message *msg)
144 {
145   GNUNET_CONTAINER_DLL_insert (s->msg_head, s->msg_tail, msg);
146
147   if ((s != NULL) && (s->client_put_paused == GNUNET_YES))
148   {
149 #if VERBOSE_CLIENT
150     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, s->plugin->name, "Client: %X was suspended, unpausing\n", s->client_put);
151 #endif
152     s->client_put_paused = GNUNET_NO;
153     curl_easy_pause(s->client_put, CURLPAUSE_CONT);
154   }
155
156   client_schedule (s->plugin);
157
158   return GNUNET_OK;
159 }
160
161
162
163 /**
164  * Task performing curl operations
165  * @param cls plugin as closure
166  * @param tc gnunet scheduler task context
167  */
168 static void
169 client_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
170 {
171   struct Plugin *plugin = cls;
172   int running;
173   CURLMcode mret;
174
175   GNUNET_assert (cls != NULL);
176
177   plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
178   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
179     return;
180
181   do
182   {
183     running = 0;
184     mret = curl_multi_perform (plugin->client_mh, &running);
185
186     CURLMsg * msg;
187     int msgs_left;
188     while ((msg = curl_multi_info_read(plugin->client_mh, &msgs_left)))
189     {
190        CURL *easy_h  = msg->easy_handle;
191        struct Session *s =  NULL;
192        char * d = (char *) s;
193        GNUNET_assert (easy_h != NULL);
194
195        GNUNET_assert (CURLE_OK == curl_easy_getinfo(easy_h, CURLINFO_PRIVATE, &d));
196        s = (struct Session *) d;
197        GNUNET_assert (s != NULL);
198
199        if (msg->msg == CURLMSG_DONE)
200        {
201 #if DEBUG_HTTP
202          GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
203                    "Client: %X connection to '%s'  %s ended\n", msg->easy_handle, GNUNET_i2s(&s->target), GNUNET_a2s (s->addr, s->addrlen));
204 #endif
205          client_disconnect(s);
206          //GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,"Notifying about ended session to peer `%s' `%s'\n", GNUNET_i2s (&s->target), http_plugin_address_to_string (plugin, s->addr, s->addrlen));
207          notify_session_end (plugin, &s->target, s);
208        }
209     }
210   }
211   while (mret == CURLM_CALL_MULTI_PERFORM);
212   client_schedule (plugin);
213 }
214
215 int
216 client_disconnect (struct Session *s)
217 {
218   int res = GNUNET_OK;
219   CURLMcode mret;
220   struct Plugin *plugin = s->plugin;
221   struct HTTP_Message * msg;
222   struct HTTP_Message * t;
223
224
225
226   if (s->client_put != NULL)
227   {
228 #if DEBUG_HTTP
229   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
230                    "Client: %X Deleting outbound PUT session to peer `%s'\n",
231                    s->client_put,
232                    GNUNET_i2s (&s->target));
233 #endif
234
235     mret = curl_multi_remove_handle (plugin->client_mh, s->client_put);
236     if (mret != CURLM_OK)
237     {
238       curl_easy_cleanup (s->client_put);
239       res = GNUNET_SYSERR;
240       GNUNET_break (0);
241     }
242     curl_easy_cleanup (s->client_put);
243     s->client_put = NULL;
244   }
245
246
247   if (s->recv_wakeup_task != GNUNET_SCHEDULER_NO_TASK)
248   {
249    GNUNET_SCHEDULER_cancel (s->recv_wakeup_task);
250    s->recv_wakeup_task = GNUNET_SCHEDULER_NO_TASK;
251   }
252
253   if (s->client_get != NULL)
254   {
255 #if DEBUG_HTTP
256   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
257                    "Client: %X Deleting outbound GET session to peer `%s'\n",
258                    s->client_get,
259                    GNUNET_i2s (&s->target));
260 #endif
261
262     mret = curl_multi_remove_handle (plugin->client_mh, s->client_get);
263     if (mret != CURLM_OK)
264     {
265       curl_easy_cleanup (s->client_get);
266       res = GNUNET_SYSERR;
267       GNUNET_break (0);
268     }
269     curl_easy_cleanup (s->client_get);
270     s->client_get = NULL;
271   }
272
273   msg = s->msg_head;
274   while (msg != NULL)
275   {
276     t = msg->next;
277     if (NULL != msg->transmit_cont)
278       msg->transmit_cont (msg->transmit_cont_cls, &s->target, GNUNET_SYSERR);
279     GNUNET_CONTAINER_DLL_remove(s->msg_head, s->msg_tail, msg);
280     GNUNET_free (msg);
281     msg = t;
282   }
283
284   plugin->cur_connections -= 2;
285   /* Re-schedule since handles have changed */
286   if (plugin->client_perform_task != GNUNET_SCHEDULER_NO_TASK)
287   {
288     GNUNET_SCHEDULER_cancel (plugin->client_perform_task);
289     plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
290   }
291
292   plugin->client_perform_task = GNUNET_SCHEDULER_add_now(client_run, plugin);
293
294   return res;
295 }
296
297 static void
298 client_receive_mst_cb (void *cls, void *client,
299                      const struct GNUNET_MessageHeader *message)
300 {
301   struct Session *s = cls;
302   //struct Plugin *plugin = s->plugin;
303   struct GNUNET_TIME_Relative delay;
304
305   delay = http_plugin_receive (s, &s->target, message, s, s->addr, s->addrlen);
306   s->next_receive = GNUNET_TIME_absolute_add(GNUNET_TIME_absolute_get(), delay);
307
308   if (GNUNET_TIME_absolute_get().abs_value < s->next_receive.abs_value)
309   {
310 #if VERBOSE_CLIENT
311     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Client: peer `%s' address `%s' next read delayed for %llu ms\n",
312                 GNUNET_i2s (&s->target), GNUNET_a2s (s->addr, s->addrlen), delay);
313 #endif
314   }
315 }
316 static void
317 client_wake_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
318 {
319   struct Session *s = cls;
320
321   s->recv_wakeup_task = GNUNET_SCHEDULER_NO_TASK;
322
323   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
324     return;
325
326   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, s->plugin->name,
327       "Client: %X Waking up receive handle\n",
328               s->client_get);
329
330   if (s->client_get != NULL)
331     curl_easy_pause(s->client_get, CURLPAUSE_CONT);
332
333 }
334
335 /**
336 * Callback method used with libcurl
337 * Method is called when libcurl needs to write data during sending
338 * @param stream pointer where to write data
339 * @param size size of an individual element
340 * @param nmemb count of elements that can be written to the buffer
341 * @param ptr destination pointer, passed to the libcurl handle
342 * @return bytes read from stream
343 */
344 static size_t
345 client_receive (void *stream, size_t size, size_t nmemb, void *cls)
346 {
347   struct Session *s = cls;
348   struct GNUNET_TIME_Absolute now;
349   size_t len = size * nmemb;
350
351
352 #if VERBOSE_CLIENT
353   struct Plugin *plugin = s->plugin;
354   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Client: Received %Zu bytes from peer `%s'\n",
355                    len,
356                    GNUNET_i2s (&s->target));
357 #endif
358
359   now = GNUNET_TIME_absolute_get();
360   if (now.abs_value < s->next_receive.abs_value)
361   {
362     struct GNUNET_TIME_Absolute now = GNUNET_TIME_absolute_get();
363     struct GNUNET_TIME_Relative delta = GNUNET_TIME_absolute_get_difference(now, s->next_receive);
364 #if DEBUG_CLIENT
365     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
366         "Client: %X No inbound bandwidth available! Next read was delayed for %llu ms\n",
367                 s->client_get, delta.rel_value);
368 #endif
369     if (s->recv_wakeup_task != GNUNET_SCHEDULER_NO_TASK)
370     {
371       GNUNET_SCHEDULER_cancel (s->recv_wakeup_task);
372       s->recv_wakeup_task = GNUNET_SCHEDULER_NO_TASK;
373     }
374     s->recv_wakeup_task = GNUNET_SCHEDULER_add_delayed (delta, &client_wake_up, s);
375     return CURLPAUSE_ALL;
376   }
377
378
379   if (s->msg_tk == NULL)
380       s->msg_tk = GNUNET_SERVER_mst_create (&client_receive_mst_cb, s);
381
382   GNUNET_SERVER_mst_receive (s->msg_tk, s, stream, len, GNUNET_NO,
383                              GNUNET_NO);
384
385   return len;
386   client_wake_up(NULL,NULL);
387 }
388
389 /**
390  * Callback method used with libcurl
391  * Method is called when libcurl needs to read data during sending
392  * @param stream pointer where to write data
393  * @param size size of an individual element
394  * @param nmemb count of elements that can be written to the buffer
395  * @param ptr source pointer, passed to the libcurl handle
396  * @return bytes written to stream, returning 0 will terminate connection!
397  */
398 static size_t
399 client_send_cb (void *stream, size_t size, size_t nmemb, void *cls)
400 {
401   struct Session *s = cls;
402 #if VERBOSE_CLIENT
403   struct Plugin *plugin = s->plugin;
404 #endif
405   size_t bytes_sent = 0;
406   size_t len;
407
408   struct HTTP_Message *msg = s->msg_head;
409
410   if (msg == NULL)
411   {
412 #if VERBOSE_CLIENT
413     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Client: %X Nothing to send! Suspending PUT handle!\n", s->client_put);
414 #endif
415     s->client_put_paused = GNUNET_YES;
416     return CURL_READFUNC_PAUSE;
417   }
418
419   GNUNET_assert (msg != NULL);
420   /* data to send */
421   if (msg->pos < msg->size)
422   {
423     /* data fit in buffer */
424     if ((msg->size - msg->pos) <= (size * nmemb))
425     {
426       len = (msg->size - msg->pos);
427       memcpy (stream, &msg->buf[msg->pos], len);
428       msg->pos += len;
429       bytes_sent = len;
430     }
431     else
432     {
433       len = size * nmemb;
434       memcpy (stream, &msg->buf[msg->pos], len);
435       msg->pos += len;
436       bytes_sent = len;
437     }
438   }
439   /* no data to send */
440   else
441   {
442     GNUNET_assert (0);
443     bytes_sent = 0;
444   }
445
446   if (msg->pos == msg->size)
447   {
448 #if VERBOSE_CLIENT
449     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
450                 "Client: %X Message with %u bytes sent, removing message from queue\n",
451                 s->client_put, msg->size, msg->pos);
452 #endif
453     /* Calling transmit continuation  */
454     if (NULL != msg->transmit_cont)
455       msg->transmit_cont (msg->transmit_cont_cls, &s->target, GNUNET_OK);
456     GNUNET_CONTAINER_DLL_remove(s->msg_head, s->msg_tail, msg);
457     GNUNET_free (msg);
458   }
459   return bytes_sent;
460 }
461
462 int
463 client_connect (struct Session *s)
464 {
465   struct Plugin *plugin = s->plugin;
466   int res = GNUNET_OK;
467   char *url;
468   CURLMcode mret;
469
470 #if VERBOSE_CLIENT
471   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
472                    "Initiating outbound session peer `%s'\n",
473                    GNUNET_i2s (&s->target));
474 #endif
475
476   s->inbound = GNUNET_NO;
477
478   plugin->last_tag++;
479   /* create url */
480   GNUNET_asprintf (&url, "%s%s;%u", http_plugin_address_to_string (plugin, s->addr, s->addrlen), GNUNET_h2s_full (&plugin->env->my_identity->hashPubKey),plugin->last_tag);
481 #if 0
482   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
483                    "URL `%s'\n",
484                    url);
485 #endif
486   /* create get connection */
487   s->client_get = curl_easy_init ();
488 #if VERBOSE_CURL
489   curl_easy_setopt (s->client_get, CURLOPT_VERBOSE, 1L);
490   curl_easy_setopt (s->client_get, CURLOPT_DEBUGFUNCTION, &client_log);
491   curl_easy_setopt (s->client_get, CURLOPT_DEBUGDATA, s->client_get);
492 #endif
493 #if BUILD_HTTPS
494   curl_easy_setopt (s->client_get, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
495   curl_easy_setopt (s->client_get, CURLOPT_SSL_VERIFYPEER, 0);
496   curl_easy_setopt (s->client_get, CURLOPT_SSL_VERIFYHOST, 0);
497 #endif
498   curl_easy_setopt (s->client_get, CURLOPT_URL, url);
499   //curl_easy_setopt (s->client_get, CURLOPT_HEADERFUNCTION, &curl_get_header_cb);
500   //curl_easy_setopt (s->client_get, CURLOPT_WRITEHEADER, ps);
501   curl_easy_setopt (s->client_get, CURLOPT_READFUNCTION, client_send_cb);
502   curl_easy_setopt (s->client_get, CURLOPT_READDATA, s);
503   curl_easy_setopt (s->client_get, CURLOPT_WRITEFUNCTION, client_receive);
504   curl_easy_setopt (s->client_get, CURLOPT_WRITEDATA, s);
505   curl_easy_setopt (s->client_get, CURLOPT_TIMEOUT_MS,
506                     (long) GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
507   curl_easy_setopt (s->client_get, CURLOPT_PRIVATE, s);
508   curl_easy_setopt (s->client_get, CURLOPT_CONNECTTIMEOUT_MS,
509                     (long) HTTP_NOT_VALIDATED_TIMEOUT.rel_value);
510   curl_easy_setopt (s->client_get, CURLOPT_BUFFERSIZE,
511                     2 * GNUNET_SERVER_MAX_MESSAGE_SIZE);
512 #if CURL_TCP_NODELAY
513   curl_easy_setopt (ps->recv_endpoint, CURLOPT_TCP_NODELAY, 1);
514 #endif
515
516   /* create put connection */
517   s->client_put = curl_easy_init ();
518 #if VERBOSE_CURL
519   curl_easy_setopt (s->client_put, CURLOPT_VERBOSE, 1L);
520   curl_easy_setopt (s->client_put, CURLOPT_DEBUGFUNCTION, &client_log);
521   curl_easy_setopt (s->client_put, CURLOPT_DEBUGDATA, s->client_put);
522 #endif
523 #if BUILD_HTTPS
524   curl_easy_setopt (s->client_put, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
525   curl_easy_setopt (s->client_put, CURLOPT_SSL_VERIFYPEER, 0);
526   curl_easy_setopt (s->client_put, CURLOPT_SSL_VERIFYHOST, 0);
527 #endif
528   curl_easy_setopt (s->client_put, CURLOPT_URL, url);
529   curl_easy_setopt (s->client_put, CURLOPT_PUT, 1L);
530   //curl_easy_setopt (s->client_put, CURLOPT_HEADERFUNCTION, &curl_put_header_cb);
531   //curl_easy_setopt (s->client_put, CURLOPT_WRITEHEADER, ps);
532   curl_easy_setopt (s->client_put, CURLOPT_READFUNCTION, client_send_cb);
533   curl_easy_setopt (s->client_put, CURLOPT_READDATA, s);
534   curl_easy_setopt (s->client_put, CURLOPT_WRITEFUNCTION, client_receive);
535   curl_easy_setopt (s->client_put, CURLOPT_WRITEDATA, s);
536   curl_easy_setopt (s->client_put, CURLOPT_TIMEOUT_MS,
537                     (long) GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
538   curl_easy_setopt (s->client_put, CURLOPT_PRIVATE, s);
539   curl_easy_setopt (s->client_put, CURLOPT_CONNECTTIMEOUT_MS,
540                     (long) HTTP_NOT_VALIDATED_TIMEOUT.rel_value);
541   curl_easy_setopt (s->client_put, CURLOPT_BUFFERSIZE,
542                     2 * GNUNET_SERVER_MAX_MESSAGE_SIZE);
543 #if CURL_TCP_NODELAY
544   curl_easy_setopt (s->client_put, CURLOPT_TCP_NODELAY, 1);
545 #endif
546
547   GNUNET_free (url);
548
549   mret = curl_multi_add_handle (plugin->client_mh, s->client_get);
550   if (mret != CURLM_OK)
551   {
552     curl_easy_cleanup (s->client_get);
553     res = GNUNET_SYSERR;
554     GNUNET_break (0);
555   }
556
557   mret = curl_multi_add_handle (plugin->client_mh, s->client_put);
558   if (mret != CURLM_OK)
559   {
560     curl_multi_remove_handle (plugin->client_mh, s->client_get);
561     curl_easy_cleanup (s->client_get);
562     curl_easy_cleanup (s->client_put);
563     res = GNUNET_SYSERR;
564     GNUNET_break (0);
565   }
566
567   /* Perform connect */
568   plugin->cur_connections += 2;
569
570   /* Re-schedule since handles have changed */
571   if (plugin->client_perform_task!= GNUNET_SCHEDULER_NO_TASK)
572   {
573     GNUNET_SCHEDULER_cancel (plugin->client_perform_task);
574     plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
575   }
576   plugin->client_perform_task = GNUNET_SCHEDULER_add_now (client_run, plugin);
577
578   return res;
579 }
580
581 int
582 client_start (struct Plugin *plugin)
583 {
584   int res = GNUNET_OK;
585
586   curl_global_init (CURL_GLOBAL_ALL);
587   plugin->client_mh = curl_multi_init ();
588
589   if (NULL == plugin->client_mh)
590   {
591     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
592                      _
593                      ("Could not initialize curl multi handle, failed to start %s plugin!\n"),
594                      plugin->name);
595     res = GNUNET_SYSERR;
596   }
597   return res;
598 }
599
600 void
601 client_stop (struct Plugin *plugin)
602 {
603   if (plugin->client_perform_task != GNUNET_SCHEDULER_NO_TASK)
604   {
605     GNUNET_SCHEDULER_cancel (plugin->client_perform_task);
606     plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
607   }
608
609   curl_multi_cleanup (plugin->client_mh);
610   curl_global_cleanup ();
611 }
612
613
614
615 /* end of plugin_transport_http_client.c */