]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Stop mentioning src/or and src/common in doc/HACKING
authorNick Mathewson <nickm@torproject.org>
Tue, 10 Jul 2018 15:03:45 +0000 (11:03 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 10 Jul 2018 15:03:45 +0000 (11:03 -0400)
doc/HACKING/CodingStandards.md
doc/HACKING/Module.md

index b830ecea93d2cc4e9ed40ee5640f70aab9c61112..6e6ef044d33f753d0fd4e866cba0a5e91069603d 100644 (file)
@@ -200,8 +200,8 @@ We have some wrapper functions like `tor_malloc`, `tor_free`, `tor_strdup`, and
 always succeed or exit.)
 
 You can get a full list of the compatibility functions that Tor provides by
-looking through `src/common/util*.h` and `src/common/compat*.h`.  You can see the
-available containers in `src/common/containers*.h`.  You should probably
+looking through `src/lib/*/*.h`.  You can see the
+available containers in `src/lib/containers/*.h`.  You should probably
 familiarize yourself with these modules before you write too much code, or
 else you'll wind up reinventing the wheel.
 
index 6684e258df21d9fa6d32ef487bf2c5fe7ad7b864..9cf36090b40e4b50303f9bf762e777d53b7fe0aa 100644 (file)
@@ -96,8 +96,8 @@ There are couples of "rules" you want to follow:
   filename as the one in the module. For example, this is a bad idea and
   should never be done:
 
-    - `src/or/shared_random.c`
-    - `src/or/dirauth/shared_random.c`
+    - `src/feature/dirclient/shared_random.c`
+    - `src/feature/dirauth/shared_random.c`
 
 * When you include headers from the module, **always** use the full module
   path in your statement. Example: