aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport_api2_communication.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/transport_api2_communication.c')
-rw-r--r--src/transport/transport_api2_communication.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/transport/transport_api2_communication.c b/src/transport/transport_api2_communication.c
index 3811f463f..35ef039da 100644
--- a/src/transport/transport_api2_communication.c
+++ b/src/transport/transport_api2_communication.c
@@ -546,7 +546,8 @@ handle_incoming_ack (
546 sizeof(struct GNUNET_PeerIdentity)))) 546 sizeof(struct GNUNET_PeerIdentity))))
547 { 547 {
548 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 548 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
549 "Done with message with flow control id %lu for sender %s from sender %s\n", 549 "Done with message with flow control id %" PRIu64
550 " for sender %s from sender %s\n",
550 incoming_ack->fc_id, 551 incoming_ack->fc_id,
551 GNUNET_i2s (&fc->sender), 552 GNUNET_i2s (&fc->sender),
552 GNUNET_i2s (&incoming_ack->sender)); 553 GNUNET_i2s (&incoming_ack->sender));
@@ -557,7 +558,8 @@ handle_incoming_ack (
557 } 558 }
558 } 559 }
559 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 560 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
560 "Message with flow control id %lu from sender %s not found\n", 561 "Message with flow control id %" PRIu64
562 " from sender %s not found\n",
561 incoming_ack->fc_id, 563 incoming_ack->fc_id,
562 GNUNET_i2s (&incoming_ack->sender)); 564 GNUNET_i2s (&incoming_ack->sender));
563 GNUNET_break (0); 565 GNUNET_break (0);
@@ -928,7 +930,7 @@ GNUNET_TRANSPORT_communicator_receive (
928 fc->cb_cls = cb_cls; 930 fc->cb_cls = cb_cls;
929 GNUNET_CONTAINER_DLL_insert (ch->fc_head, ch->fc_tail, fc); 931 GNUNET_CONTAINER_DLL_insert (ch->fc_head, ch->fc_tail, fc);
930 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 932 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
931 "Created flow control id %lu for sender %s\n", 933 "Created flow control id %" PRIu64 " for sender %s\n",
932 fc->id, 934 fc->id,
933 GNUNET_i2s (&fc->sender)); 935 GNUNET_i2s (&fc->sender));
934 } 936 }
@@ -1043,6 +1045,7 @@ GNUNET_TRANSPORT_communicator_address_add (
1043 return ai; 1045 return ai;
1044} 1046}
1045 1047
1048
1046/** 1049/**
1047 * Notify transport service about an address that this communicator no 1050 * Notify transport service about an address that this communicator no
1048 * longer provides for this peer. 1051 * longer provides for this peer.
@@ -1062,6 +1065,7 @@ GNUNET_TRANSPORT_communicator_address_remove (
1062 ai = NULL; 1065 ai = NULL;
1063} 1066}
1064 1067
1068
1065/** 1069/**
1066 * Notify transport service that this communicator no longer provides all its addresses for this peer. 1070 * Notify transport service that this communicator no longer provides all its addresses for this peer.
1067 * 1071 *