Add code to configure hidden services, parse configuration, generate keys and service IDs, and store/load them from disk

svn:r1410
This commit is contained in:
Nick Mathewson
2004-03-31 21:35:23 +00:00
parent 157cd7fe15
commit bf83b1e345
6 changed files with 86 additions and 46 deletions
+12 -8
View File
@@ -4,17 +4,21 @@ noinst_PROGRAMS = test
bin_PROGRAMS = tor
tor_SOURCES = buffers.c circuit.c command.c connection.c \
connection_or.c config.c dirserv.c rendcommon.c \
onion.c router.c routerlist.c directory.c dns.c connection_edge.c \
rephist.c cpuworker.c main.c tor_main.c
tor_SOURCES = buffers.c circuit.c command.c config.c \
connection.c connection_edge.c connection_or.c \
cpuworker.c directory.c dirserv.c dns.c main.c \
onion.c rendcommon.c rendservice.c rephist.c \
router.c routerlist.c \
tor_main.c
tor_LDADD = ../common/libor.a
test_SOURCES = buffers.c circuit.c command.c connection.c \
connection_or.c config.c dirserv.c rendcommon.c \
onion.c router.c routerlist.c directory.c dns.c connection_edge.c \
rephist.c cpuworker.c main.c test.c
test_SOURCES = buffers.c circuit.c command.c config.c \
connection.c connection_edge.c connection_or.c \
cpuworker.c directory.c dirserv.c dns.c main.c \
onion.c rendcommon.c rendservice.c rephist.c \
router.c routerlist.c \
test.c
test_LDADD = ../common/libor.a