Move literally everything out of src/or

This commit won't build yet -- it just puts everything in a slightly
more logical place.

The reasoning here is that "src/core" will hold the stuff that every (or
nearly every) tor instance will need in order to do onion routing.
Other features (including some necessary ones) will live in
"src/feature".  The "src/app" directory will hold the stuff needed
to have Tor be an application you can actually run.

This commit DOES NOT refactor the former contents of src/or into a
logical set of acyclic libraries, or change any code at all.  That
will have to come in the future.

We will continue to move things around and split them in the future,
but I hope this lays a reasonable groundwork for doing so.
This commit is contained in:
Nick Mathewson 2018-07-05 16:31:38 -04:00
parent ce84200542
commit 63b4ea22af
256 changed files with 3 additions and 82 deletions

View File

@ -6,11 +6,11 @@ noinst_PROGRAMS+= src/app/tor-cov
endif
noinst_HEADERS += \
src/app/ntmain.h
src/app/main/ntmain.h
src_app_tor_SOURCES = src/app/tor_main.c
src_app_tor_SOURCES = src/app/main/tor_main.c
if BUILD_NT_SERVICES
src_app_tor_SOURCES += src/app/ntmain.c
src_app_tor_SOURCES += src/app/main/ntmain.c
endif
# -L flags need to go in LDFLAGS. -l flags need to go in LDADD.

Some files were not shown because too many files have changed in this diff Show More