diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-09-25 16:37:54 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-09-25 16:48:00 -0400 |
commit | b8df2318e9531a17938392cd0cbea0b901f50245 (patch) | |
tree | bec3271661f5ba814b4d4d464221a371000879f5 /src/core | |
parent | efa978124f067bf75c33c4ff9bba8dbf2f54a4ef (diff) | |
download | tor-b8df2318e9531a17938392cd0cbea0b901f50245.tar.gz tor-b8df2318e9531a17938392cd0cbea0b901f50245.zip |
Move routerinfo_t functions out of router.c
(It turns out that some of the functions in router.h didn't even
exist any more, so I just got to delete their declarations completely.)
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/include.am b/src/core/include.am index 39eed0ab5f..21cad6dc24 100644 --- a/src/core/include.am +++ b/src/core/include.am @@ -97,6 +97,7 @@ LIBTOR_APP_A_SOURCES = \ src/feature/nodelist/nodelist.c \ src/feature/nodelist/node_select.c \ src/feature/nodelist/parsecommon.c \ + src/feature/nodelist/routerinfo.c \ src/feature/nodelist/routerlist.c \ src/feature/nodelist/routerparse.c \ src/feature/nodelist/routerset.c \ @@ -315,6 +316,7 @@ noinst_HEADERS += \ src/feature/nodelist/nodelist.h \ src/feature/nodelist/node_select.h \ src/feature/nodelist/parsecommon.h \ + src/feature/nodelist/routerinfo.h \ src/feature/nodelist/routerinfo_st.h \ src/feature/nodelist/routerlist.h \ src/feature/nodelist/routerlist_st.h \ |