From 9205552daab22aaa5178f2abbe169bb79f0cf8e3 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 13 Sep 2013 13:37:53 -0400 Subject: Don't apply read/write buckets to non-limited connections Fixes bug 9731 --- src/or/connection.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/or/connection.c b/src/or/connection.c index 6e754a0f7..30ee427e1 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -2483,6 +2483,9 @@ connection_consider_empty_read_buckets(connection_t *conn) } else return; /* all good, no need to stop it */ + if (!connection_is_rate_limited(conn)) + return; /* Always okay. */ + LOG_FN_CONN(conn, (LOG_DEBUG, LD_NET, "%s", reason)); conn->read_blocked_on_bw = 1; connection_stop_reading(conn); @@ -2507,6 +2510,9 @@ connection_consider_empty_write_buckets(connection_t *conn) } else return; /* all good, no need to stop it */ + if (!connection_is_rate_limited(conn)) + return; /* Always okay. */ + LOG_FN_CONN(conn, (LOG_DEBUG, LD_NET, "%s", reason)); conn->write_blocked_on_bw = 1; connection_stop_writing(conn); -- cgit v1.2.3