2 This file is part of GNUnet.
3 (C) 2009, 2010, 2011 Christian Grothoff (and other contributing authors)
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.
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.
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.
22 * @file transport/transport_api.c
23 * @brief library to access the low-level P2P IO service
24 * @author Christian Grothoff
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!)
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"
45 #define LOG(kind,...) GNUNET_log_from (kind, "transport-api",__VA_ARGS__)
48 * How large to start with for the hashmap of neighbours.
50 #define STARTING_NEIGHBOURS_SIZE 16
53 * Handle for a message that should be transmitted to the service.
54 * Used for both control messages and normal messages.
56 struct GNUNET_TRANSPORT_TransmitHandle
60 * We keep all requests in a DLL.
62 struct GNUNET_TRANSPORT_TransmitHandle *next;
65 * We keep all requests in a DLL.
67 struct GNUNET_TRANSPORT_TransmitHandle *prev;
70 * Neighbour for this handle, NULL for control messages.
72 struct Neighbour *neighbour;
75 * Function to call when notify_size bytes are available
78 GNUNET_CONNECTION_TransmitReadyNotify notify;
86 * Timeout for this request, 0 for control messages.
88 struct GNUNET_TIME_Absolute timeout;
91 * Task to trigger request timeout if the request is stalled due to
94 GNUNET_SCHEDULER_TaskIdentifier timeout_task;
97 * How many bytes is our notify callback waiting for?
102 * How important is this message? Not used for control messages.
110 * Entry in hash table of all of our current neighbours.
115 * Overall transport handle.
117 struct GNUNET_TRANSPORT_Handle *h;
120 * Active transmit handle or NULL.
122 struct GNUNET_TRANSPORT_TransmitHandle *th;
125 * Identity of this neighbour.
127 struct GNUNET_PeerIdentity id;
130 * Outbound bandwidh tracker.
132 struct GNUNET_BANDWIDTH_Tracker out_tracker;
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).
142 struct GNUNET_CONTAINER_HeapNode *hn;
145 * Is this peer currently ready to receive a message?
150 * Sending consumed more bytes on wire than payload was announced
151 * This overhead is added to the delay of next sending operation
153 size_t traffic_overhead;
158 * Linked list of functions to call whenever our HELLO is updated.
160 struct GNUNET_TRANSPORT_GetHelloHandle
164 * This is a doubly linked list.
166 struct GNUNET_TRANSPORT_GetHelloHandle *next;
169 * This is a doubly linked list.
171 struct GNUNET_TRANSPORT_GetHelloHandle *prev;
176 struct GNUNET_TRANSPORT_Handle *handle;
179 * Callback to call once we got our HELLO.
181 GNUNET_TRANSPORT_HelloUpdateCallback rec;
184 * Task for calling the HelloUpdateCallback when we already have a HELLO
186 GNUNET_SCHEDULER_TaskIdentifier notify_task;
196 * Linked list for all try-connect requests
198 struct GNUNET_TRANSPORT_TryConnectHandle
200 struct GNUNET_TRANSPORT_TryConnectHandle *prev;
201 struct GNUNET_TRANSPORT_TryConnectHandle *next;
203 struct GNUNET_PeerIdentity pid;
205 struct GNUNET_TRANSPORT_Handle *th;
206 struct GNUNET_TRANSPORT_TransmitHandle *tth;
207 GNUNET_TRANSPORT_TryConnectCallback cb;
213 * Linked list for all try-connect requests
215 struct GNUNET_TRANSPORT_OfferHelloHandle
217 struct GNUNET_TRANSPORT_OfferHelloHandle *prev;
218 struct GNUNET_TRANSPORT_OfferHelloHandle *next;
220 struct GNUNET_TRANSPORT_Handle *th;
222 struct GNUNET_TRANSPORT_TransmitHandle *tth;
223 GNUNET_SCHEDULER_Task cont;
227 struct GNUNET_MessageHeader *msg;
232 * Handle for the transport service (includes all of the
233 * state for the transport service).
235 struct GNUNET_TRANSPORT_Handle
239 * Closure for the callbacks.
244 * Function to call for received data.
246 GNUNET_TRANSPORT_ReceiveCallback rec;
249 * function to call on connect events
251 GNUNET_TRANSPORT_NotifyConnect nc_cb;
254 * function to call on disconnect events
256 GNUNET_TRANSPORT_NotifyDisconnect nd_cb;
259 * Head of DLL of control messages.
261 struct GNUNET_TRANSPORT_TransmitHandle *control_head;
264 * Tail of DLL of control messages.
266 struct GNUNET_TRANSPORT_TransmitHandle *control_tail;
269 * The current HELLO message for this peer. Updated
270 * whenever transports change their addresses.
272 struct GNUNET_HELLO_Message *my_hello;
275 * My client connection to the transport service.
277 struct GNUNET_CLIENT_Connection *client;
280 * Handle to our registration with the client for notification.
282 struct GNUNET_CLIENT_TransmitHandle *cth;
285 * Linked list of pending requests for our HELLO.
287 struct GNUNET_TRANSPORT_GetHelloHandle *hwl_head;
290 * Linked list of pending requests for our HELLO.
292 struct GNUNET_TRANSPORT_GetHelloHandle *hwl_tail;
295 * Linked list of pending try connect requests head
297 struct GNUNET_TRANSPORT_TryConnectHandle *tc_head;
300 * Linked list of pending try connect requests tail
302 struct GNUNET_TRANSPORT_TryConnectHandle *tc_tail;
305 * Linked list of pending offer HELLO requests head
307 struct GNUNET_TRANSPORT_OfferHelloHandle *oh_head;
310 * Linked list of pending offer HELLO requests tail
312 struct GNUNET_TRANSPORT_OfferHelloHandle *oh_tail;
317 const struct GNUNET_CONFIGURATION_Handle *cfg;
320 * Hash map of the current connected neighbours of this peer.
321 * Maps peer identities to 'struct Neighbour' entries.
323 struct GNUNET_CONTAINER_MultiHashMap *neighbours;
326 * Heap sorting peers with pending messages by the timestamps that
327 * specify when we could next send a message to the respective peer.
328 * Excludes control messages (which can always go out immediately).
329 * Maps time stamps to 'struct Neighbour' entries.
331 struct GNUNET_CONTAINER_Heap *ready_heap;
334 * Peer identity as assumed by this process, or all zeros.
336 struct GNUNET_PeerIdentity self;
339 * ID of the task trying to reconnect to the service.
341 GNUNET_SCHEDULER_TaskIdentifier reconnect_task;
344 * ID of the task trying to trigger transmission for a peer while
345 * maintaining bandwidth quotas. In use if there are no control
346 * messages and the smallest entry in the 'ready_heap' has a time
347 * stamp in the future.
349 GNUNET_SCHEDULER_TaskIdentifier quota_task;
352 * Delay until we try to reconnect.
354 struct GNUNET_TIME_Relative reconnect_delay;
357 * Should we check that 'self' matches what the service thinks?
358 * (if GNUNET_NO, then 'self' is all zeros!).
363 * Reconnect in progress
371 * Schedule the task to send one message, either from the control
372 * list or the peer message queues to the service.
374 * @param h transport service to schedule a transmission for
377 schedule_transmission (struct GNUNET_TRANSPORT_Handle *h);
381 * Function that will schedule the job that will try
382 * to connect us again to the client.
384 * @param h transport service to reconnect
387 disconnect_and_schedule_reconnect (struct GNUNET_TRANSPORT_Handle *h);
391 * Get the neighbour list entry for the given peer
393 * @param h our context
394 * @param peer peer to look up
395 * @return NULL if no such peer entry exists
397 static struct Neighbour *
398 neighbour_find (struct GNUNET_TRANSPORT_Handle *h,
399 const struct GNUNET_PeerIdentity *peer)
401 return GNUNET_CONTAINER_multihashmap_get (h->neighbours, &peer->hashPubKey);
406 * Add neighbour to our list
408 * @return NULL if this API is currently disconnecting from the service
410 static struct Neighbour *
411 neighbour_add (struct GNUNET_TRANSPORT_Handle *h,
412 const struct GNUNET_PeerIdentity *pid)
416 LOG (GNUNET_ERROR_TYPE_DEBUG, "Creating entry for neighbour `%4s'.\n",
418 n = GNUNET_malloc (sizeof (struct Neighbour));
421 n->is_ready = GNUNET_YES;
422 n->traffic_overhead = 0;
423 GNUNET_BANDWIDTH_tracker_init (&n->out_tracker,
424 GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT,
425 MAX_BANDWIDTH_CARRY_S);
426 GNUNET_assert (GNUNET_OK ==
427 GNUNET_CONTAINER_multihashmap_put (h->neighbours,
428 &n->id.hashPubKey, n,
429 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
435 * Iterator over hash map entries, for deleting state of a neighbour.
437 * @param cls the 'struct GNUNET_TRANSPORT_Handle*'
438 * @param key peer identity
439 * @param value value in the hash map, the neighbour entry to delete
440 * @return GNUNET_YES if we should continue to
445 neighbour_delete (void *cls, const struct GNUNET_HashCode * key, void *value)
447 struct GNUNET_TRANSPORT_Handle *handle = cls;
448 struct Neighbour *n = value;
450 if (NULL != handle->nd_cb)
451 handle->nd_cb (handle->cls, &n->id);
452 GNUNET_assert (NULL == n->th);
453 GNUNET_assert (NULL == n->hn);
454 GNUNET_assert (GNUNET_YES ==
455 GNUNET_CONTAINER_multihashmap_remove (handle->neighbours, key,
463 * Function we use for handling incoming messages.
465 * @param cls closure (struct GNUNET_TRANSPORT_Handle *)
466 * @param msg message received, NULL on timeout or fatal error
469 demultiplexer (void *cls, const struct GNUNET_MessageHeader *msg)
471 struct GNUNET_TRANSPORT_Handle *h = cls;
472 const struct DisconnectInfoMessage *dim;
473 const struct ConnectInfoMessage *cim;
474 const struct InboundMessage *im;
475 const struct GNUNET_MessageHeader *imm;
476 const struct SendOkMessage *okm;
477 const struct QuotaSetMessage *qm;
478 struct GNUNET_TRANSPORT_GetHelloHandle *hwl;
479 struct GNUNET_TRANSPORT_GetHelloHandle *next_hwl;
481 struct GNUNET_PeerIdentity me;
484 uint32_t bytes_physical;
486 GNUNET_assert (h->client != NULL);
489 LOG (GNUNET_ERROR_TYPE_DEBUG,
490 "Error receiving from transport service, disconnecting temporarily.\n");
491 disconnect_and_schedule_reconnect (h);
494 GNUNET_CLIENT_receive (h->client, &demultiplexer, h,
495 GNUNET_TIME_UNIT_FOREVER_REL);
496 size = ntohs (msg->size);
497 switch (ntohs (msg->type))
499 case GNUNET_MESSAGE_TYPE_HELLO:
501 GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *) msg, &me))
506 LOG (GNUNET_ERROR_TYPE_DEBUG,
507 "Receiving (my own) `%s' message, I am `%4s'.\n", "HELLO",
509 GNUNET_free_non_null (h->my_hello);
511 if (size < sizeof (struct GNUNET_MessageHeader))
516 h->my_hello = GNUNET_malloc (size);
517 memcpy (h->my_hello, msg, size);
521 next_hwl = hwl->next;
522 hwl->rec (hwl->rec_cls,
523 (const struct GNUNET_MessageHeader *) h->my_hello);
527 case GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT:
528 if (size < sizeof (struct ConnectInfoMessage))
533 cim = (const struct ConnectInfoMessage *) msg;
535 sizeof (struct ConnectInfoMessage))
540 LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s'.\n",
541 "CONNECT", GNUNET_i2s (&cim->id));
542 n = neighbour_find (h, &cim->id);
548 n = neighbour_add (h, &cim->id);
549 LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s' with quota %u\n",
550 "CONNECT", GNUNET_i2s (&cim->id), ntohl (cim->quota_out.value__));
551 GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker, cim->quota_out);
552 if (h->nc_cb != NULL)
553 h->nc_cb (h->cls, &n->id);
555 case GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT:
556 if (size != sizeof (struct DisconnectInfoMessage))
561 dim = (const struct DisconnectInfoMessage *) msg;
562 GNUNET_break (ntohl (dim->reserved) == 0);
563 LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s'.\n",
564 "DISCONNECT", GNUNET_i2s (&dim->peer));
565 n = neighbour_find (h, &dim->peer);
571 neighbour_delete (h, &dim->peer.hashPubKey, n);
573 case GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_OK:
574 if (size != sizeof (struct SendOkMessage))
579 okm = (const struct SendOkMessage *) msg;
580 bytes_msg = ntohl (okm->bytes_msg);
581 bytes_physical = ntohl (okm->bytes_physical);
582 LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message, transmission %s.\n",
583 "SEND_OK", ntohl (okm->success) == GNUNET_OK ? "succeeded" : "failed");
585 n = neighbour_find (h, &okm->peer);
589 if (bytes_physical >= bytes_msg)
591 LOG (GNUNET_ERROR_TYPE_DEBUG, "Overhead for %u byte message: %u \n",
592 bytes_msg, bytes_physical - bytes_msg);
593 n->traffic_overhead += bytes_physical - bytes_msg;
595 GNUNET_break (GNUNET_NO == n->is_ready);
596 n->is_ready = GNUNET_YES;
597 if ((n->th != NULL) && (n->hn == NULL))
599 GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != n->th->timeout_task);
600 GNUNET_SCHEDULER_cancel (n->th->timeout_task);
601 n->th->timeout_task = GNUNET_SCHEDULER_NO_TASK;
602 /* we've been waiting for this (congestion, not quota,
603 * caused delayed transmission) */
604 n->hn = GNUNET_CONTAINER_heap_insert (h->ready_heap, n, 0);
605 schedule_transmission (h);
608 case GNUNET_MESSAGE_TYPE_TRANSPORT_RECV:
609 LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message.\n", "RECV");
611 sizeof (struct InboundMessage) + sizeof (struct GNUNET_MessageHeader))
616 im = (const struct InboundMessage *) msg;
617 imm = (const struct GNUNET_MessageHeader *) &im[1];
618 if (ntohs (imm->size) + sizeof (struct InboundMessage) != size)
623 LOG (GNUNET_ERROR_TYPE_DEBUG, "Received message of type %u from `%4s'.\n",
624 ntohs (imm->type), GNUNET_i2s (&im->peer));
625 n = neighbour_find (h, &im->peer);
632 h->rec (h->cls, &im->peer, imm);
634 case GNUNET_MESSAGE_TYPE_TRANSPORT_SET_QUOTA:
635 LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message.\n", "SET_QUOTA");
636 if (size != sizeof (struct QuotaSetMessage))
641 qm = (const struct QuotaSetMessage *) msg;
642 n = neighbour_find (h, &qm->peer);
645 LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s' with quota %u\n",
646 "SET_QUOTA", GNUNET_i2s (&qm->peer), ntohl (qm->quota.value__));
647 GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker, qm->quota);
650 LOG (GNUNET_ERROR_TYPE_ERROR,
651 _("Received unexpected message of type %u in %s:%u\n"),
652 ntohs (msg->type), __FILE__, __LINE__);
660 * A transmission request could not be satisfied because of
661 * network congestion. Notify the initiator and clean up.
663 * @param cls the 'struct GNUNET_TRANSPORT_TransmitHandle'
664 * @param tc scheduler context
667 timeout_request_due_to_congestion (void *cls,
668 const struct GNUNET_SCHEDULER_TaskContext
671 struct GNUNET_TRANSPORT_TransmitHandle *th = cls;
672 struct Neighbour *n = th->neighbour;
674 n->th->timeout_task = GNUNET_SCHEDULER_NO_TASK;
675 GNUNET_assert (th == n->th);
676 GNUNET_assert (NULL == n->hn);
678 th->notify (th->notify_cls, 0, NULL);
684 * Transmit message(s) to service.
686 * @param cls handle to transport
687 * @param size number of bytes available in buf
688 * @param buf where to copy the message
689 * @return number of bytes copied to buf
692 transport_notify_ready (void *cls, size_t size, void *buf)
694 struct GNUNET_TRANSPORT_Handle *h = cls;
695 struct GNUNET_TRANSPORT_TransmitHandle *th;
698 struct OutboundMessage obm;
703 GNUNET_assert (NULL != h->client);
707 /* transmission failed */
708 disconnect_and_schedule_reconnect (h);
714 /* first send control messages */
715 while ((NULL != (th = h->control_head)) && (th->notify_size <= size))
717 GNUNET_CONTAINER_DLL_remove (h->control_head, h->control_tail, th);
718 nret = th->notify (th->notify_cls, size, &cbuf[ret]);
719 LOG (GNUNET_ERROR_TYPE_DEBUG, "Added %u bytes of control message at %u\n",
726 /* then, if possible and no control messages pending, send data messages */
727 while ((NULL == h->control_head) &&
728 (NULL != (n = GNUNET_CONTAINER_heap_peek (h->ready_heap))))
730 if (GNUNET_YES != n->is_ready)
732 /* peer not ready, wait for notification! */
733 GNUNET_assert (n == GNUNET_CONTAINER_heap_remove_root (h->ready_heap));
735 GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == n->th->timeout_task);
736 n->th->timeout_task =
737 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
739 &timeout_request_due_to_congestion,
744 if (th->notify_size + sizeof (struct OutboundMessage) > size)
745 break; /* does not fit */
746 if (GNUNET_BANDWIDTH_tracker_get_delay
747 (&n->out_tracker, th->notify_size).rel_value > 0)
748 break; /* too early */
749 GNUNET_assert (n == GNUNET_CONTAINER_heap_remove_root (h->ready_heap));
752 n->is_ready = GNUNET_NO;
753 GNUNET_assert (size >= sizeof (struct OutboundMessage));
755 th->notify (th->notify_cls, size - sizeof (struct OutboundMessage),
756 &cbuf[ret + sizeof (struct OutboundMessage)]);
757 GNUNET_assert (mret <= size - sizeof (struct OutboundMessage));
760 GNUNET_assert (mret + sizeof (struct OutboundMessage) <
761 GNUNET_SERVER_MAX_MESSAGE_SIZE);
762 obm.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SEND);
763 obm.header.size = htons (mret + sizeof (struct OutboundMessage));
764 obm.priority = htonl (th->priority);
766 GNUNET_TIME_relative_hton (GNUNET_TIME_absolute_get_remaining
769 memcpy (&cbuf[ret], &obm, sizeof (struct OutboundMessage));
770 ret += (mret + sizeof (struct OutboundMessage));
771 size -= (mret + sizeof (struct OutboundMessage));
772 GNUNET_BANDWIDTH_tracker_consume (&n->out_tracker, mret);
776 /* if there are more pending messages, try to schedule those */
777 schedule_transmission (h);
778 LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting %u bytes to transport service\n",
785 * Schedule the task to send one message, either from the control
786 * list or the peer message queues to the service.
788 * @param cls transport service to schedule a transmission for
789 * @param tc scheduler context
792 schedule_transmission_task (void *cls,
793 const struct GNUNET_SCHEDULER_TaskContext *tc)
795 struct GNUNET_TRANSPORT_Handle *h = cls;
797 struct GNUNET_TRANSPORT_TransmitHandle *th;
800 h->quota_task = GNUNET_SCHEDULER_NO_TASK;
801 GNUNET_assert (NULL != h->client);
802 /* destroy all requests that have timed out */
803 while ((NULL != (n = GNUNET_CONTAINER_heap_peek (h->ready_heap))) &&
804 (GNUNET_TIME_absolute_get_remaining (n->th->timeout).rel_value == 0))
806 /* notify client that the request could not be satisfied within
807 * the given time constraints */
810 GNUNET_assert (n == GNUNET_CONTAINER_heap_remove_root (h->ready_heap));
812 LOG (GNUNET_ERROR_TYPE_DEBUG,
813 "Signalling timeout for transmission to peer %s due to congestion\n",
814 GNUNET_i2s (&n->id));
815 GNUNET_assert (0 == th->notify (th->notify_cls, 0, NULL));
820 if (NULL != h->control_head)
822 size = h->control_head->notify_size;
826 n = GNUNET_CONTAINER_heap_peek (h->ready_heap);
828 return; /* no pending messages */
829 size = n->th->notify_size + sizeof (struct OutboundMessage);
831 LOG (GNUNET_ERROR_TYPE_DEBUG, "Calling notify_transmit_ready\n");
833 GNUNET_CLIENT_notify_transmit_ready (h->client, size,
834 GNUNET_TIME_UNIT_FOREVER_REL,
835 GNUNET_NO, &transport_notify_ready,
837 GNUNET_assert (NULL != h->cth);
842 * Schedule the task to send one message, either from the control
843 * list or the peer message queues to the service.
845 * @param h transport service to schedule a transmission for
848 schedule_transmission (struct GNUNET_TRANSPORT_Handle *h)
850 struct GNUNET_TIME_Relative delay;
853 GNUNET_assert (NULL != h->client);
854 if (h->quota_task != GNUNET_SCHEDULER_NO_TASK)
856 GNUNET_SCHEDULER_cancel (h->quota_task);
857 h->quota_task = GNUNET_SCHEDULER_NO_TASK;
859 if (NULL != h->control_head)
860 delay = GNUNET_TIME_UNIT_ZERO;
861 else if (NULL != (n = GNUNET_CONTAINER_heap_peek (h->ready_heap)))
864 GNUNET_BANDWIDTH_tracker_get_delay (&n->out_tracker,
865 n->th->notify_size + n->traffic_overhead);
866 n->traffic_overhead = 0;
869 return; /* no work to be done */
870 LOG (GNUNET_ERROR_TYPE_DEBUG,
871 "Scheduling next transmission to service in %llu ms\n",
872 (unsigned long long) delay.rel_value);
874 GNUNET_SCHEDULER_add_delayed (delay, &schedule_transmission_task, h);
879 * Queue control request for transmission to the transport
882 * @param h handle to the transport service
883 * @param size number of bytes to be transmitted
884 * @param notify function to call to get the content
885 * @param notify_cls closure for notify
886 * @return a GNUNET_TRANSPORT_TransmitHandle
888 static struct GNUNET_TRANSPORT_TransmitHandle *
889 schedule_control_transmit (struct GNUNET_TRANSPORT_Handle *h, size_t size,
890 GNUNET_CONNECTION_TransmitReadyNotify notify,
893 struct GNUNET_TRANSPORT_TransmitHandle *th;
895 LOG (GNUNET_ERROR_TYPE_DEBUG, "Control transmit of %u bytes requested\n",
897 th = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_TransmitHandle));
899 th->notify_cls = notify_cls;
900 th->notify_size = size;
901 GNUNET_CONTAINER_DLL_insert_tail (h->control_head, h->control_tail, th);
902 schedule_transmission (h);
908 * Transmit START message to service.
911 * @param size number of bytes available in buf
912 * @param buf where to copy the message
913 * @return number of bytes copied to buf
916 send_start (void *cls, size_t size, void *buf)
918 struct GNUNET_TRANSPORT_Handle *h = cls;
919 struct StartMessage s;
924 /* Can only be shutdown, just give up */
925 LOG (GNUNET_ERROR_TYPE_DEBUG,
926 "Shutdown while trying to transmit `%s' request.\n", "START");
929 LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting `%s' request.\n", "START");
930 GNUNET_assert (size >= sizeof (struct StartMessage));
931 s.header.size = htons (sizeof (struct StartMessage));
932 s.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_START);
938 s.options = htonl (options);
940 memcpy (buf, &s, sizeof (struct StartMessage));
941 GNUNET_CLIENT_receive (h->client, &demultiplexer, h,
942 GNUNET_TIME_UNIT_FOREVER_REL);
943 return sizeof (struct StartMessage);
948 * Try again to connect to transport service.
950 * @param cls the handle to the transport service
951 * @param tc scheduler context
954 reconnect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
956 struct GNUNET_TRANSPORT_Handle *h = cls;
958 h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
959 if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
961 /* shutdown, just give up */
964 LOG (GNUNET_ERROR_TYPE_DEBUG, "Connecting to transport service.\n");
965 GNUNET_assert (h->client == NULL);
966 GNUNET_assert (h->control_head == NULL);
967 GNUNET_assert (h->control_tail == NULL);
968 h->client = GNUNET_CLIENT_connect ("transport", h->cfg);
969 GNUNET_assert (h->client != NULL);
970 schedule_control_transmit (h, sizeof (struct StartMessage), &send_start, h);
975 * Function that will schedule the job that will try
976 * to connect us again to the client.
978 * @param h transport service to reconnect
981 disconnect_and_schedule_reconnect (struct GNUNET_TRANSPORT_Handle *h)
983 struct GNUNET_TRANSPORT_TransmitHandle *th;
985 GNUNET_assert (h->reconnect_task == GNUNET_SCHEDULER_NO_TASK);
988 GNUNET_CLIENT_notify_transmit_ready_cancel (h->cth);
991 if (NULL != h->client)
993 GNUNET_CLIENT_disconnect (h->client);
996 /* Forget about all neighbours that we used to be connected to */
997 GNUNET_CONTAINER_multihashmap_iterate (h->neighbours, &neighbour_delete, h);
998 if (h->quota_task != GNUNET_SCHEDULER_NO_TASK)
1000 GNUNET_SCHEDULER_cancel (h->quota_task);
1001 h->quota_task = GNUNET_SCHEDULER_NO_TASK;
1003 while ((NULL != (th = h->control_head)))
1005 GNUNET_CONTAINER_DLL_remove (h->control_head, h->control_tail, th);
1006 th->notify (th->notify_cls, 0, NULL);
1009 LOG (GNUNET_ERROR_TYPE_DEBUG,
1010 "Scheduling task to reconnect to transport service in %llu ms.\n",
1011 h->reconnect_delay.rel_value);
1013 GNUNET_SCHEDULER_add_delayed (h->reconnect_delay, &reconnect, h);
1014 h->reconnect_delay = GNUNET_TIME_STD_BACKOFF (h->reconnect_delay);
1019 * Cancel control request for transmission to the transport service.
1021 * @param th handle to the transport service
1022 * @param tth transmit handle to cancel
1025 cancel_control_transmit (struct GNUNET_TRANSPORT_Handle *th, struct GNUNET_TRANSPORT_TransmitHandle *tth)
1027 GNUNET_assert (NULL != th);
1028 GNUNET_assert (NULL != tth);
1030 LOG (GNUNET_ERROR_TYPE_DEBUG, "Canceling transmit of contral transmission requested\n");
1032 GNUNET_CONTAINER_DLL_remove (th->control_head, th->control_tail, tth);
1039 * Send REQUEST_CONNECT message to the service.
1041 * @param cls the 'struct GNUNET_PeerIdentity'
1042 * @param size number of bytes available in buf
1043 * @param buf where to copy the message
1044 * @return number of bytes copied to buf
1047 send_try_connect (void *cls, size_t size, void *buf)
1049 struct GNUNET_TRANSPORT_TryConnectHandle *tch = cls;
1050 struct TransportRequestConnectMessage msg;
1054 if (NULL != tch->cb)
1055 tch->cb (tch->cb_cls, GNUNET_SYSERR);
1056 GNUNET_CONTAINER_DLL_remove (tch->th->tc_head, tch->th->tc_tail, tch);
1057 LOG (GNUNET_ERROR_TYPE_DEBUG,
1058 "Discarding `%s' request to `%4s' due to error in transport service connection.\n", "REQUEST_CONNECT",
1059 GNUNET_i2s (&tch->pid));
1063 LOG (GNUNET_ERROR_TYPE_DEBUG,
1064 "Transmitting `%s' request with respect to `%4s'.\n", "REQUEST_CONNECT",
1065 GNUNET_i2s (&tch->pid));
1066 GNUNET_assert (size >= sizeof (struct TransportRequestConnectMessage));
1067 msg.header.size = htons (sizeof (struct TransportRequestConnectMessage));
1068 msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_REQUEST_CONNECT);
1069 msg.reserved = htonl (0);
1070 msg.peer = tch->pid;
1071 memcpy (buf, &msg, sizeof (msg));
1072 if (NULL != tch->cb)
1073 tch->cb (tch->cb_cls, GNUNET_OK);
1074 GNUNET_CONTAINER_DLL_remove (tch->th->tc_head, tch->th->tc_tail, tch);
1076 return sizeof (struct TransportRequestConnectMessage);
1080 * Ask the transport service to establish a connection to
1083 * @param handle connection to transport service
1084 * @param target who we should try to connect to
1085 * @param cb callback to be called when request was transmitted to transport
1087 * @param cb_cls closure for the callback
1088 * @return a GNUNET_TRANSPORT_TryConnectHandle handle or
1089 * NULL on failure (cb will not be called)
1091 struct GNUNET_TRANSPORT_TryConnectHandle *
1092 GNUNET_TRANSPORT_try_connect (struct GNUNET_TRANSPORT_Handle *handle,
1093 const struct GNUNET_PeerIdentity *target,
1094 GNUNET_TRANSPORT_TryConnectCallback cb,
1097 struct GNUNET_TRANSPORT_TryConnectHandle *tch = NULL;
1099 if (NULL == handle->client)
1102 tch = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_TryConnectHandle));
1104 tch->pid = *(target);
1106 tch->cb_cls = cb_cls;
1107 tch->tth = schedule_control_transmit (handle,
1108 sizeof (struct TransportRequestConnectMessage),
1109 &send_try_connect, tch);
1110 GNUNET_CONTAINER_DLL_insert(handle->tc_head, handle->tc_tail, tch);
1116 * Cancel the request to transport to try a connect
1117 * Callback will not be called
1119 * @param tch GNUNET_TRANSPORT_TryConnectHandle handle to cancel
1122 GNUNET_TRANSPORT_try_connect_cancel (struct GNUNET_TRANSPORT_TryConnectHandle *tch)
1124 struct GNUNET_TRANSPORT_Handle *th;
1125 GNUNET_assert (NULL != tch);
1128 cancel_control_transmit (th, tch->tth);
1129 GNUNET_CONTAINER_DLL_remove (th->tc_head, th->tc_tail, tch);
1134 * Send HELLO message to the service.
1136 * @param cls the HELLO message to send
1137 * @param size number of bytes available in buf
1138 * @param buf where to copy the message
1139 * @return number of bytes copied to buf
1142 send_hello (void *cls, size_t size, void *buf)
1144 struct GNUNET_TRANSPORT_OfferHelloHandle *ohh = cls;
1145 struct GNUNET_MessageHeader *msg = ohh->msg;
1147 struct GNUNET_SCHEDULER_TaskContext tc;
1148 tc.read_ready = NULL;
1149 tc.write_ready = NULL;
1150 tc.reason = GNUNET_SCHEDULER_REASON_TIMEOUT;
1154 LOG (GNUNET_ERROR_TYPE_DEBUG,
1155 "Timeout while trying to transmit `%s' request.\n", "HELLO");
1156 if (NULL != ohh->cont)
1157 ohh->cont (ohh->cls, &tc);
1159 GNUNET_CONTAINER_DLL_remove (ohh->th->oh_head, ohh->th->oh_tail, ohh);
1163 LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting `%s' request.\n", "HELLO");
1164 ssize = ntohs (msg->size);
1165 GNUNET_assert (size >= ssize);
1166 memcpy (buf, msg, ssize);
1168 tc.reason = GNUNET_SCHEDULER_REASON_READ_READY;
1169 if (NULL != ohh->cont)
1170 ohh->cont (ohh->cls, &tc);
1171 GNUNET_CONTAINER_DLL_remove (ohh->th->oh_head, ohh->th->oh_tail, ohh);
1178 * Send traffic metric message to the service.
1180 * @param cls the message to send
1181 * @param size number of bytes available in buf
1182 * @param buf where to copy the message
1183 * @return number of bytes copied to buf
1186 send_metric (void *cls, size_t size, void *buf)
1188 struct TrafficMetricMessage *msg = cls;
1192 LOG (GNUNET_ERROR_TYPE_DEBUG,
1193 "Timeout while trying to transmit `%s' request.\n", "TRAFFIC_METRIC");
1197 LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting `%s' request.\n", "TRAFFIC_METRIC");
1198 ssize = ntohs (msg->header.size);
1199 GNUNET_assert (size >= ssize);
1200 memcpy (buf, msg, ssize);
1207 * Set transport metrics for a peer and a direction
1209 * @param handle transport handle
1210 * @param peer the peer to set the metric for
1211 * @param inbound set inbound direction (GNUNET_YES or GNUNET_NO)
1212 * @param outbound set outbound direction (GNUNET_YES or GNUNET_NO)
1213 * @param ats the metric as ATS information
1214 * @param ats_count the number of metrics
1216 * Supported ATS values:
1217 * GNUNET_ATS_QUALITY_NET_DELAY (value in ms)
1218 * GNUNET_ATS_QUALITY_NET_DISTANCE (value in count(hops))
1221 * To enforce a delay of 10 ms for peer p1 in sending direction use:
1223 * struct GNUNET_ATS_Information ats;
1224 * ats.type = ntohl (GNUNET_ATS_QUALITY_NET_DELAY);
1225 * ats.value = ntohl (10);
1226 * GNUNET_TRANSPORT_set_traffic_metric (th, p1, TM_SEND, &ats, 1);
1229 * Delay restrictions in receiving direction will be enforced with
1233 GNUNET_TRANSPORT_set_traffic_metric (struct GNUNET_TRANSPORT_Handle *handle,
1234 const struct GNUNET_PeerIdentity *peer,
1237 const struct GNUNET_ATS_Information *ats,
1240 struct TrafficMetricMessage *msg;
1242 GNUNET_assert (NULL != handle);
1243 GNUNET_assert (NULL != peer);
1244 GNUNET_assert ((outbound == GNUNET_YES) || (outbound == GNUNET_NO));
1245 GNUNET_assert ((inbound == GNUNET_YES) || (inbound == GNUNET_NO));
1247 if ((GNUNET_NO == inbound) && (GNUNET_NO == outbound))
1252 size_t len = sizeof (struct TrafficMetricMessage) +
1253 ats_count * sizeof (struct GNUNET_ATS_Information);
1255 msg = GNUNET_malloc (len);
1256 msg->header.size = htons (len);
1257 msg->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_TRAFFIC_METRIC);
1258 msg->direction = htons (0 + outbound + 2 * inbound);
1259 msg->ats_count = htons (ats_count);
1260 msg->peer = (*peer);
1261 memcpy (&msg[1], ats, ats_count * sizeof (struct GNUNET_ATS_Information));
1262 schedule_control_transmit (handle, len, &send_metric, msg);
1268 * Offer the transport service the HELLO of another peer. Note that
1269 * the transport service may just ignore this message if the HELLO is
1270 * malformed or useless due to our local configuration.
1272 * @param handle connection to transport service
1273 * @param hello the hello message
1274 * @param cont continuation to call when HELLO has been sent,
1275 * tc reason GNUNET_SCHEDULER_REASON_TIMEOUT for fail
1276 * tc reasong GNUNET_SCHEDULER_REASON_READ_READY for success
1277 * @param cls closure for continuation
1278 * @return a GNUNET_TRANSPORT_OfferHelloHandle handle or NULL on failure,
1279 * in case of failure cont will not be called
1282 struct GNUNET_TRANSPORT_OfferHelloHandle *
1283 GNUNET_TRANSPORT_offer_hello (struct GNUNET_TRANSPORT_Handle *handle,
1284 const struct GNUNET_MessageHeader *hello,
1285 GNUNET_SCHEDULER_Task cont, void *cls)
1287 struct GNUNET_TRANSPORT_OfferHelloHandle *ohh;
1288 struct GNUNET_MessageHeader *msg;
1289 struct GNUNET_PeerIdentity peer;
1292 GNUNET_assert (NULL != handle);
1293 GNUNET_assert (NULL != hello);
1295 if (NULL == handle->client)
1298 GNUNET_break (ntohs (hello->type) == GNUNET_MESSAGE_TYPE_HELLO);
1299 size = ntohs (hello->size);
1300 GNUNET_break (size >= sizeof (struct GNUNET_MessageHeader));
1302 GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *) hello, &peer))
1308 msg = GNUNET_malloc (size);
1309 memcpy (msg, hello, size);
1310 LOG (GNUNET_ERROR_TYPE_DEBUG,
1311 "Offering `%s' message of `%4s' to transport for validation.\n", "HELLO",
1312 GNUNET_i2s (&peer));
1314 ohh = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_OfferHelloHandle));
1319 ohh->tth = schedule_control_transmit (handle, size, &send_hello, ohh);
1320 GNUNET_CONTAINER_DLL_insert (handle->oh_head, handle->oh_tail, ohh);
1326 * Cancel the request to transport to offer the HELLO message
1328 * @param ohh the GNUNET_TRANSPORT_OfferHelloHandle to cancel
1331 GNUNET_TRANSPORT_offer_hello_cancel (struct GNUNET_TRANSPORT_OfferHelloHandle *ohh)
1333 struct GNUNET_TRANSPORT_Handle *th = ohh->th;
1334 GNUNET_assert (NULL != ohh);
1336 cancel_control_transmit (ohh->th, ohh->tth);
1337 GNUNET_CONTAINER_DLL_remove (th->oh_head, th->oh_tail, ohh);
1338 GNUNET_free (ohh->msg);
1343 GNUNET_TRANSPORT_check_neighbour_connected (struct GNUNET_TRANSPORT_Handle *handle,
1344 const struct GNUNET_PeerIdentity *peer)
1346 GNUNET_assert (NULL != handle);
1347 GNUNET_assert (NULL != peer);
1349 if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains(handle->neighbours, &peer->hashPubKey))
1357 * Task to call the HelloUpdateCallback of the GetHelloHandle
1359 * @param cls the GetHelloHandle
1360 * @param tc the scheduler task context
1363 call_hello_update_cb_async (void *cls,
1364 const struct GNUNET_SCHEDULER_TaskContext *tc)
1366 struct GNUNET_TRANSPORT_GetHelloHandle *ghh = cls;
1368 GNUNET_assert (NULL != ghh->handle->my_hello);
1369 GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != ghh->notify_task);
1370 ghh->notify_task = GNUNET_SCHEDULER_NO_TASK;
1371 ghh->rec (ghh->rec_cls,
1372 (const struct GNUNET_MessageHeader *) ghh->handle->my_hello);
1377 * Obtain the HELLO message for this peer. The callback given in this function
1378 * is never called synchronously.
1380 * @param handle connection to transport service
1381 * @param rec function to call with the HELLO, sender will be our peer
1382 * identity; message and sender will be NULL on timeout
1383 * (handshake with transport service pending/failed).
1384 * cost estimate will be 0.
1385 * @param rec_cls closure for rec
1386 * @return handle to cancel the operation
1388 struct GNUNET_TRANSPORT_GetHelloHandle *
1389 GNUNET_TRANSPORT_get_hello (struct GNUNET_TRANSPORT_Handle *handle,
1390 GNUNET_TRANSPORT_HelloUpdateCallback rec,
1393 struct GNUNET_TRANSPORT_GetHelloHandle *hwl;
1395 hwl = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_GetHelloHandle));
1397 hwl->rec_cls = rec_cls;
1398 hwl->handle = handle;
1399 GNUNET_CONTAINER_DLL_insert (handle->hwl_head, handle->hwl_tail, hwl);
1400 if (handle->my_hello != NULL)
1401 hwl->notify_task = GNUNET_SCHEDULER_add_now (&call_hello_update_cb_async,
1408 * Stop receiving updates about changes to our HELLO message.
1410 * @param ghh handle to cancel
1413 GNUNET_TRANSPORT_get_hello_cancel (struct GNUNET_TRANSPORT_GetHelloHandle *ghh)
1415 struct GNUNET_TRANSPORT_Handle *handle = ghh->handle;
1417 if (GNUNET_SCHEDULER_NO_TASK != ghh->notify_task)
1418 GNUNET_SCHEDULER_cancel (ghh->notify_task);
1419 GNUNET_CONTAINER_DLL_remove (handle->hwl_head, handle->hwl_tail, ghh);
1425 * Connect to the transport service. Note that the connection may
1426 * complete (or fail) asynchronously.
1428 * @param cfg configuration to use
1429 * @param self our own identity (API should check that it matches
1430 * the identity found by transport), or NULL (no check)
1431 * @param cls closure for the callbacks
1432 * @param rec receive function to call
1433 * @param nc function to call on connect events
1434 * @param nd function to call on disconnect events
1436 struct GNUNET_TRANSPORT_Handle *
1437 GNUNET_TRANSPORT_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
1438 const struct GNUNET_PeerIdentity *self, void *cls,
1439 GNUNET_TRANSPORT_ReceiveCallback rec,
1440 GNUNET_TRANSPORT_NotifyConnect nc,
1441 GNUNET_TRANSPORT_NotifyDisconnect nd)
1443 struct GNUNET_TRANSPORT_Handle *ret;
1445 ret = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_Handle));
1449 ret->check_self = GNUNET_YES;
1456 ret->reconnect_delay = GNUNET_TIME_UNIT_ZERO;
1458 GNUNET_CONTAINER_multihashmap_create (STARTING_NEIGHBOURS_SIZE, GNUNET_YES);
1460 GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
1461 LOG (GNUNET_ERROR_TYPE_DEBUG, "Connecting to transport service.\n");
1462 ret->client = GNUNET_CLIENT_connect ("transport", cfg);
1463 if (ret->client == NULL)
1468 schedule_control_transmit (ret, sizeof (struct StartMessage), &send_start, ret);
1474 * Disconnect from the transport service.
1476 * @param handle handle to the service as returned from GNUNET_TRANSPORT_connect
1479 GNUNET_TRANSPORT_disconnect (struct GNUNET_TRANSPORT_Handle *handle)
1481 LOG (GNUNET_ERROR_TYPE_DEBUG, "Transport disconnect called!\n");
1482 /* this disconnects all neighbours... */
1483 if (handle->reconnect_task == GNUNET_SCHEDULER_NO_TASK)
1484 disconnect_and_schedule_reconnect (handle);
1485 /* and now we stop trying to connect again... */
1486 if (handle->reconnect_task != GNUNET_SCHEDULER_NO_TASK)
1488 GNUNET_SCHEDULER_cancel (handle->reconnect_task);
1489 handle->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1491 GNUNET_CONTAINER_multihashmap_destroy (handle->neighbours);
1492 handle->neighbours = NULL;
1493 if (handle->quota_task != GNUNET_SCHEDULER_NO_TASK)
1495 GNUNET_SCHEDULER_cancel (handle->quota_task);
1496 handle->quota_task = GNUNET_SCHEDULER_NO_TASK;
1498 GNUNET_free_non_null (handle->my_hello);
1499 handle->my_hello = NULL;
1500 GNUNET_assert (handle->tc_head == NULL);
1501 GNUNET_assert (handle->tc_tail == NULL);
1502 GNUNET_assert (handle->hwl_head == NULL);
1503 GNUNET_assert (handle->hwl_tail == NULL);
1504 GNUNET_CONTAINER_heap_destroy (handle->ready_heap);
1505 handle->ready_heap = NULL;
1506 GNUNET_free (handle);
1511 * Check if we could queue a message of the given size for
1512 * transmission. The transport service will take both its
1513 * internal buffers and bandwidth limits imposed by the
1514 * other peer into consideration when answering this query.
1516 * @param handle connection to transport service
1517 * @param target who should receive the message
1518 * @param size how big is the message we want to transmit?
1519 * @param priority how important is the message?
1520 * @param timeout after how long should we give up (and call
1521 * notify with buf NULL and size 0)?
1522 * @param notify function to call when we are ready to
1523 * send such a message
1524 * @param notify_cls closure for notify
1525 * @return NULL if someone else is already waiting to be notified
1526 * non-NULL if the notify callback was queued (can be used to cancel
1527 * using GNUNET_TRANSPORT_notify_transmit_ready_cancel)
1529 struct GNUNET_TRANSPORT_TransmitHandle *
1530 GNUNET_TRANSPORT_notify_transmit_ready (struct GNUNET_TRANSPORT_Handle *handle,
1531 const struct GNUNET_PeerIdentity
1532 *target, size_t size, uint32_t priority,
1533 struct GNUNET_TIME_Relative timeout,
1534 GNUNET_CONNECTION_TransmitReadyNotify
1535 notify, void *notify_cls)
1537 struct Neighbour *n;
1538 struct GNUNET_TRANSPORT_TransmitHandle *th;
1539 struct GNUNET_TIME_Relative delay;
1541 n = neighbour_find (handle, target);
1544 /* use GNUNET_TRANSPORT_try_connect first, only use this function
1545 * once a connection has been established */
1551 /* attempt to send two messages at the same time to the same peer */
1555 GNUNET_assert (NULL == n->hn);
1556 th = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_TransmitHandle));
1558 th->notify = notify;
1559 th->notify_cls = notify_cls;
1560 th->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1561 th->notify_size = size;
1562 th->priority = priority;
1564 /* calculate when our transmission should be ready */
1565 delay = GNUNET_BANDWIDTH_tracker_get_delay (&n->out_tracker, size + n->traffic_overhead);
1566 n->traffic_overhead = 0;
1567 if (delay.rel_value > timeout.rel_value)
1568 delay.rel_value = 0; /* notify immediately (with failure) */
1569 LOG (GNUNET_ERROR_TYPE_DEBUG,
1570 "Bandwidth tracker allows next transmission to peer %s in %llu ms\n",
1571 GNUNET_i2s (target), (unsigned long long) delay.rel_value);
1572 n->hn = GNUNET_CONTAINER_heap_insert (handle->ready_heap, n, delay.rel_value);
1573 schedule_transmission (handle);
1579 * Cancel the specified transmission-ready notification.
1581 * @param th handle returned from GNUNET_TRANSPORT_notify_transmit_ready
1584 GNUNET_TRANSPORT_notify_transmit_ready_cancel (struct
1585 GNUNET_TRANSPORT_TransmitHandle
1588 struct Neighbour *n;
1590 GNUNET_assert (NULL == th->next);
1591 GNUNET_assert (NULL == th->prev);
1593 GNUNET_assert (th == n->th);
1597 GNUNET_CONTAINER_heap_remove_node (n->hn);
1602 GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != th->timeout_task);
1603 GNUNET_SCHEDULER_cancel (th->timeout_task);
1604 th->timeout_task = GNUNET_SCHEDULER_NO_TASK;
1610 /* end of transport_api.c */