- Stop servers from crashing if they set a Family option (or
maybe in other situations too). Bugfix on 0.2.0.9-alpha; reported
by Fabian Keil.
+ - When the clock jumps forward a lot, do not allow the bandwidth
+ buckets to become negative. Bugfix on 0.1.2.x; fixes Bug 544.
o Major bugfixes (v3 dir, bugfixes on 0.2.0.9-alpha):
- Consider replacing the current consensus when certificates arrive
}
}
+/** DOCDOC */
static void
connection_bucket_refill_helper(int *bucket, int rate, int burst,
int seconds_elapsed, const char *name)
{
- if (*bucket < burst) {
- *bucket += rate*seconds_elapsed;
- if (*bucket > burst)
+ int starting_bucket = *bucket;
+ if (starting_bucket < burst) {
+ int incr = rate*seconds_elapsed;
+ *bucket += incr;
+ if (*bucket > burst || *bucket < starting_bucket) {
+ /* If we overflow the burst, or underflow our starting bucket,
+ * cap the bucket value to burst. */
*bucket = burst;
+ }
log(LOG_DEBUG, LD_NET,"%s now %d.", name, *bucket);
}
}