]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Downgrade 'unexpected sendme cell from client' to PROTOCOL_WARN
authorNick Mathewson <nickm@torproject.org>
Thu, 16 Oct 2014 17:04:11 +0000 (13:04 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 16 Oct 2014 17:04:11 +0000 (13:04 -0400)
Closes 8093.

changes/bug8093 [new file with mode: 0644]
src/or/relay.c

diff --git a/changes/bug8093 b/changes/bug8093
new file mode 100644 (file)
index 0000000..f0fbc61
--- /dev/null
@@ -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.
index 4d71157db8e332c4c1551a01ceb5558437c275bd..9407df0559a6847d1e369f1341c95e1fae8252cf 100644 (file)
@@ -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);