diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-10-16 13:04:11 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-10-16 13:04:11 -0400 |
commit | ab4b29625db720817f9af502199ebf1ee3ac5af7 (patch) | |
tree | 92168a8ee2a43933422d7b85043b940416fb784c | |
parent | 22b9caf0ae42132bc8107d990b3ebb969394c90f (diff) | |
download | tor-ab4b29625db720817f9af502199ebf1ee3ac5af7.tar.gz tor-ab4b29625db720817f9af502199ebf1ee3ac5af7.zip |
Downgrade 'unexpected sendme cell from client' to PROTOCOL_WARN
Closes 8093.
-rw-r--r-- | changes/bug8093 | 3 | ||||
-rw-r--r-- | src/or/relay.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/changes/bug8093 b/changes/bug8093 new file mode 100644 index 0000000000..f0fbc618c2 --- /dev/null +++ b/changes/bug8093 @@ -0,0 +1,3 @@ + o Downgraded warnings: + - Downgrade the severity of the 'unexpected sendme cell from client' from + 'warn' to 'protocol warning'. Closes ticket 8093. diff --git a/src/or/relay.c b/src/or/relay.c index 4d71157db8..9407df0559 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -1718,7 +1718,7 @@ connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, if (circ->package_window + CIRCWINDOW_INCREMENT > CIRCWINDOW_START_MAX) { static struct ratelim_t client_warn_ratelim = RATELIM_INIT(600); - log_fn_ratelim(&client_warn_ratelim, LOG_WARN, LD_PROTOCOL, + log_fn_ratelim(&client_warn_ratelim,LOG_PROTOCOL_WARN, LD_PROTOCOL, "Unexpected sendme cell from client. " "Closing circ (window %d).", circ->package_window); |