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