aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2011-10-13 13:27:06 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2011-10-13 13:27:06 +0000
commit04dd4108f7026aa5b09d0c971d13e7c08ed0a9fa (patch)
treeda19675aaf59068f1106c06a5d31f6d0c1ebdfe3 /src/transport/gnunet-service-transport.c
parent64f914d56ad114eb4bd0d076ca9b28ce64c67839 (diff)
downloadgnunet-04dd4108f7026aa5b09d0c971d13e7c08ed0a9fa.tar.gz
gnunet-04dd4108f7026aa5b09d0c971d13e7c08ed0a9fa.zip
Diffstat (limited to 'src/transport/gnunet-service-transport.c')
-rw-r--r--src/transport/gnunet-service-transport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/gnunet-service-transport.c b/src/transport/gnunet-service-transport.c
index e551cbf49..4ce6b4321 100644
--- a/src/transport/gnunet-service-transport.c
+++ b/src/transport/gnunet-service-transport.c
@@ -340,7 +340,7 @@ ats_request_address_change (void *cls, const struct GNUNET_PeerIdentity *peer,
340 340
341#if DEBUG_TRANSPORT 341#if DEBUG_TRANSPORT
342 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending outbound quota of %u Bps for peer `%s' to all clients\n", 342 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending outbound quota of %u Bps for peer `%s' to all clients\n",
343 ntohl (bandwidth_out.value__), GNUNET_i2s (target)); 343 ntohl (bandwidth_out.value__), GNUNET_i2s (peer));
344#endif 344#endif
345 struct QuotaSetMessage msg; 345 struct QuotaSetMessage msg;
346 msg.header.size = htons (sizeof (struct QuotaSetMessage)); 346 msg.header.size = htons (sizeof (struct QuotaSetMessage));
@@ -351,7 +351,7 @@ ats_request_address_change (void *cls, const struct GNUNET_PeerIdentity *peer,
351 351
352#if DEBUG_TRANSPORT 352#if DEBUG_TRANSPORT
353 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting inbound quota of %u for peer `%s' to \n", 353 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting inbound quota of %u for peer `%s' to \n",
354 ntohl (bandwidth_in.value__), GNUNET_i2s (target)); 354 ntohl (bandwidth_in.value__), GNUNET_i2s (peer));
355#endif 355#endif
356 GST_neighbours_set_incoming_quota (peer, bandwidth_in); 356 GST_neighbours_set_incoming_quota (peer, bandwidth_in);
357} 357}