summaryrefslogtreecommitdiff
path: root/src/ats/plugin_ats_proportional.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-01-25 21:14:37 +0000
committerChristian Grothoff <christian@grothoff.org>2015-01-25 21:14:37 +0000
commit896e28ee7d8aee5fb15c905eef18a6f73e844d7f (patch)
tree95e48ba3293a1f0c1b8ebc4eede2fd3415d5622d /src/ats/plugin_ats_proportional.c
parente42d7009eba71665bd5fb6b0c1decd9a0cddcb0e (diff)
downloadgnunet-896e28ee7d8aee5fb15c905eef18a6f73e844d7f.tar.gz
gnunet-896e28ee7d8aee5fb15c905eef18a6f73e844d7f.zip
-address dying doesn't depend on bandwidth suggestion of ATS, just on in_destroy flag
Diffstat (limited to 'src/ats/plugin_ats_proportional.c')
-rw-r--r--src/ats/plugin_ats_proportional.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/ats/plugin_ats_proportional.c b/src/ats/plugin_ats_proportional.c
index 99cbb1b55..874741a2b 100644
--- a/src/ats/plugin_ats_proportional.c
+++ b/src/ats/plugin_ats_proportional.c
@@ -587,17 +587,19 @@ distribute_bandwidth (struct GAS_PROPORTIONAL_Handle *s,
587 if (count_addresses != net->active_addresses) 587 if (count_addresses != net->active_addresses)
588 { 588 {
589 GNUNET_break (0); 589 GNUNET_break (0);
590 LOG(GNUNET_ERROR_TYPE_WARNING, 590 LOG (GNUNET_ERROR_TYPE_WARNING,
591 "%s: Counted %u active addresses, but network says to have %u active addresses \n", 591 "%s: Counted %u active addresses, but network says to have %u active addresses\n",
592 net->desc, count_addresses, net->active_addresses); 592 net->desc, count_addresses, net->active_addresses);
593 for (cur_address = net->head; NULL != cur_address; cur_address = cur_address->next) 593 for (cur_address = net->head; NULL != cur_address; cur_address = cur_address->next)
594 { 594 {
595 if (GNUNET_YES != cur_address->addr->active) 595 if (GNUNET_YES != cur_address->addr->active)
596 continue; 596 continue;
597 597
598 LOG (GNUNET_ERROR_TYPE_WARNING, "Active: `%s' `%s' length %u\n", 598 LOG (GNUNET_ERROR_TYPE_WARNING,
599 GNUNET_i2s (&cur_address->addr->peer), cur_address->addr->plugin, 599 "Active: `%s' `%s' length %u\n",
600 cur_address->addr->addr_len); 600 GNUNET_i2s (&cur_address->addr->peer),
601 cur_address->addr->plugin,
602 cur_address->addr->addr_len);
601 } 603 }
602 } 604 }
603 605