aboutsummaryrefslogtreecommitdiff
path: root/src/ats
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2020-07-07 11:36:46 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-07-07 11:36:46 +0200
commit8d0c55ce57abc11431ba8285d731f1f11c3f8592 (patch)
treebd3cc08dc902c528b153f7c261b70bb71312edc2 /src/ats
parente4a1ec5a6a192f81b8d8ca51822b35f06a87bf6d (diff)
downloadgnunet-8d0c55ce57abc11431ba8285d731f1f11c3f8592.tar.gz
gnunet-8d0c55ce57abc11431ba8285d731f1f11c3f8592.zip
-fix: increase quotas due to increased min value fix
Diffstat (limited to 'src/ats')
-rw-r--r--src/ats/plugin_ats_proportional.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ats/plugin_ats_proportional.c b/src/ats/plugin_ats_proportional.c
index f554291b6..52476c825 100644
--- a/src/ats/plugin_ats_proportional.c
+++ b/src/ats/plugin_ats_proportional.c
@@ -218,6 +218,8 @@ is_bandwidth_available_in_network (struct Network *net,
218 if (((net->total_quota_in / na) > min_bw) && 218 if (((net->total_quota_in / na) > min_bw) &&
219 ((net->total_quota_out / na) > min_bw)) 219 ((net->total_quota_out / na) > min_bw))
220 return GNUNET_YES; 220 return GNUNET_YES;
221 LOG (GNUNET_ERROR_TYPE_DEBUG,
222 "No bandwidth available in network\n");
221 return GNUNET_NO; 223 return GNUNET_NO;
222} 224}
223 225