working version
[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   static unsigned int handles_last_run;
173   int running;
174   CURLMcode mret;
175
176   GNUNET_assert (cls != NULL);
177
178   plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
179   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
180     return;
181
182   do
183   {
184     running = 0;
185     mret = curl_multi_perform (plugin->client_mh, &running);
186
187     CURLMsg * msg;
188     int msgs_left;
189     while ((msg = curl_multi_info_read(plugin->client_mh, &msgs_left)))
190     {
191        CURL *easy_h  = msg->easy_handle;
192        struct Session *s =  NULL;
193        char * d = (char *) s;
194        GNUNET_assert (easy_h != NULL);
195
196        GNUNET_assert (CURLE_OK == curl_easy_getinfo(easy_h, CURLINFO_PRIVATE, &d));
197        s = (struct Session *) d;
198        GNUNET_assert (s != NULL);
199
200        if (msg->msg == CURLMSG_DONE)
201        {
202 #if DEBUG_HTTP
203          GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
204                    "Client: %X connection to '%s'  %s ended\n", msg->easy_handle, GNUNET_i2s(&s->target), GNUNET_a2s (s->addr, s->addrlen));
205 #endif
206          client_disconnect(s);
207          //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));
208          if (s->msg_tk != NULL)
209            GNUNET_SERVER_mst_destroy (s->msg_tk);
210          notify_session_end (plugin, &s->target, s);
211        }
212     }
213
214     handles_last_run = running;
215   }
216   while (mret == CURLM_CALL_MULTI_PERFORM);
217   client_schedule (plugin);
218 }
219
220 int
221 client_disconnect (struct Session *s)
222 {
223   int res = GNUNET_OK;
224   CURLMcode mret;
225   struct Plugin *plugin = s->plugin;
226   struct HTTP_Message * msg;
227   struct HTTP_Message * t;
228
229
230
231   if (s->client_put != NULL)
232   {
233 #if DEBUG_HTTP
234   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
235                    "Client: %X Deleting outbound PUT session to peer `%s'\n",
236                    s->client_put,
237                    GNUNET_i2s (&s->target));
238 #endif
239
240     mret = curl_multi_remove_handle (plugin->client_mh, s->client_put);
241     if (mret != CURLM_OK)
242     {
243       curl_easy_cleanup (s->client_put);
244       res = GNUNET_SYSERR;
245       GNUNET_break (0);
246     }
247     curl_easy_cleanup (s->client_put);
248     s->client_put = NULL;
249   }
250
251
252   if (s->recv_wakeup_task != GNUNET_SCHEDULER_NO_TASK)
253   {
254    GNUNET_SCHEDULER_cancel (s->recv_wakeup_task);
255    s->recv_wakeup_task = GNUNET_SCHEDULER_NO_TASK;
256   }
257
258   if (s->client_get != NULL)
259   {
260 #if DEBUG_HTTP
261   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
262                    "Client: %X Deleting outbound GET session to peer `%s'\n",
263                    s->client_get,
264                    GNUNET_i2s (&s->target));
265 #endif
266
267     mret = curl_multi_remove_handle (plugin->client_mh, s->client_get);
268     if (mret != CURLM_OK)
269     {
270       curl_easy_cleanup (s->client_get);
271       res = GNUNET_SYSERR;
272       GNUNET_break (0);
273     }
274     curl_easy_cleanup (s->client_get);
275     s->client_get = NULL;
276   }
277
278   msg = s->msg_head;
279   while (msg != NULL)
280   {
281     t = msg->next;
282     if (NULL != msg->transmit_cont)
283       msg->transmit_cont (msg->transmit_cont_cls, &s->target, GNUNET_SYSERR);
284     GNUNET_CONTAINER_DLL_remove(s->msg_head, s->msg_tail, msg);
285     GNUNET_free (msg);
286     msg = t;
287   }
288
289   plugin->cur_connections -= 2;
290   /* Re-schedule since handles have changed */
291   if (plugin->client_perform_task != GNUNET_SCHEDULER_NO_TASK)
292   {
293     GNUNET_SCHEDULER_cancel (plugin->client_perform_task);
294     plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
295   }
296
297   plugin->client_perform_task = GNUNET_SCHEDULER_add_now(client_run, plugin);
298
299   return res;
300 }
301
302 static void
303 client_receive_mst_cb (void *cls, void *client,
304                      const struct GNUNET_MessageHeader *message)
305 {
306   struct Session *s = cls;
307   struct Plugin *plugin = s->plugin;
308   struct GNUNET_TIME_Relative delay;
309
310   delay = http_plugin_receive (s, &s->target, message, s, s->addr, s->addrlen);
311   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "CLIENT: CLIENT DELAY %llu ms\n",
312               delay.rel_value);
313
314
315   s->next_receive = GNUNET_TIME_absolute_add(GNUNET_TIME_absolute_get(), delay);
316
317   if (GNUNET_TIME_absolute_get().abs_value < s->next_receive.abs_value)
318   {
319 #if VERBOSE_CLIENT
320     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Client: peer `%s' address `%s' next read delayed for %llu ms\n",
321                 GNUNET_i2s (&s->target), GNUNET_a2s (s->addr, s->addrlen), delay);
322 #endif
323   }
324 }
325 static void
326 client_wake_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
327 {
328   struct Session *s = cls;
329
330   s->recv_wakeup_task = GNUNET_SCHEDULER_NO_TASK;
331   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
332     return;
333
334   if (s->client_get != NULL)
335     curl_easy_pause(s->client_get, CURLPAUSE_CONT);
336 }
337
338 /**
339 * Callback method used with libcurl
340 * Method is called when libcurl needs to write data during sending
341 * @param stream pointer where to write data
342 * @param size size of an individual element
343 * @param nmemb count of elements that can be written to the buffer
344 * @param ptr destination pointer, passed to the libcurl handle
345 * @return bytes read from stream
346 */
347 static size_t
348 client_receive (void *stream, size_t size, size_t nmemb, void *cls)
349 {
350   struct Session *s = cls;
351   struct GNUNET_TIME_Absolute now;
352   size_t len = size * nmemb;
353
354
355 #if VERBOSE_CLIENT
356   struct Plugin *plugin = s->plugin;
357   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Client: Received %Zu bytes from peer `%s'\n",
358                    len,
359                    GNUNET_i2s (&s->target));
360 #endif
361
362   now = GNUNET_TIME_absolute_get();
363   if (now.abs_value < s->next_receive.abs_value)
364   {
365 #if DEBUG_CLIENT
366     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
367                 "No inbound bandwidth available! Next read was delayed for  %llu ms\n",
368                 s, GNUNET_TIME_absolute_get_difference(s->next_receive, GNUNET_TIME_absolute_get()).rel_value);
369 #endif
370 #if 0
371     if (s->recv_wakeup_task != GNUNET_SCHEDULER_NO_TASK)
372     {
373       GNUNET_SCHEDULER_cancel (s->recv_wakeup_task);
374       s->recv_wakeup_task = GNUNET_SCHEDULER_NO_TASK;
375     }
376     s->recv_wakeup_task = GNUNET_SCHEDULER_add_delayed( GNUNET_TIME_absolute_get_difference(s->next_receive, now), &client_wake_up, s);
377     return CURLPAUSE_ALL;
378 #endif
379   }
380
381
382   if (s->msg_tk == NULL)
383       s->msg_tk = GNUNET_SERVER_mst_create (&client_receive_mst_cb, s);
384
385   GNUNET_SERVER_mst_receive (s->msg_tk, s, stream, len, GNUNET_NO,
386                              GNUNET_NO);
387
388   return len;
389
390   client_wake_up (NULL, NULL);
391 }
392
393 /**
394  * Callback method used with libcurl
395  * Method is called when libcurl needs to read data during sending
396  * @param stream pointer where to write data
397  * @param size size of an individual element
398  * @param nmemb count of elements that can be written to the buffer
399  * @param ptr source pointer, passed to the libcurl handle
400  * @return bytes written to stream, returning 0 will terminate connection!
401  */
402 static size_t
403 client_send_cb (void *stream, size_t size, size_t nmemb, void *cls)
404 {
405   struct Session *s = cls;
406 #if VERBOSE_CLIENT
407   struct Plugin *plugin = s->plugin;
408 #endif
409   size_t bytes_sent = 0;
410   size_t len;
411
412   struct HTTP_Message *msg = s->msg_head;
413
414   if (msg == NULL)
415   {
416 #if VERBOSE_CLIENT
417     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Client: %X Nothing to send! Suspending PUT handle!\n", s->client_put);
418 #endif
419     s->client_put_paused = GNUNET_YES;
420     return CURL_READFUNC_PAUSE;
421   }
422
423   GNUNET_assert (msg != NULL);
424   /* data to send */
425   if (msg->pos < msg->size)
426   {
427     /* data fit in buffer */
428     if ((msg->size - msg->pos) <= (size * nmemb))
429     {
430       len = (msg->size - msg->pos);
431       memcpy (stream, &msg->buf[msg->pos], len);
432       msg->pos += len;
433       bytes_sent = len;
434     }
435     else
436     {
437       len = size * nmemb;
438       memcpy (stream, &msg->buf[msg->pos], len);
439       msg->pos += len;
440       bytes_sent = len;
441     }
442   }
443   /* no data to send */
444   else
445   {
446     GNUNET_assert (0);
447     bytes_sent = 0;
448   }
449
450   if (msg->pos == msg->size)
451   {
452 #if VERBOSE_CLIENT
453     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
454                 "Client: %X Message with %u bytes sent, removing message from queue\n",
455                 s->client_put, msg->size, msg->pos);
456 #endif
457     /* Calling transmit continuation  */
458     if (NULL != msg->transmit_cont)
459       msg->transmit_cont (msg->transmit_cont_cls, &s->target, GNUNET_OK);
460     GNUNET_CONTAINER_DLL_remove(s->msg_head, s->msg_tail, msg);
461     GNUNET_free (msg);
462   }
463   return bytes_sent;
464 }
465
466 int
467 client_connect (struct Session *s)
468 {
469   struct Plugin *plugin = s->plugin;
470   int res = GNUNET_OK;
471   char *url;
472   CURLMcode mret;
473
474 #if VERBOSE_CLIENT
475   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
476                    "Initiating outbound session peer `%s'\n",
477                    GNUNET_i2s (&s->target));
478 #endif
479
480   s->inbound = GNUNET_NO;
481
482   plugin->last_tag++;
483   /* create url */
484   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);
485 #if 0
486   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
487                    "URL `%s'\n",
488                    url);
489 #endif
490   /* create get connection */
491   s->client_get = curl_easy_init ();
492 #if VERBOSE_CURL
493   curl_easy_setopt (s->client_get, CURLOPT_VERBOSE, 1L);
494   curl_easy_setopt (s->client_get, CURLOPT_DEBUGFUNCTION, &client_log);
495   curl_easy_setopt (s->client_get, CURLOPT_DEBUGDATA, s->client_get);
496 #endif
497 #if BUILD_HTTPS
498   curl_easy_setopt (s->client_get, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
499   curl_easy_setopt (s->client_get, CURLOPT_SSL_VERIFYPEER, 0);
500   curl_easy_setopt (s->client_get, CURLOPT_SSL_VERIFYHOST, 0);
501 #endif
502   curl_easy_setopt (s->client_get, CURLOPT_URL, url);
503   //curl_easy_setopt (s->client_get, CURLOPT_HEADERFUNCTION, &curl_get_header_cb);
504   //curl_easy_setopt (s->client_get, CURLOPT_WRITEHEADER, ps);
505   curl_easy_setopt (s->client_get, CURLOPT_READFUNCTION, client_send_cb);
506   curl_easy_setopt (s->client_get, CURLOPT_READDATA, s);
507   curl_easy_setopt (s->client_get, CURLOPT_WRITEFUNCTION, client_receive);
508   curl_easy_setopt (s->client_get, CURLOPT_WRITEDATA, s);
509   curl_easy_setopt (s->client_get, CURLOPT_TIMEOUT_MS,
510                     (long) GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
511   curl_easy_setopt (s->client_get, CURLOPT_PRIVATE, s);
512   curl_easy_setopt (s->client_get, CURLOPT_CONNECTTIMEOUT_MS,
513                     (long) HTTP_NOT_VALIDATED_TIMEOUT.rel_value);
514   curl_easy_setopt (s->client_get, CURLOPT_BUFFERSIZE,
515                     2 * GNUNET_SERVER_MAX_MESSAGE_SIZE);
516 #if CURL_TCP_NODELAY
517   curl_easy_setopt (ps->recv_endpoint, CURLOPT_TCP_NODELAY, 1);
518 #endif
519
520   /* create put connection */
521   s->client_put = curl_easy_init ();
522 #if VERBOSE_CURL
523   curl_easy_setopt (s->client_put, CURLOPT_VERBOSE, 1L);
524   curl_easy_setopt (s->client_put, CURLOPT_DEBUGFUNCTION, &client_log);
525   curl_easy_setopt (s->client_put, CURLOPT_DEBUGDATA, s->client_put);
526 #endif
527 #if BUILD_HTTPS
528   curl_easy_setopt (s->client_put, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
529   curl_easy_setopt (s->client_put, CURLOPT_SSL_VERIFYPEER, 0);
530   curl_easy_setopt (s->client_put, CURLOPT_SSL_VERIFYHOST, 0);
531 #endif
532   curl_easy_setopt (s->client_put, CURLOPT_URL, url);
533   curl_easy_setopt (s->client_put, CURLOPT_PUT, 1L);
534   //curl_easy_setopt (s->client_put, CURLOPT_HEADERFUNCTION, &curl_put_header_cb);
535   //curl_easy_setopt (s->client_put, CURLOPT_WRITEHEADER, ps);
536   curl_easy_setopt (s->client_put, CURLOPT_READFUNCTION, client_send_cb);
537   curl_easy_setopt (s->client_put, CURLOPT_READDATA, s);
538   curl_easy_setopt (s->client_put, CURLOPT_WRITEFUNCTION, client_receive);
539   curl_easy_setopt (s->client_put, CURLOPT_WRITEDATA, s);
540   curl_easy_setopt (s->client_put, CURLOPT_TIMEOUT_MS,
541                     (long) GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
542   curl_easy_setopt (s->client_put, CURLOPT_PRIVATE, s);
543   curl_easy_setopt (s->client_put, CURLOPT_CONNECTTIMEOUT_MS,
544                     (long) HTTP_NOT_VALIDATED_TIMEOUT.rel_value);
545   curl_easy_setopt (s->client_put, CURLOPT_BUFFERSIZE,
546                     2 * GNUNET_SERVER_MAX_MESSAGE_SIZE);
547 #if CURL_TCP_NODELAY
548   curl_easy_setopt (s->client_put, CURLOPT_TCP_NODELAY, 1);
549 #endif
550
551   GNUNET_free (url);
552
553   mret = curl_multi_add_handle (plugin->client_mh, s->client_get);
554   if (mret != CURLM_OK)
555   {
556     curl_easy_cleanup (s->client_get);
557     res = GNUNET_SYSERR;
558     GNUNET_break (0);
559   }
560
561   mret = curl_multi_add_handle (plugin->client_mh, s->client_put);
562   if (mret != CURLM_OK)
563   {
564     curl_multi_remove_handle (plugin->client_mh, s->client_get);
565     curl_easy_cleanup (s->client_get);
566     curl_easy_cleanup (s->client_put);
567     res = GNUNET_SYSERR;
568     GNUNET_break (0);
569   }
570
571   /* Perform connect */
572   plugin->cur_connections += 2;
573
574   /* Re-schedule since handles have changed */
575   if (plugin->client_perform_task!= GNUNET_SCHEDULER_NO_TASK)
576   {
577     GNUNET_SCHEDULER_cancel (plugin->client_perform_task);
578     plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
579   }
580   plugin->client_perform_task = GNUNET_SCHEDULER_add_now (client_run, plugin);
581
582   return res;
583 }
584
585 int
586 client_start (struct Plugin *plugin)
587 {
588   int res = GNUNET_OK;
589
590   curl_global_init (CURL_GLOBAL_ALL);
591   plugin->client_mh = curl_multi_init ();
592
593   if (NULL == plugin->client_mh)
594   {
595     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
596                      _
597                      ("Could not initialize curl multi handle, failed to start %s plugin!\n"),
598                      plugin->name);
599     res = GNUNET_SYSERR;
600   }
601   return res;
602 }
603
604 void
605 client_stop (struct Plugin *plugin)
606 {
607   if (plugin->client_perform_task != GNUNET_SCHEDULER_NO_TASK)
608   {
609     GNUNET_SCHEDULER_cancel (plugin->client_perform_task);
610     plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
611   }
612
613   curl_multi_cleanup (plugin->client_mh);
614   curl_global_cleanup ();
615 }
616
617
618
619 /* end of plugin_transport_http_client.c */