diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-04-04 09:35:39 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-04-06 11:48:41 -0400 |
commit | 4404dc5756c929fccc5784a637014aee929bdfd1 (patch) | |
tree | 43c7036ba8145d4d670dcdad5e1119ec5f659160 /src/or/include.am | |
parent | 5f8860a16f61cd5bbba01fd268071aa8e6b7ba8c (diff) | |
download | tor-4404dc5756c929fccc5784a637014aee929bdfd1.tar.gz tor-4404dc5756c929fccc5784a637014aee929bdfd1.zip |
Add a 'consensus cache' type on top of storagedir.
Every file in the cache is labeled. The labels are held in memory;
the bodies are mapped on demand.
Diffstat (limited to 'src/or/include.am')
-rw-r--r-- | src/or/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/include.am b/src/or/include.am index d65d0d3657..688ac625ea 100644 --- a/src/or/include.am +++ b/src/or/include.am @@ -36,6 +36,7 @@ LIBTOR_A_SOURCES = \ src/or/connection.c \ src/or/connection_edge.c \ src/or/connection_or.c \ + src/or/conscache.c \ src/or/consdiff.c \ src/or/control.c \ src/or/cpuworker.c \ @@ -152,6 +153,7 @@ ORHEADERS = \ src/or/connection.h \ src/or/connection_edge.h \ src/or/connection_or.h \ + src/or/conscache.h \ src/or/consdiff.h \ src/or/control.h \ src/or/cpuworker.h \ |