diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-09-12 17:34:50 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-09-13 12:20:25 -0400 |
commit | 7627b2c187ca10ed4569d37ce2b12ff95b00ba33 (patch) | |
tree | 4ee307e8c0956f57bbfd1b623d286048e9cec421 /src/or/include.am | |
parent | 582f2187a769ea723f6bf13bc91f7a4b3c861408 (diff) | |
download | tor-7627b2c187ca10ed4569d37ce2b12ff95b00ba33.tar.gz tor-7627b2c187ca10ed4569d37ce2b12ff95b00ba33.zip |
Split the generic config_fmt_t code into a new confparse.c file
This helps us split up one of our larger files, and sets the stage
for refactoring the configuration backend a little
Diffstat (limited to 'src/or/include.am')
-rw-r--r-- | src/or/include.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/include.am b/src/or/include.am index 97072dce2f..fc41c6d53b 100644 --- a/src/or/include.am +++ b/src/or/include.am @@ -21,7 +21,8 @@ src_or_libtor_a_SOURCES = \ src/or/circuitlist.c \ src/or/circuituse.c \ src/or/command.c \ - src/or/config.c \ + src/or/config.c \ + src/or/confparse.c \ src/or/connection.c \ src/or/connection_edge.c \ src/or/connection_or.c \ @@ -88,6 +89,7 @@ ORHEADERS = \ src/or/circuituse.h \ src/or/command.h \ src/or/config.h \ + src/or/confparse.h \ src/or/connection.h \ src/or/connection_edge.h \ src/or/connection_or.h \ |