aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport_api.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-07-06 15:29:24 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-07-06 15:29:24 +0000
commitddb09c4360b6548ea7f7f5bfa78c565d5955fe6b (patch)
treea7de43a3aec728e8e750b6603167a23794c07a56 /src/transport/transport_api.c
parentc13e56a4ab2d1b1847f95fdf134bc0f25dfb7d52 (diff)
downloadgnunet-ddb09c4360b6548ea7f7f5bfa78c565d5955fe6b.tar.gz
gnunet-ddb09c4360b6548ea7f7f5bfa78c565d5955fe6b.zip
undo
Diffstat (limited to 'src/transport/transport_api.c')
-rw-r--r--src/transport/transport_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/transport_api.c b/src/transport/transport_api.c
index 960844f97..7d57d3eb1 100644
--- a/src/transport/transport_api.c
+++ b/src/transport/transport_api.c
@@ -477,7 +477,7 @@ demultiplexer (void *cls, const struct GNUNET_MessageHeader *msg)
477 break; 477 break;
478 } 478 }
479 n = neighbour_add (h, &cim->id); 479 n = neighbour_add (h, &cim->id);
480 LOG (GNUNET_ERROR_TYPE_ERROR, "Receiving `%s' message for `%4s' with quota %u\n", 480 LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s' with quota %u\n",
481 "CONNECT", GNUNET_i2s (&cim->id), ntohl (cim->quota_out.value__)); 481 "CONNECT", GNUNET_i2s (&cim->id), ntohl (cim->quota_out.value__));
482 GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker, cim->quota_out); 482 GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker, cim->quota_out);
483 if (h->nc_cb != NULL) 483 if (h->nc_cb != NULL)
@@ -566,7 +566,7 @@ demultiplexer (void *cls, const struct GNUNET_MessageHeader *msg)
566 n = neighbour_find (h, &qm->peer); 566 n = neighbour_find (h, &qm->peer);
567 if (n == NULL) 567 if (n == NULL)
568 break; 568 break;
569 LOG (GNUNET_ERROR_TYPE_ERROR, "Receiving `%s' message for `%4s' with quota %u\n", 569 LOG (GNUNET_ERROR_TYPE_DEBUG, "Receiving `%s' message for `%4s' with quota %u\n",
570 "SET_QUOTA", GNUNET_i2s (&qm->peer), ntohl (qm->quota.value__)); 570 "SET_QUOTA", GNUNET_i2s (&qm->peer), ntohl (qm->quota.value__));
571 GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker, qm->quota); 571 GNUNET_BANDWIDTH_tracker_update_quota (&n->out_tracker, qm->quota);
572 break; 572 break;