diff options
author | Kevin Butler <haqkrs@gmail.com> | 2015-11-02 09:48:18 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-11-13 16:24:44 -0500 |
commit | fbeff307f7780b26c9645ec7dbd685807add6581 (patch) | |
tree | daaf4b9c1cfc2d3a98af4dac873c514ba100acc3 /src/or/include.am | |
parent | faba114a3484a7b85649a6892b2296cf9ac8a41e (diff) | |
download | tor-fbeff307f7780b26c9645ec7dbd685807add6581.tar.gz tor-fbeff307f7780b26c9645ec7dbd685807add6581.zip |
Infrastructure for replacing global periodic events in main.c
(This is from Kevin's bug3199 patch series; nick extracted it into
a new file and changed the interface a little, then did some API
tweaks on it.)
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 d0e955f495..264c4ae802 100644 --- a/src/or/include.am +++ b/src/or/include.am @@ -63,6 +63,7 @@ LIBTOR_A_SOURCES = \ src/or/onion_fast.c \ src/or/onion_tap.c \ src/or/transports.c \ + src/or/periodic.c \ src/or/policies.c \ src/or/reasons.c \ src/or/relay.c \ @@ -173,6 +174,7 @@ ORHEADERS = \ src/or/onion_tap.h \ src/or/or.h \ src/or/transports.h \ + src/or/periodic.h \ src/or/policies.h \ src/or/reasons.h \ src/or/relay.h \ |