aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-service-core.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/gnunet-service-core.c')
-rw-r--r--src/core/gnunet-service-core.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/gnunet-service-core.c b/src/core/gnunet-service-core.c
index 2fbb4ca05..44df8a867 100644
--- a/src/core/gnunet-service-core.c
+++ b/src/core/gnunet-service-core.c
@@ -1606,6 +1606,8 @@ send_connect_continuation (void *cls, size_t size, void *buf)
1606 "Asked to send message to disconnected peer `%4s' and connection failed. Discarding message.\n", 1606 "Asked to send message to disconnected peer `%4s' and connection failed. Discarding message.\n",
1607 GNUNET_i2s (&sm->peer)); 1607 GNUNET_i2s (&sm->peer));
1608 GNUNET_free (sm); 1608 GNUNET_free (sm);
1609 /* FIXME: do we need to do something here to let the
1610 client know about the failure!? */
1609 return 0; 1611 return 0;
1610 } 1612 }
1611 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 1613 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
@@ -1659,8 +1661,9 @@ handle_client_send (void *cls,
1659 if (n == NULL) 1661 if (n == NULL)
1660 { 1662 {
1661 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 1663 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1662 "Not yet connected to `%4s', will try to establish connection\n", 1664 "Not yet connected to `%4s', will try to establish connection within %llu ms\n",
1663 GNUNET_i2s (&sm->peer)); 1665 GNUNET_i2s (&sm->peer),
1666 sm->deadline.value);
1664 msize += sizeof (struct SendMessage); 1667 msize += sizeof (struct SendMessage);
1665 /* ask transport to connect to the peer */ 1668 /* ask transport to connect to the peer */
1666 /* FIXME: this code does not handle the 1669 /* FIXME: this code does not handle the