aboutsummaryrefslogtreecommitdiff
path: root/src/transport/test_quota_compliance.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/test_quota_compliance.c')
-rw-r--r--src/transport/test_quota_compliance.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transport/test_quota_compliance.c b/src/transport/test_quota_compliance.c
index 211e64e32..3ea5706d1 100644
--- a/src/transport/test_quota_compliance.c
+++ b/src/transport/test_quota_compliance.c
@@ -68,12 +68,12 @@ report ()
68 68
69 delta = GNUNET_TIME_absolute_get_duration (start_time).rel_value_us; 69 delta = GNUNET_TIME_absolute_get_duration (start_time).rel_value_us;
70 datarate = (total_bytes_recv * 1000 * 1000) / delta; 70 datarate = (total_bytes_recv * 1000 * 1000) / delta;
71 71
72 FPRINTF (stderr, 72 FPRINTF (stderr,
73 "Throughput was %llu b/s\n", 73 "Throughput was %llu b/s\n",
74 datarate); 74 datarate);
75 ccc->global_ret = GNUNET_OK; 75 ccc->global_ret = GNUNET_OK;
76 if (datarate > 1.1 * quota_in[1]) 76 if (datarate > 1.5 * quota_in[1])
77 { 77 {
78 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 78 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
79 "Datarate of %llu b/s significantly higher than allowed inbound quota of %llu b/s\n", 79 "Datarate of %llu b/s significantly higher than allowed inbound quota of %llu b/s\n",
@@ -81,7 +81,7 @@ report ()
81 quota_in[1]); 81 quota_in[1]);
82 ccc->global_ret = GNUNET_SYSERR; 82 ccc->global_ret = GNUNET_SYSERR;
83 } 83 }
84 if (datarate > 1.1 * quota_out[0]) 84 if (datarate > 1.5 * quota_out[0])
85 { 85 {
86 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 86 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
87 "Datarate of %llu b/s significantly higher than allowed outbound quota of %llu b/s\n", 87 "Datarate of %llu b/s significantly higher than allowed outbound quota of %llu b/s\n",