summaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2020-01-07 15:03:24 -0500
committerNick Mathewson <nickm@torproject.org>2020-01-14 13:31:08 -0500
commit59dac38ebe4e6489c2a06d07470023ed5fbdd0aa (patch)
tree0111634909e9973480e68a0f917b612ca8b56720 /changes
parente231cd5b61afcb6640a7e17506bf33ddc6b1d2fe (diff)
downloadtor-59dac38ebe4e6489c2a06d07470023ed5fbdd0aa.tar.gz
tor-59dac38ebe4e6489c2a06d07470023ed5fbdd0aa.zip
chan: Remove dead var cell handler from channel_t
The variable lenght cells are handled directly by channel_tls_handle_var_cell() from an OR connection reading its inbuf. The channel var cell handler (agnostic) was never used. Closes #32892 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'changes')
-rw-r--r--changes/ticket328923
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/ticket32892 b/changes/ticket32892
new file mode 100644
index 0000000000..f6360d2883
--- /dev/null
+++ b/changes/ticket32892
@@ -0,0 +1,3 @@
+ o Code simplification and refactoring (channel):
+ - Channel layer had a variable length cell handler that was not used and
+ thus removed. Closes ticket 32892.