diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-10-15 14:48:34 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-10-15 14:50:55 -0400 |
commit | 907db008ab0007f0a02da62b68130344fc2e9353 (patch) | |
tree | 3b6c5afb45b34a855894d50dde2f43737435a95f /src/or/include.am | |
parent | 9e9edf71f7d3093b4ac1fe61ccc6dad2976e0a1e (diff) | |
download | tor-907db008ab0007f0a02da62b68130344fc2e9353.tar.gz tor-907db008ab0007f0a02da62b68130344fc2e9353.zip |
Move the circuit build timeout code into its own file.
Diffstat (limited to 'src/or/include.am')
-rw-r--r-- | src/or/include.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/include.am b/src/or/include.am index 749206151a..01f4784d08 100644 --- a/src/or/include.am +++ b/src/or/include.am @@ -23,6 +23,7 @@ src_or_libtor_a_SOURCES = \ src/or/circuitlist.c \ src/or/circuitmux.c \ src/or/circuitmux_ewma.c \ + src/or/circuitstats.c \ src/or/circuituse.c \ src/or/command.c \ src/or/config.c \ @@ -38,6 +39,7 @@ src_or_libtor_a_SOURCES = \ src/or/dns.c \ src/or/dnsserv.c \ src/or/geoip.c \ + src/or/entrynodes.c \ src/or/hibernate.c \ src/or/main.c \ src/or/microdesc.c \ @@ -96,6 +98,7 @@ ORHEADERS = \ src/or/circuitlist.h \ src/or/circuitmux.h \ src/or/circuitmux_ewma.h \ + src/or/circuitstats.h \ src/or/circuituse.h \ src/or/command.h \ src/or/config.h \ @@ -112,6 +115,7 @@ ORHEADERS = \ src/or/dnsserv.h \ src/or/eventdns_tor.h \ src/or/geoip.h \ + src/or/entrynodes.h \ src/or/hibernate.h \ src/or/main.h \ src/or/microdesc.h \ |