From bc91808c477ac05dc634ab10811b354b22da1ef5 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 6 Apr 2017 14:46:45 -0400 Subject: Add a "Consensus diff manager" module. This module's job is to remember old consensus documents, to calculate their diffs on demand, and to . There are some incomplete points in this code; I've marked them with "XXXX". I intend to fix them in separate commits, since I believe doing it in separate commits will make the branch easier to review. --- src/or/include.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/or/include.am') diff --git a/src/or/include.am b/src/or/include.am index 1841bbfe9d..dd27bc8411 100644 --- a/src/or/include.am +++ b/src/or/include.am @@ -38,6 +38,7 @@ LIBTOR_A_SOURCES = \ src/or/connection_or.c \ src/or/conscache.c \ src/or/consdiff.c \ + src/or/consdiffmgr.c \ src/or/control.c \ src/or/cpuworker.c \ src/or/dircollate.c \ @@ -156,6 +157,7 @@ ORHEADERS = \ src/or/connection_or.h \ src/or/conscache.h \ src/or/consdiff.h \ + src/or/consdiffmgr.h \ src/or/control.h \ src/or/cpuworker.h \ src/or/dircollate.h \ -- cgit v1.2.3-54-g00ecf