aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-10 13:11:45 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-10 13:11:45 +0000
commit5719a1bebd211869fe6d11824eee731c82b019d7 (patch)
treef439a5ae2c18ee977f33ab79992c1eacb89bf61e /src/transport
parent55bd3dd2d67284afbe769179fdbe96ef10856b22 (diff)
downloadgnunet-5719a1bebd211869fe6d11824eee731c82b019d7.tar.gz
gnunet-5719a1bebd211869fe6d11824eee731c82b019d7.zip
fix
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/gnunet-service-transport_neighbours.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/gnunet-service-transport_neighbours.c b/src/transport/gnunet-service-transport_neighbours.c
index 0957a0ce1..367ea5571 100644
--- a/src/transport/gnunet-service-transport_neighbours.c
+++ b/src/transport/gnunet-service-transport_neighbours.c
@@ -735,7 +735,7 @@ try_connect_using_address (void *cls, const struct GNUNET_PeerIdentity *target,
735 /* ATS told us inbound quota for this peer */ 735 /* ATS told us inbound quota for this peer */
736#if DEBUG_TRANSPORT 736#if DEBUG_TRANSPORT
737 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting inbound quota of %u for peer `%s' to \n", 737 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting inbound quota of %u for peer `%s' to \n",
738 ntohl (bandwidth_in), GNUNET_i2s (target)); 738 ntohl (bandwidth_in.value__), GNUNET_i2s (target));
739#endif 739#endif
740 GST_neighbours_set_incoming_quota (&n->id, bandwidth_in); 740 GST_neighbours_set_incoming_quota (&n->id, bandwidth_in);
741 741
@@ -748,7 +748,7 @@ try_connect_using_address (void *cls, const struct GNUNET_PeerIdentity *target,
748 /* ... then send outbound quota for this peer to all clients */ 748 /* ... then send outbound quota for this peer to all clients */
749#if DEBUG_TRANSPORT 749#if DEBUG_TRANSPORT
750 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending outbound quota of %u Bps for peer `%s' to all clients\n", 750 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending outbound quota of %u Bps for peer `%s' to all clients\n",
751 ntohl (bandwidth_out), GNUNET_i2s (target)); 751 ntohl (bandwidth_out.value__), GNUNET_i2s (target));
752#endif 752#endif
753 753
754 struct QuotaSetMessage msg; 754 struct QuotaSetMessage msg;