2004-10-04 jrandom

* Update the shitlist to reject a peer for an exponentially increasing
      period of time (with an upper bounds of an hour).
    * Various minor stat and debugging fixes
This commit is contained in:
jrandom
2004-10-04 17:30:22 +00:00
committed by zzz
parent d092dd79ba
commit de1b4937a1
9 changed files with 50 additions and 10 deletions

View File

@ -68,7 +68,7 @@ public class BufferedStatLog implements StatLog {
private boolean shouldLog(String stat) {
synchronized (_statFilters) {
return _statFilters.contains(stat);
return _statFilters.contains(stat) || _statFilters.contains("*");
}
}