]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Add a changes file for 26481 (the big code movement)
authorNick Mathewson <nickm@torproject.org>
Tue, 10 Jul 2018 19:07:04 +0000 (15:07 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 10 Jul 2018 19:07:04 +0000 (15:07 -0400)
changes/ticket26481 [new file with mode: 0644]

diff --git a/changes/ticket26481 b/changes/ticket26481
new file mode 100644 (file)
index 0000000..84d219e
--- /dev/null
@@ -0,0 +1,12 @@
+  o Major features (new code layout):
+   - Nearly all of Tor's source code has been moved around into more logical
+     places.  The "common" directory is now divided into a set of libraries
+     in "lib", and files in the "or" directory have been split into "core"
+     (logic absolutely needed for onion routing), "feature" (independent
+     modules in Tor), and "app" (to configure and invoke the rest of Tor).
+     See doc/HACKING/CodeStructure.md for more information. Closes ticket
+     26481.
+
+     This refactoring is not complete: although the libraries have been
+     refactored to be acyclic, the main body of Tor is still too
+     interconnected.  We will attempt to improve this in the future.