curly wars / auto-indentation
[oweals/gnunet.git] / src / transport / transport_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2011 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/transport_api.c
23  * @brief library to access the low-level P2P IO service
24  * @author Christian Grothoff
25  *
26  * TODO:
27  * - adjust testcases to use new 'try connect' style (should be easy, breaks API compatibility!)
28  * - adjust core service to use new 'try connect' style (should be MUCH nicer there as well!)
29  * - test test test
30  */
31 #include "platform.h"
32 #include "gnunet_constants.h"
33 #include "gnunet_bandwidth_lib.h"
34 #include "gnunet_client_lib.h"
35 #include "gnunet_constants.h"
36 #include "gnunet_container_lib.h"
37 #include "gnunet_arm_service.h"
38 #include "gnunet_hello_lib.h"
39 #include "gnunet_protocols.h"
40 #include "gnunet_server_lib.h"
41 #include "gnunet_time_lib.h"
42 #include "gnunet_transport_service.h"
43 #include "transport.h"
44
45 #define LOG(kind,...) GNUNET_log_from (kind, "transport-api",__VA_ARGS__)
46
47 /**
48  * How large to start with for the hashmap of neighbours.
49  */
50 #define STARTING_NEIGHBOURS_SIZE 16
51
52 /**
53  * Handle for a message that should be transmitted to the service.
54  * Used for both control messages and normal messages.
55  */
56 struct GNUNET_TRANSPORT_TransmitHandle
57 {
58
59   /**
60    * We keep all requests in a DLL.
61    */
62   struct GNUNET_TRANSPORT_TransmitHandle *next;
63
64   /**
65    * We keep all requests in a DLL.
66    */
67   struct GNUNET_TRANSPORT_TransmitHandle *prev;
68
69   /**
70    * Neighbour for this handle, NULL for control messages.
71    */
72   struct Neighbour *neighbour;
73
74   /**
75    * Function to call when notify_size bytes are available
76    * for transmission.
77    */
78   GNUNET_CONNECTION_TransmitReadyNotify notify;
79
80   /**
81    * Closure for notify.
82    */
83   void *notify_cls;
84
85   /**
86    * Timeout for this request, 0 for control messages.
87    */
88   struct GNUNET_TIME_Absolute timeout;
89
90   /**
91    * Task to trigger request timeout if the request is stalled due to
92    * congestion.
93    */
94   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
95
96   /**
97    * How many bytes is our notify callback waiting for?
98    */
99   size_t notify_size;
100
101   /**
102    * How important is this message? Not used for control messages.
103    */
104   uint32_t priority;
105
106 };
107
108
109 /**
110  * Entry in hash table of all of our current neighbours.
111  */
112 struct Neighbour
113 {
114   /**
115    * Overall transport handle.
116    */
117   struct GNUNET_TRANSPORT_Handle *h;
118
119   /**
120    * Active transmit handle or NULL.
121    */
122   struct GNUNET_TRANSPORT_TransmitHandle *th;
123
124   /**
125    * Identity of this neighbour.
126    */
127   struct GNUNET_PeerIdentity id;
128
129   /**
130    * Outbound bandwidh tracker.
131    */
132   struct GNUNET_BANDWIDTH_Tracker out_tracker;
133
134   /**
135    * Entry in our readyness heap (which is sorted by 'next_ready'
136    * value).  NULL if there is no pending transmission request for
137    * this neighbour or if we're waiting for 'is_ready' to become
138    * true AFTER the 'out_tracker' suggested that this peer's quota
139    * has been satisfied (so once 'is_ready' goes to GNUNET_YES,
140    * we should immediately go back into the heap).
141    */
142   struct GNUNET_CONTAINER_HeapNode *hn;
143
144   /**
145    * Is this peer currently ready to receive a message?
146    */
147   int is_ready;
148
149 };
150
151
152 /**
153  * Linked list of functions to call whenever our HELLO is updated.
154  */
155 struct GNUNET_TRANSPORT_GetHelloHandle
156 {
157
158   /**
159    * This is a doubly linked list.
160    */
161   struct GNUNET_TRANSPORT_GetHelloHandle *next;
162
163   /**
164    * This is a doubly linked list.
165    */
166   struct GNUNET_TRANSPORT_GetHelloHandle *prev;
167
168   /**
169    * Transport handle.
170    */
171   struct GNUNET_TRANSPORT_Handle *handle;
172
173   /**
174    * Callback to call once we got our HELLO.
175    */
176   GNUNET_TRANSPORT_HelloUpdateCallback rec;
177
178   /**
179    * Closure for rec.
180    */
181   void *rec_cls;
182
183 };
184
185
186 /**
187  * Handle for the transport service (includes all of the
188  * state for the transport service).
189  */
190 struct GNUNET_TRANSPORT_Handle
191 {
192
193   /**
194    * Closure for the callbacks.
195    */
196   void *cls;
197
198   /**
199    * Function to call for received data.
200    */
201   GNUNET_TRANSPORT_ReceiveCallback rec;
202
203   /**
204    * function to call on connect events
205    */
206   GNUNET_TRANSPORT_NotifyConnect nc_cb;
207
208   /**
209    * function to call on disconnect events
210    */
211   GNUNET_TRANSPORT_NotifyDisconnect nd_cb;
212
213   /**
214    * Head of DLL of control messages.
215    */
216   struct GNUNET_TRANSPORT_TransmitHandle *control_head;
217
218   /**
219    * Tail of DLL of control messages.
220    */
221   struct GNUNET_TRANSPORT_TransmitHandle *control_tail;
222
223   /**
224    * The current HELLO message for this peer.  Updated
225    * whenever transports change their addresses.
226    */
227   struct GNUNET_HELLO_Message *my_hello;
228
229   /**
230    * My client connection to the transport service.
231    */
232   struct GNUNET_CLIENT_Connection *client;
233
234   /**
235    * Handle to our registration with the client for notification.
236    */
237   struct GNUNET_CLIENT_TransmitHandle *cth;
238
239   /**
240    * Linked list of pending requests for our HELLO.
241    */
242   struct GNUNET_TRANSPORT_GetHelloHandle *hwl_head;
243
244   /**
245    * Linked list of pending requests for our HELLO.
246    */
247   struct GNUNET_TRANSPORT_GetHelloHandle *hwl_tail;
248
249   /**
250    * My configuration.
251    */
252   const struct GNUNET_CONFIGURATION_Handle *cfg;
253
254   /**
255    * Hash map of the current connected neighbours of this peer.
256    * Maps peer identities to 'struct Neighbour' entries.
257    */
258   struct GNUNET_CONTAINER_MultiHashMap *neighbours;
259
260   /**
261    * Heap sorting peers with pending messages by the timestamps that
262    * specify when we could next send a message to the respective peer.
263    * Excludes control messages (which can always go out immediately).
264    * Maps time stamps to 'struct Neighbour' entries.
265    */
266   struct GNUNET_CONTAINER_Heap *ready_heap;
267
268   /**
269    * Peer identity as assumed by this process, or all zeros.
270    */
271   struct GNUNET_PeerIdentity self;
272
273   /**
274    * ID of the task trying to reconnect to the service.
275    */
276   GNUNET_SCHEDULER_TaskIdentifier reconnect_task;
277
278   /**
279    * ID of the task trying to trigger transmission for a peer while
280    * maintaining bandwidth quotas.  In use if there are no control
281    * messages and the smallest entry in the 'ready_heap' has a time
282    * stamp in the future.
283    */
284   GNUNET_SCHEDULER_TaskIdentifier quota_task;
285
286   /**
287    * Delay until we try to reconnect.
288    */
289   struct GNUNET_TIME_Relative reconnect_delay;
290
291   /**
292    * Should we check that 'self' matches what the service thinks?
293    * (if GNUNET_NO, then 'self' is all zeros!).
294    */
295   int check_self;
296 };
297
298
299 /**
300  * Schedule the task to send one message, either from the control
301  * list or the peer message queues  to the service.
302  *
303  * @param h transport service to schedule a transmission for
304  */
305 static void
306 schedule_transmission (struct GNUNET_TRANSPORT_Handle *h);
307
308
309 /**
310  * Function that will schedule the job that will try
311  * to connect us again to the client.
312  *
313  * @param h transport service to reconnect
314  */
315 static void
316 disconnect_and_schedule_reconnect (struct GNUNET_TRANSPORT_Handle *h);
317
318
319 /**
320  * Get the neighbour list entry for the given peer
321  *
322  * @param h our context
323  * @param peer peer to look up
324  * @return NULL if no such peer entry exists
325  */
326 static struct Neighbour *
327 neighbour_find (struct GNUNET_TRANSPORT_Handle *h,
328                 const struct GNUNET_PeerIdentity *peer)
329 {
330   return GNUNET_CONTAINER_multihashmap_get (h->neighbours, &peer->hashPubKey);
331 }
332
333
334 /**
335  * Add neighbour to our list
336  *
337  * @return NULL if this API is currently disconnecting from the service
338  */
339 static struct Neighbour *
340 neighbour_add (struct GNUNET_TRANSPORT_Handle *h,
341                const struct GNUNET_PeerIdentity *pid)
342 {
343   struct Neighbour *n;
344
345 #if DEBUG_TRANSPORT_API
346   LOG (GNUNET_ERROR_TYPE_DEBUG, "Creating entry for neighbour `%4s'.\n",
347        GNUNET_i2s (pid));
348 #endif
349   n = GNUNET_malloc (sizeof (struct Neighbour));
350   n->id = *pid;
351   n->h = h;
352   n->is_ready = GNUNET_YES;
353   GNUNET_BANDWIDTH_tracker_init (&n->out_tracker,
354                                  GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT,
355                                  MAX_BANDWIDTH_CARRY_S);
356   GNUNET_assert (GNUNET_OK ==
357                  GNUNET_CONTAINER_multihashmap_put (h->neighbours,
358                                                     &pid->hashPubKey, n,
359                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
360   return n;
361 }
362
363
364 /**
365  * Iterator over hash map entries, for deleting state of a neighbour.
366  *
367  * @param cls the 'struct GNUNET_TRANSPORT_Handle*'
368  * @param key peer identity
369  * @param value value in the hash map, the neighbour entry to delete
370  * @return GNUNET_YES if we should continue to
371  *         iterate,
372  *         GNUNET_NO if not.
373  */
374 static int
375 neighbour_delete (void *cls, const GNUNET_HashCode * key, void *value)
376 {
377   struct GNUNET_TRANSPORT_Handle *handle = cls;
378   struct Neighbour *n = value;
379
380   if (NULL != handle->nd_cb)
381     handle->nd_cb (handle->cls, &n->id);
382   GNUNET_assert (NULL == n->th);
383   GNUNET_assert (NULL == n->hn);
384   GNUNET_assert (GNUNET_YES ==
385                  GNUNET_CONTAINER_multihashmap_remove (handle->neighbours, key,
386                                                        n));
387   GNUNET_free (n);
388   return GNUNET_YES;
389 }
390
391
392 /**
393  * Function we use for handling incoming messages.
394  *
395  * @param cls closure (struct GNUNET_TRANSPORT_Handle *)
396  * @param msg message received, NULL on timeout or fatal error
397  */
398 static void
399 demultiplexer (void *cls, const struct GNUNET_MessageHeader *msg)
400 {
401   struct GNUNET_TRANSPORT_Handle *h = cls;
402   const struct DisconnectInfoMessage *dim;
403   const struct ConnectInfoMessage *cim;
404   const struct InboundMessage *im;
405   const struct GNUNET_MessageHeader *imm;
406   const struct SendOkMessage *okm;
407   const struct QuotaSetMessage *qm;
408   const struct GNUNET_ATS_Information *ats;
409   struct GNUNET_TRANSPORT_GetHelloHandle *hwl;
410   struct GNUNET_TRANSPORT_GetHelloHandle *next_hwl;
411   struct Neighbour *n;
412   struct GNUNET_PeerIdentity me;
413   uint16_t size;
414   uint32_t ats_count;
415
416   GNUNET_assert (h->client != NULL);
417   if (msg == NULL)
418   {
419 #if DEBUG_TRANSPORT_API
420     LOG (GNUNET_ERROR_TYPE_INFO,
421          "Error receiving from transport service, disconnecting temporarily.\n");
422 #endif
423     disconnect_and_schedule_reconnect (h);
424     return;
425   }
426   GNUNET_CLIENT_receive (h->client, &demultiplexer, h,
427                          GNUNET_TIME_UNIT_FOREVER_REL);
428   size = ntohs (msg->size);
429   switch (ntohs (msg->type))
430   {
431   case GNUNET_MESSAGE_TYPE_HELLO:
432     if (GNUNET_OK !=
433         GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *) msg, &me))
434     {
435       GNUNET_break (0);
436       break;
437     }
438 #if DEBUG_TRANSPORT_API
439     LOG (GNUNET_ERROR_TYPE_DEBUG,
440          "Receiving (my own) `%s' message, I am `%4s'.\n", "HELLO",
441          GNUNET_i2s (&me));
442 #endif
443     GNUNET_free_non_null (h->my_hello);
444     h->my_hello = NULL;
445     if (size < sizeof (struct GNUNET_MessageHeader))
446     {
447       GNUNET_break (0);
448       break;
449     }
450     h->my_hello = GNUNET_malloc (size);
451     memcpy (h->my_hello, msg, size);
452     hwl = h->hwl_head;
453     while (NULL != hwl)
454     {
455       next_hwl = hwl->next;
456       hwl->rec (hwl->rec_cls,
457                 (const struct GNUNET_MessageHeader *) h->my_hello);
458       hwl = next_hwl;
459     }
460     break;
461   case GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT:
462     if (size < sizeof (struct ConnectInfoMessage))
463     {
464       GNUNET_break (0);
465       break;
466     }
467     cim = (const struct ConnectInfoMessage *) msg;
468     ats_count = ntohl (cim->ats_count);
469     if (size !=
470         sizeof (struct ConnectInfoMessage) +
471         ats_count * sizeof (struct GNUNET_ATS_Information))
472     {
473       GNUNET_break (0);
474       break;
475     }
476     ats = (const struct GNUNET_ATS_Information *) &cim[1];
477 #if DEBUG_TRANSPORT_API
478     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s'.\n",
479          "CONNECT", GNUNET_i2s (&cim->id));
480 #endif
481     n = neighbour_find (h, &cim->id);
482     if (n != NULL)
483     {
484       GNUNET_break (0);
485       break;
486     }
487     n = neighbour_add (h, &cim->id);
488     if (h->nc_cb != NULL)
489       h->nc_cb (h->cls, &n->id, ats, ats_count);
490     break;
491   case GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT:
492     if (size != sizeof (struct DisconnectInfoMessage))
493     {
494       GNUNET_break (0);
495       break;
496     }
497     dim = (const struct DisconnectInfoMessage *) msg;
498     GNUNET_break (ntohl (dim->reserved) == 0);
499 #if DEBUG_TRANSPORT_API_DISCONNECT
500     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s'.\n",
501          "DISCONNECT", GNUNET_i2s (&dim->peer));
502 #endif
503     n = neighbour_find (h, &dim->peer);
504     if (n == NULL)
505     {
506       GNUNET_break (0);
507       break;
508     }
509     neighbour_delete (h, &dim->peer.hashPubKey, n);
510     break;
511   case GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_OK:
512     if (size != sizeof (struct SendOkMessage))
513     {
514       GNUNET_break (0);
515       break;
516     }
517     okm = (const struct SendOkMessage *) msg;
518 #if DEBUG_TRANSPORT_API
519     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message, transmission %s.\n",
520          "SEND_OK", ntohl (okm->success) == GNUNET_OK ? "succeeded" : "failed");
521 #endif
522     n = neighbour_find (h, &okm->peer);
523     if (n == NULL)
524       break;
525     GNUNET_break (GNUNET_NO == n->is_ready);
526     n->is_ready = GNUNET_YES;
527     if ((n->th != NULL) && (n->hn == NULL))
528     {
529       GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != n->th->timeout_task);
530       GNUNET_SCHEDULER_cancel (n->th->timeout_task);
531       n->th->timeout_task = GNUNET_SCHEDULER_NO_TASK;
532       /* we've been waiting for this (congestion, not quota,
533        * caused delayed transmission) */
534       n->hn = GNUNET_CONTAINER_heap_insert (h->ready_heap, n, 0);
535       schedule_transmission (h);
536     }
537     break;
538   case GNUNET_MESSAGE_TYPE_TRANSPORT_RECV:
539 #if DEBUG_TRANSPORT_API
540     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message.\n", "RECV");
541 #endif
542     if (size <
543         sizeof (struct InboundMessage) + sizeof (struct GNUNET_MessageHeader))
544     {
545       GNUNET_break (0);
546       break;
547     }
548     im = (const struct InboundMessage *) msg;
549     ats_count = ntohl (im->ats_count);
550     ats = (const struct GNUNET_ATS_Information *) &im[1];
551     imm = (const struct GNUNET_MessageHeader *) &ats[ats_count];
552     if (ntohs (imm->size) + sizeof (struct InboundMessage) +
553         ats_count * sizeof (struct GNUNET_ATS_Information) != size)
554     {
555       GNUNET_break (0);
556       break;
557     }
558 #if DEBUG_TRANSPORT_API
559     LOG (GNUNET_ERROR_TYPE_DEBUG, "Received message of type %u from `%4s'.\n",
560          ntohs (imm->type), GNUNET_i2s (&im->peer));
561 #endif
562     n = neighbour_find (h, &im->peer);
563     if (n == NULL)
564     {
565       GNUNET_break (0);
566       break;
567     }
568     if (h->rec != NULL)
569       h->rec (h->cls, &im->peer, imm, ats, ats_count);
570     break;
571   case GNUNET_MESSAGE_TYPE_TRANSPORT_SET_QUOTA:
572 #if DEBUG_TRANSPORT_API
573     LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message.\n", "SET_QUOTA");
574 #endif
575     if (size != sizeof (struct QuotaSetMessage))
576     {
577       GNUNET_break (0);
578       break;
579     }
580     qm = (const struct QuotaSetMessage *) msg;
581     n = neighbour_find (h, &qm->peer);
582     if (n == NULL)
583       break;
584     GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker, qm->quota);
585     break;
586   default:
587     LOG (GNUNET_ERROR_TYPE_ERROR,
588          _("Received unexpected message of type %u in %s:%u\n"),
589          ntohs (msg->type), __FILE__, __LINE__);
590     GNUNET_break (0);
591     break;
592   }
593 }
594
595
596 /**
597  * A transmission request could not be satisfied because of
598  * network congestion.  Notify the initiator and clean up.
599  *
600  * @param cls the 'struct GNUNET_TRANSPORT_TransmitHandle'
601  * @param tc scheduler context
602  */
603 static void
604 timeout_request_due_to_congestion (void *cls,
605                                    const struct GNUNET_SCHEDULER_TaskContext
606                                    *tc)
607 {
608   struct GNUNET_TRANSPORT_TransmitHandle *th = cls;
609   struct Neighbour *n = th->neighbour;
610
611   n->th->timeout_task = GNUNET_SCHEDULER_NO_TASK;
612   GNUNET_assert (th == n->th);
613   GNUNET_assert (NULL == n->hn);
614   n->th = NULL;
615   th->notify (th->notify_cls, 0, NULL);
616   GNUNET_free (th);
617 }
618
619
620 /**
621  * Transmit message(s) to service.
622  *
623  * @param cls handle to transport
624  * @param size number of bytes available in buf
625  * @param buf where to copy the message
626  * @return number of bytes copied to buf
627  */
628 static size_t
629 transport_notify_ready (void *cls, size_t size, void *buf)
630 {
631   struct GNUNET_TRANSPORT_Handle *h = cls;
632   struct GNUNET_TRANSPORT_TransmitHandle *th;
633   struct Neighbour *n;
634   char *cbuf;
635   struct OutboundMessage obm;
636   size_t ret;
637   size_t nret;
638   size_t mret;
639
640   GNUNET_assert (NULL != h->client);
641   h->cth = NULL;
642   if (NULL == buf)
643   {
644     /* transmission failed */
645     disconnect_and_schedule_reconnect (h);
646     return 0;
647   }
648
649   cbuf = buf;
650   ret = 0;
651   /* first send control messages */
652   while ((NULL != (th = h->control_head)) && (th->notify_size <= size))
653   {
654     GNUNET_CONTAINER_DLL_remove (h->control_head, h->control_tail, th);
655     nret = th->notify (th->notify_cls, size, &cbuf[ret]);
656 #if DEBUG_TRANSPORT_API
657     LOG (GNUNET_ERROR_TYPE_DEBUG, "Added %u bytes of control message at %u\n",
658          nret, ret);
659 #endif
660     GNUNET_free (th);
661     ret += nret;
662     size -= nret;
663   }
664
665   /* then, if possible and no control messages pending, send data messages */
666   while ((NULL == h->control_head) &&
667          (NULL != (n = GNUNET_CONTAINER_heap_peek (h->ready_heap))))
668   {
669     if (GNUNET_YES != n->is_ready)
670     {
671       /* peer not ready, wait for notification! */
672       GNUNET_assert (n == GNUNET_CONTAINER_heap_remove_root (h->ready_heap));
673       n->hn = NULL;
674       GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == n->th->timeout_task);
675       n->th->timeout_task =
676           GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
677                                         (n->th->timeout),
678                                         &timeout_request_due_to_congestion,
679                                         n->th);
680       continue;
681     }
682     th = n->th;
683     if (th->notify_size + sizeof (struct OutboundMessage) > size)
684       break;                    /* does not fit */
685     if (GNUNET_BANDWIDTH_tracker_get_delay
686         (&n->out_tracker, th->notify_size).rel_value > 0)
687       break;                    /* too early */
688     GNUNET_assert (n == GNUNET_CONTAINER_heap_remove_root (h->ready_heap));
689     n->hn = NULL;
690     n->th = NULL;
691     n->is_ready = GNUNET_NO;
692     GNUNET_assert (size >= sizeof (struct OutboundMessage));
693     mret =
694         th->notify (th->notify_cls, size - sizeof (struct OutboundMessage),
695                     &cbuf[ret + sizeof (struct OutboundMessage)]);
696     GNUNET_assert (mret <= size - sizeof (struct OutboundMessage));
697     if (mret != 0)
698     {
699       GNUNET_assert (mret + sizeof (struct OutboundMessage) <
700                      GNUNET_SERVER_MAX_MESSAGE_SIZE);
701       obm.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SEND);
702       obm.header.size = htons (mret + sizeof (struct OutboundMessage));
703       obm.priority = htonl (th->priority);
704       obm.timeout =
705           GNUNET_TIME_relative_hton (GNUNET_TIME_absolute_get_remaining
706                                      (th->timeout));
707       obm.peer = n->id;
708       memcpy (&cbuf[ret], &obm, sizeof (struct OutboundMessage));
709       ret += (mret + sizeof (struct OutboundMessage));
710       size -= (mret + sizeof (struct OutboundMessage));
711       GNUNET_BANDWIDTH_tracker_consume (&n->out_tracker, mret);
712     }
713     GNUNET_free (th);
714   }
715   /* if there are more pending messages, try to schedule those */
716   schedule_transmission (h);
717 #if DEBUG_TRANSPORT_API
718   LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting %u bytes to transport service\n",
719        ret);
720 #endif
721   return ret;
722 }
723
724
725 /**
726  * Schedule the task to send one message, either from the control
727  * list or the peer message queues  to the service.
728  *
729  * @param cls transport service to schedule a transmission for
730  * @param tc scheduler context
731  */
732 static void
733 schedule_transmission_task (void *cls,
734                             const struct GNUNET_SCHEDULER_TaskContext *tc)
735 {
736   struct GNUNET_TRANSPORT_Handle *h = cls;
737   size_t size;
738   struct GNUNET_TRANSPORT_TransmitHandle *th;
739   struct Neighbour *n;
740
741   h->quota_task = GNUNET_SCHEDULER_NO_TASK;
742   GNUNET_assert (NULL != h->client);
743   /* destroy all requests that have timed out */
744   while ((NULL != (n = GNUNET_CONTAINER_heap_peek (h->ready_heap))) &&
745          (GNUNET_TIME_absolute_get_remaining (n->th->timeout).rel_value == 0))
746   {
747     /* notify client that the request could not be satisfied within
748      * the given time constraints */
749     th = n->th;
750     n->th = NULL;
751     GNUNET_assert (n == GNUNET_CONTAINER_heap_remove_root (h->ready_heap));
752     n->hn = NULL;
753 #if DEBUG_TRANSPORT_API
754     LOG (GNUNET_ERROR_TYPE_DEBUG,
755          "Signalling timeout for transmission to peer %s due to congestion\n",
756          GNUNET_i2s (&n->id));
757 #endif
758     GNUNET_assert (0 == th->notify (th->notify_cls, 0, NULL));
759     GNUNET_free (th);
760   }
761   if (NULL != h->cth)
762     return;
763   if (NULL != h->control_head)
764   {
765     size = h->control_head->notify_size;
766   }
767   else
768   {
769     n = GNUNET_CONTAINER_heap_peek (h->ready_heap);
770     if (NULL == n)
771       return;                   /* no pending messages */
772     size = n->th->notify_size + sizeof (struct OutboundMessage);
773   }
774 #if DEBUG_TRANSPORT_API
775   LOG (GNUNET_ERROR_TYPE_DEBUG, "Calling notify_transmit_ready\n");
776 #endif
777   h->cth =
778       GNUNET_CLIENT_notify_transmit_ready (h->client, size,
779                                            GNUNET_TIME_UNIT_FOREVER_REL,
780                                            GNUNET_NO, &transport_notify_ready,
781                                            h);
782   GNUNET_assert (NULL != h->cth);
783 }
784
785
786 /**
787  * Schedule the task to send one message, either from the control
788  * list or the peer message queues  to the service.
789  *
790  * @param h transport service to schedule a transmission for
791  */
792 static void
793 schedule_transmission (struct GNUNET_TRANSPORT_Handle *h)
794 {
795   struct GNUNET_TIME_Relative delay;
796   struct Neighbour *n;
797
798   GNUNET_assert (NULL != h->client);
799   if (h->quota_task != GNUNET_SCHEDULER_NO_TASK)
800   {
801     GNUNET_SCHEDULER_cancel (h->quota_task);
802     h->quota_task = GNUNET_SCHEDULER_NO_TASK;
803   }
804   if (NULL != h->control_head)
805     delay = GNUNET_TIME_UNIT_ZERO;
806   else if (NULL != (n = GNUNET_CONTAINER_heap_peek (h->ready_heap)))
807     delay =
808         GNUNET_BANDWIDTH_tracker_get_delay (&n->out_tracker,
809                                             n->th->notify_size);
810   else
811     return;                     /* no work to be done */
812 #if DEBUG_TRANSPORT_API
813   LOG (GNUNET_ERROR_TYPE_DEBUG,
814        "Scheduling next transmission to service in %llu ms\n",
815        (unsigned long long) delay.rel_value);
816 #endif
817   h->quota_task =
818       GNUNET_SCHEDULER_add_delayed (delay, &schedule_transmission_task, h);
819 }
820
821
822 /**
823  * Queue control request for transmission to the transport
824  * service.
825  *
826  * @param h handle to the transport service
827  * @param size number of bytes to be transmitted
828  * @param notify function to call to get the content
829  * @param notify_cls closure for notify
830  */
831 static void
832 schedule_control_transmit (struct GNUNET_TRANSPORT_Handle *h, size_t size,
833                            GNUNET_CONNECTION_TransmitReadyNotify notify,
834                            void *notify_cls)
835 {
836   struct GNUNET_TRANSPORT_TransmitHandle *th;
837
838 #if DEBUG_TRANSPORT_API
839   LOG (GNUNET_ERROR_TYPE_DEBUG, "Control transmit of %u bytes requested\n",
840        size);
841 #endif
842   th = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_TransmitHandle));
843   th->notify = notify;
844   th->notify_cls = notify_cls;
845   th->notify_size = size;
846   GNUNET_CONTAINER_DLL_insert_tail (h->control_head, h->control_tail, th);
847   schedule_transmission (h);
848 }
849
850
851 /**
852  * Transmit START message to service.
853  *
854  * @param cls unused
855  * @param size number of bytes available in buf
856  * @param buf where to copy the message
857  * @return number of bytes copied to buf
858  */
859 static size_t
860 send_start (void *cls, size_t size, void *buf)
861 {
862   struct GNUNET_TRANSPORT_Handle *h = cls;
863   struct StartMessage s;
864   uint32_t options;
865
866   if (buf == NULL)
867   {
868     /* Can only be shutdown, just give up */
869 #if DEBUG_TRANSPORT_API
870     LOG (GNUNET_ERROR_TYPE_DEBUG,
871          "Shutdown while trying to transmit `%s' request.\n", "START");
872 #endif
873     return 0;
874   }
875 #if DEBUG_TRANSPORT_API
876   LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting `%s' request.\n", "START");
877 #endif
878   GNUNET_assert (size >= sizeof (struct StartMessage));
879   s.header.size = htons (sizeof (struct StartMessage));
880   s.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_START);
881   options = 0;
882   if (h->check_self)
883     options |= 1;
884   if (h->rec != NULL)
885     options |= 2;
886   s.options = htonl (options);
887   s.self = h->self;
888   memcpy (buf, &s, sizeof (struct StartMessage));
889   GNUNET_CLIENT_receive (h->client, &demultiplexer, h,
890                          GNUNET_TIME_UNIT_FOREVER_REL);
891   return sizeof (struct StartMessage);
892 }
893
894
895 /**
896  * Try again to connect to transport service.
897  *
898  * @param cls the handle to the transport service
899  * @param tc scheduler context
900  */
901 static void
902 reconnect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
903 {
904   struct GNUNET_TRANSPORT_Handle *h = cls;
905
906   h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
907   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
908   {
909     /* shutdown, just give up */
910     return;
911   }
912 #if DEBUG_TRANSPORT_API
913   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connecting to transport service.\n");
914 #endif
915   GNUNET_assert (h->client == NULL);
916   GNUNET_assert (h->control_head == NULL);
917   GNUNET_assert (h->control_tail == NULL);
918   h->client = GNUNET_CLIENT_connect ("transport", h->cfg);
919   GNUNET_assert (h->client != NULL);
920   schedule_control_transmit (h, sizeof (struct StartMessage), &send_start, h);
921 }
922
923
924 /**
925  * Function that will schedule the job that will try
926  * to connect us again to the client.
927  *
928  * @param h transport service to reconnect
929  */
930 static void
931 disconnect_and_schedule_reconnect (struct GNUNET_TRANSPORT_Handle *h)
932 {
933   struct GNUNET_TRANSPORT_TransmitHandle *th;
934
935   GNUNET_assert (h->reconnect_task == GNUNET_SCHEDULER_NO_TASK);
936   /* Forget about all neighbours that we used to be connected to */
937   GNUNET_CONTAINER_multihashmap_iterate (h->neighbours, &neighbour_delete, h);
938   if (NULL != h->cth)
939   {
940     GNUNET_CLIENT_notify_transmit_ready_cancel (h->cth);
941     h->cth = NULL;
942   }
943   if (NULL != h->client)
944   {
945     GNUNET_CLIENT_disconnect (h->client, GNUNET_YES);
946     h->client = NULL;
947   }
948   if (h->quota_task != GNUNET_SCHEDULER_NO_TASK)
949   {
950     GNUNET_SCHEDULER_cancel (h->quota_task);
951     h->quota_task = GNUNET_SCHEDULER_NO_TASK;
952   }
953   while ((NULL != (th = h->control_head)))
954   {
955     GNUNET_CONTAINER_DLL_remove (h->control_head, h->control_tail, th);
956     th->notify (th->notify_cls, 0, NULL);
957     GNUNET_free (th);
958   }
959 #if DEBUG_TRANSPORT_API
960   LOG (GNUNET_ERROR_TYPE_DEBUG,
961        "Scheduling task to reconnect to transport service in %llu ms.\n",
962        h->reconnect_delay.rel_value);
963 #endif
964   h->reconnect_task =
965       GNUNET_SCHEDULER_add_delayed (h->reconnect_delay, &reconnect, h);
966   if (h->reconnect_delay.rel_value == 0)
967   {
968     h->reconnect_delay = GNUNET_TIME_UNIT_MILLISECONDS;
969   }
970   else
971   {
972     h->reconnect_delay = GNUNET_TIME_relative_multiply (h->reconnect_delay, 2);
973     h->reconnect_delay =
974         GNUNET_TIME_relative_min (GNUNET_TIME_UNIT_SECONDS, h->reconnect_delay);
975   }
976 }
977
978
979 /**
980  * Send REQUEST_CONNECT message to the service.
981  *
982  * @param cls the 'struct GNUNET_PeerIdentity'
983  * @param size number of bytes available in buf
984  * @param buf where to copy the message
985  * @return number of bytes copied to buf
986  */
987 static size_t
988 send_try_connect (void *cls, size_t size, void *buf)
989 {
990   struct GNUNET_PeerIdentity *pid = cls;
991   struct TransportRequestConnectMessage msg;
992
993   if (buf == NULL)
994   {
995     GNUNET_free (pid);
996     return 0;
997   }
998 #if DEBUG_TRANSPORT_API
999   LOG (GNUNET_ERROR_TYPE_DEBUG,
1000        "Transmitting `%s' request with respect to `%4s'.\n", "REQUEST_CONNECT",
1001        GNUNET_i2s (pid));
1002 #endif
1003   GNUNET_assert (size >= sizeof (struct TransportRequestConnectMessage));
1004   msg.header.size = htons (sizeof (struct TransportRequestConnectMessage));
1005   msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_REQUEST_CONNECT);
1006   msg.reserved = htonl (0);
1007   msg.peer = *pid;
1008   memcpy (buf, &msg, sizeof (msg));
1009   GNUNET_free (pid);
1010   return sizeof (struct TransportRequestConnectMessage);
1011 }
1012
1013
1014 /**
1015  * Ask the transport service to establish a connection to
1016  * the given peer.
1017  *
1018  * @param handle connection to transport service
1019  * @param target who we should try to connect to
1020  */
1021 void
1022 GNUNET_TRANSPORT_try_connect (struct GNUNET_TRANSPORT_Handle *handle,
1023                               const struct GNUNET_PeerIdentity *target)
1024 {
1025   struct GNUNET_PeerIdentity *pid;
1026
1027   if (NULL == handle->client)
1028     return;
1029   pid = GNUNET_malloc (sizeof (struct GNUNET_PeerIdentity));
1030   *pid = *target;
1031   schedule_control_transmit (handle,
1032                              sizeof (struct TransportRequestConnectMessage),
1033                              &send_try_connect, pid);
1034 }
1035
1036
1037 /**
1038  * Send HELLO message to the service.
1039  *
1040  * @param cls the HELLO message to send
1041  * @param size number of bytes available in buf
1042  * @param buf where to copy the message
1043  * @return number of bytes copied to buf
1044  */
1045 static size_t
1046 send_hello (void *cls, size_t size, void *buf)
1047 {
1048   struct GNUNET_MessageHeader *msg = cls;
1049   uint16_t ssize;
1050
1051   if (buf == NULL)
1052   {
1053 #if DEBUG_TRANSPORT_TIMEOUT
1054     LOG (GNUNET_ERROR_TYPE_DEBUG,
1055          "Timeout while trying to transmit `%s' request.\n", "HELLO");
1056 #endif
1057     GNUNET_free (msg);
1058     return 0;
1059   }
1060 #if DEBUG_TRANSPORT_API
1061   LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting `%s' request.\n", "HELLO");
1062 #endif
1063   ssize = ntohs (msg->size);
1064   GNUNET_assert (size >= ssize);
1065   memcpy (buf, msg, ssize);
1066   GNUNET_free (msg);
1067   return ssize;
1068 }
1069
1070
1071 /**
1072  * Offer the transport service the HELLO of another peer.  Note that
1073  * the transport service may just ignore this message if the HELLO is
1074  * malformed or useless due to our local configuration.
1075  *
1076  * @param handle connection to transport service
1077  * @param hello the hello message
1078  * @param cont continuation to call when HELLO has been sent
1079  * @param cls closure for continuation
1080  *
1081  */
1082 void
1083 GNUNET_TRANSPORT_offer_hello (struct GNUNET_TRANSPORT_Handle *handle,
1084                               const struct GNUNET_MessageHeader *hello,
1085                               GNUNET_SCHEDULER_Task cont, void *cls)
1086 {
1087   uint16_t size;
1088   struct GNUNET_PeerIdentity peer;
1089   struct GNUNET_MessageHeader *msg;
1090
1091   if (NULL == handle->client)
1092     return;
1093   GNUNET_break (ntohs (hello->type) == GNUNET_MESSAGE_TYPE_HELLO);
1094   size = ntohs (hello->size);
1095   GNUNET_break (size >= sizeof (struct GNUNET_MessageHeader));
1096   if (GNUNET_OK !=
1097       GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *) hello, &peer))
1098   {
1099     GNUNET_break (0);
1100     return;
1101   }
1102   msg = GNUNET_malloc (size);
1103   memcpy (msg, hello, size);
1104 #if DEBUG_TRANSPORT_API
1105   LOG (GNUNET_ERROR_TYPE_DEBUG,
1106        "Offering `%s' message of `%4s' to transport for validation.\n", "HELLO",
1107        GNUNET_i2s (&peer));
1108 #endif
1109   schedule_control_transmit (handle, size, &send_hello, msg);
1110 }
1111
1112
1113 /**
1114  * Obtain the HELLO message for this peer.
1115  *
1116  * @param handle connection to transport service
1117  * @param rec function to call with the HELLO, sender will be our peer
1118  *            identity; message and sender will be NULL on timeout
1119  *            (handshake with transport service pending/failed).
1120  *             cost estimate will be 0.
1121  * @param rec_cls closure for rec
1122  * @return handle to cancel the operation
1123  */
1124 struct GNUNET_TRANSPORT_GetHelloHandle *
1125 GNUNET_TRANSPORT_get_hello (struct GNUNET_TRANSPORT_Handle *handle,
1126                             GNUNET_TRANSPORT_HelloUpdateCallback rec,
1127                             void *rec_cls)
1128 {
1129   struct GNUNET_TRANSPORT_GetHelloHandle *hwl;
1130
1131   hwl = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_GetHelloHandle));
1132   hwl->rec = rec;
1133   hwl->rec_cls = rec_cls;
1134   hwl->handle = handle;
1135   GNUNET_CONTAINER_DLL_insert (handle->hwl_head, handle->hwl_tail, hwl);
1136   if (handle->my_hello != NULL)
1137     rec (rec_cls, (const struct GNUNET_MessageHeader *) handle->my_hello);
1138   return hwl;
1139 }
1140
1141
1142 /**
1143  * Stop receiving updates about changes to our HELLO message.
1144  *
1145  * @param ghh handle to cancel
1146  */
1147 void
1148 GNUNET_TRANSPORT_get_hello_cancel (struct GNUNET_TRANSPORT_GetHelloHandle *ghh)
1149 {
1150   struct GNUNET_TRANSPORT_Handle *handle = ghh->handle;
1151
1152   GNUNET_CONTAINER_DLL_remove (handle->hwl_head, handle->hwl_tail, ghh);
1153   GNUNET_free (ghh);
1154 }
1155
1156
1157 /**
1158  * Connect to the transport service.  Note that the connection may
1159  * complete (or fail) asynchronously.
1160  *
1161  * @param cfg configuration to use
1162  * @param self our own identity (API should check that it matches
1163  *             the identity found by transport), or NULL (no check)
1164  * @param cls closure for the callbacks
1165  * @param rec receive function to call
1166  * @param nc function to call on connect events
1167  * @param nd function to call on disconnect events
1168  */
1169 struct GNUNET_TRANSPORT_Handle *
1170 GNUNET_TRANSPORT_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
1171                           const struct GNUNET_PeerIdentity *self, void *cls,
1172                           GNUNET_TRANSPORT_ReceiveCallback rec,
1173                           GNUNET_TRANSPORT_NotifyConnect nc,
1174                           GNUNET_TRANSPORT_NotifyDisconnect nd)
1175 {
1176   struct GNUNET_TRANSPORT_Handle *ret;
1177
1178   ret = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_Handle));
1179   if (self != NULL)
1180   {
1181     ret->self = *self;
1182     ret->check_self = GNUNET_YES;
1183   }
1184   ret->cfg = cfg;
1185   ret->cls = cls;
1186   ret->rec = rec;
1187   ret->nc_cb = nc;
1188   ret->nd_cb = nd;
1189   ret->reconnect_delay = GNUNET_TIME_UNIT_ZERO;
1190   ret->neighbours =
1191       GNUNET_CONTAINER_multihashmap_create (STARTING_NEIGHBOURS_SIZE);
1192   ret->ready_heap =
1193       GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
1194   ret->reconnect_task = GNUNET_SCHEDULER_add_now (&reconnect, ret);
1195   return ret;
1196 }
1197
1198
1199 /**
1200  * Disconnect from the transport service.
1201  *
1202  * @param handle handle to the service as returned from GNUNET_TRANSPORT_connect
1203  */
1204 void
1205 GNUNET_TRANSPORT_disconnect (struct GNUNET_TRANSPORT_Handle *handle)
1206 {
1207 #if DEBUG_TRANSPORT_API
1208   LOG (GNUNET_ERROR_TYPE_DEBUG, "Transport disconnect called!\n");
1209 #endif
1210   /* this disconnects all neighbours... */
1211   if (handle->reconnect_task == GNUNET_SCHEDULER_NO_TASK)
1212     disconnect_and_schedule_reconnect (handle);
1213   /* and now we stop trying to connect again... */
1214   if (handle->reconnect_task != GNUNET_SCHEDULER_NO_TASK)
1215   {
1216     GNUNET_SCHEDULER_cancel (handle->reconnect_task);
1217     handle->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1218   }
1219   GNUNET_CONTAINER_multihashmap_destroy (handle->neighbours);
1220   handle->neighbours = NULL;
1221   if (handle->quota_task != GNUNET_SCHEDULER_NO_TASK)
1222   {
1223     GNUNET_SCHEDULER_cancel (handle->quota_task);
1224     handle->quota_task = GNUNET_SCHEDULER_NO_TASK;
1225   }
1226   GNUNET_free_non_null (handle->my_hello);
1227   handle->my_hello = NULL;
1228   GNUNET_assert (handle->hwl_head == NULL);
1229   GNUNET_assert (handle->hwl_tail == NULL);
1230   GNUNET_CONTAINER_heap_destroy (handle->ready_heap);
1231   handle->ready_heap = NULL;
1232   GNUNET_free (handle);
1233 }
1234
1235
1236 /**
1237  * Check if we could queue a message of the given size for
1238  * transmission.  The transport service will take both its
1239  * internal buffers and bandwidth limits imposed by the
1240  * other peer into consideration when answering this query.
1241  *
1242  * @param handle connection to transport service
1243  * @param target who should receive the message
1244  * @param size how big is the message we want to transmit?
1245  * @param priority how important is the message?
1246  * @param timeout after how long should we give up (and call
1247  *        notify with buf NULL and size 0)?
1248  * @param notify function to call when we are ready to
1249  *        send such a message
1250  * @param notify_cls closure for notify
1251  * @return NULL if someone else is already waiting to be notified
1252  *         non-NULL if the notify callback was queued (can be used to cancel
1253  *         using GNUNET_TRANSPORT_notify_transmit_ready_cancel)
1254  */
1255 struct GNUNET_TRANSPORT_TransmitHandle *
1256 GNUNET_TRANSPORT_notify_transmit_ready (struct GNUNET_TRANSPORT_Handle *handle,
1257                                         const struct GNUNET_PeerIdentity
1258                                         *target, size_t size, uint32_t priority,
1259                                         struct GNUNET_TIME_Relative timeout,
1260                                         GNUNET_CONNECTION_TransmitReadyNotify
1261                                         notify, void *notify_cls)
1262 {
1263   struct Neighbour *n;
1264   struct GNUNET_TRANSPORT_TransmitHandle *th;
1265   struct GNUNET_TIME_Relative delay;
1266
1267   n = neighbour_find (handle, target);
1268   if (NULL == n)
1269   {
1270     /* use GNUNET_TRANSPORT_try_connect first, only use this function
1271      * once a connection has been established */
1272     GNUNET_assert (0);
1273     return NULL;
1274   }
1275   if (NULL != n->th)
1276   {
1277     /* attempt to send two messages at the same time to the same peer */
1278     GNUNET_assert (0);
1279     return NULL;
1280   }
1281   GNUNET_assert (NULL == n->hn);
1282   th = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_TransmitHandle));
1283   th->neighbour = n;
1284   th->notify = notify;
1285   th->notify_cls = notify_cls;
1286   th->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1287   th->notify_size = size;
1288   th->priority = priority;
1289   n->th = th;
1290   /* calculate when our transmission should be ready */
1291   delay = GNUNET_BANDWIDTH_tracker_get_delay (&n->out_tracker, size);
1292   if (delay.rel_value > timeout.rel_value)
1293     delay.rel_value = 0;        /* notify immediately (with failure) */
1294 #if DEBUG_TRANSPORT_API
1295   LOG (GNUNET_ERROR_TYPE_DEBUG,
1296        "Bandwidth tracker allows next transmission to peer %s in %llu ms\n",
1297        GNUNET_i2s (target), (unsigned long long) delay.rel_value);
1298 #endif
1299   n->hn = GNUNET_CONTAINER_heap_insert (handle->ready_heap, n, delay.rel_value);
1300   schedule_transmission (handle);
1301   return th;
1302 }
1303
1304
1305 /**
1306  * Cancel the specified transmission-ready notification.
1307  *
1308  * @param th handle returned from GNUNET_TRANSPORT_notify_transmit_ready
1309  */
1310 void
1311 GNUNET_TRANSPORT_notify_transmit_ready_cancel (struct
1312                                                GNUNET_TRANSPORT_TransmitHandle
1313                                                *th)
1314 {
1315   struct Neighbour *n;
1316
1317   GNUNET_assert (NULL == th->next);
1318   GNUNET_assert (NULL == th->prev);
1319   n = th->neighbour;
1320   GNUNET_assert (th == n->th);
1321   n->th = NULL;
1322   if (n->hn != NULL)
1323   {
1324     GNUNET_CONTAINER_heap_remove_node (n->hn);
1325     n->hn = NULL;
1326   }
1327   else
1328   {
1329     GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != th->timeout_task);
1330     GNUNET_SCHEDULER_cancel (th->timeout_task);
1331     th->timeout_task = GNUNET_SCHEDULER_NO_TASK;
1332   }
1333   GNUNET_free (th);
1334 }
1335
1336
1337 /* end of transport_api.c */