{
struct GNUNET_CORE_TransmitHandle *th = cls;
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
- "Transmission request timed out.\n");
th->timeout_task = GNUNET_SCHEDULER_NO_TASK;
GNUNET_assert (0 == th->get_message (th->get_message_cls, 0, NULL));
}
struct GNUNET_CORE_Handle *h = cls;
struct GNUNET_CORE_TransmitHandle *th;
size_t ret;
-#if DEBUG_CORE
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
- "request_start called\n");
-#endif
+
h->th = NULL;
th = h->pending_head;
if (buf == NULL)
notify_transport_connect_done (void *cls, size_t size, void *buf)
{
struct Neighbour *n = cls;
- struct GNUNET_MessageHeader hdr;
-
n->th = NULL;
- hdr.type = htons (GNUNET_MESSAGE_TYPE_TOPOLOGY_DUMMY);
- hdr.size = htons (sizeof(hdr));
- memcpy (buf, &hdr, sizeof (hdr));
- return sizeof (hdr);
+ send_key (n);
+ return 0;
}