summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Perry <mikeperry-git@torproject.org>2021-06-11 23:52:06 +0000
committerDavid Goulet <dgoulet@torproject.org>2021-07-30 12:57:31 -0400
commita0368b375958bff39a706fbbd9862765013b4207 (patch)
tree300805c14d19c018e6d9b78b689c1eecf302c0e4 /src
parented1e91ffc29a707443d89e0f06732d8bab656c33 (diff)
downloadtor-a0368b375958bff39a706fbbd9862765013b4207.tar.gz
tor-a0368b375958bff39a706fbbd9862765013b4207.zip
MAKEFILE: include new CC algs in makefile
Diffstat (limited to 'src')
-rw-r--r--src/core/or/include.am11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/core/or/include.am b/src/core/or/include.am
index 6d2b73d03c..d142062216 100644
--- a/src/core/or/include.am
+++ b/src/core/or/include.am
@@ -35,7 +35,10 @@ LIBTOR_APP_A_SOURCES += \
src/core/or/scheduler_kist.c \
src/core/or/scheduler_vanilla.c \
src/core/or/sendme.c \
- src/core/or/sendme_common.c \
+ src/core/or/congestion_control_common.c \
+ src/core/or/congestion_control_vegas.c \
+ src/core/or/congestion_control_nola.c \
+ src/core/or/congestion_control_westwood.c \
src/core/or/status.c \
src/core/or/versions.c
@@ -58,6 +61,7 @@ noinst_HEADERS += \
src/core/or/circuitpadding_machines.h \
src/core/or/circuituse.h \
src/core/or/command.h \
+ src/core/or/congestion_control_st.h \
src/core/or/connection_edge.h \
src/core/or/connection_or.h \
src/core/or/connection_st.h \
@@ -98,7 +102,10 @@ noinst_HEADERS += \
src/core/or/relay_crypto_st.h \
src/core/or/scheduler.h \
src/core/or/sendme.h \
- src/core/or/sendme_common.h \
+ src/core/or/congestion_control_common.h \
+ src/core/or/congestion_control_vegas.h \
+ src/core/or/congestion_control_nola.h \
+ src/core/or/congestion_control_westwood.h \
src/core/or/server_port_cfg_st.h \
src/core/or/socks_request_st.h \
src/core/or/status.h \