diff options
author | David Goulet <dgoulet@torproject.org> | 2020-05-05 13:42:52 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2020-05-05 14:24:04 -0400 |
commit | a25f16707296b0a25c09c09cc31387b9ef799fae (patch) | |
tree | 6337c129e484478d918c21d6f4704ba02c6a5eec /src/app/config/include.am | |
parent | 445df9e7b5bbb0ea080bbed25dc4f3b52b0eb7df (diff) | |
download | tor-a25f16707296b0a25c09c09cc31387b9ef799fae.tar.gz tor-a25f16707296b0a25c09c09cc31387b9ef799fae.zip |
config: New file resolve_addr.{c|h}
Move a series of function from config.c into that new file which is related to
address resolving.
Part of #33789
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/app/config/include.am')
-rw-r--r-- | src/app/config/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/config/include.am b/src/app/config/include.am index 5d625efecf..14320a6b11 100644 --- a/src/app/config/include.am +++ b/src/app/config/include.am @@ -3,6 +3,7 @@ LIBTOR_APP_A_SOURCES += \ src/app/config/config.c \ src/app/config/quiet_level.c \ + src/app/config/resolve_addr.c \ src/app/config/statefile.c # ADD_C_FILE: INSERT HEADERS HERE. @@ -11,6 +12,7 @@ noinst_HEADERS += \ src/app/config/or_options_st.h \ src/app/config/or_state_st.h \ src/app/config/quiet_level.h \ + src/app/config/resolve_addr.h \ src/app/config/statefile.h \ src/app/config/tor_cmdline_mode.h |