aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/circuitbuild.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-08-03 11:25:37 -0400
committerNick Mathewson <nickm@torproject.org>2020-08-03 11:25:37 -0400
commit435f31aed34e9b58d1e8d9f460e6d2e3c6714fbc (patch)
treebc0d12229d6f5928a43c5e9d8da67148ae571727 /src/core/or/circuitbuild.c
parentc4742b89b23d58958ee0d5ca324dac5948c94bf6 (diff)
downloadtor-435f31aed34e9b58d1e8d9f460e6d2e3c6714fbc.tar.gz
tor-435f31aed34e9b58d1e8d9f460e6d2e3c6714fbc.zip
Remove channel_is_canonical_is_reliable()
This function once served to let circuits continue to be built over version-1 link connections. But such connections are long-obsolete, and it's time to remove this check. Closes #40081.
Diffstat (limited to 'src/core/or/circuitbuild.c')
-rw-r--r--src/core/or/circuitbuild.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/or/circuitbuild.c b/src/core/or/circuitbuild.c
index f3a5791d6c..1a5025cd71 100644
--- a/src/core/or/circuitbuild.c
+++ b/src/core/or/circuitbuild.c
@@ -707,6 +707,8 @@ circuit_deliver_create_cell(circuit_t *circ, const create_cell_t *create_cell,
goto error;
}
+ tor_assert_nonfatal_once(circ->n_chan->is_canonical);
+
memset(&cell, 0, sizeof(cell_t));
r = relayed ? create_cell_format_relayed(&cell, create_cell)
: create_cell_format(&cell, create_cell);