ticket26481 707 B

123456789101112
  1. o Major features (new code layout):
  2. - Nearly all of Tor's source code has been moved around into more logical
  3. places. The "common" directory is now divided into a set of libraries
  4. in "lib", and files in the "or" directory have been split into "core"
  5. (logic absolutely needed for onion routing), "feature" (independent
  6. modules in Tor), and "app" (to configure and invoke the rest of Tor).
  7. See doc/HACKING/CodeStructure.md for more information. Closes ticket
  8. 26481.
  9. This refactoring is not complete: although the libraries have been
  10. refactored to be acyclic, the main body of Tor is still too
  11. interconnected. We will attempt to improve this in the future.