mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
ef561c0e42
* \file circuitbuild.c * \brief The actual details of building circuits. * \file circuitlist.c * \brief Manage the global circuit list. * \file circuituse.c * \brief Launch the right sort of circuits, attach streams to them. * \file connection_edge.c * \brief Handle edge streams. * \file onion.c * \brief Functions to queue create cells, and handle onionskin * parsing and creation. * \file relay.c * \brief Handle relay cell encryption/decryption, plus packaging and * receiving from circuits. svn:r1863
29 lines
790 B
Makefile
29 lines
790 B
Makefile
TESTS = test
|
|
|
|
noinst_PROGRAMS = test
|
|
|
|
bin_PROGRAMS = tor
|
|
|
|
tor_SOURCES = buffers.c circuitbuild.c circuitlist.c \
|
|
circuituse.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 relay.c rendcommon.c rendclient.c rendmid.c \
|
|
rendservice.c rephist.c router.c routerlist.c routerparse.c \
|
|
tor_main.c
|
|
|
|
tor_LDADD = ../common/libor.a
|
|
|
|
test_SOURCES = buffers.c circuitbuild.c circuitlist.c \
|
|
circuituse.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 relay.c rendcommon.c rendclient.c rendmid.c \
|
|
rendservice.c rephist.c router.c routerlist.c routerparse.c \
|
|
test.c
|
|
|
|
test_LDADD = ../common/libor.a
|
|
|
|
noinst_HEADERS = or.h tree.h
|
|
|