diff options
author | Mike Perry <mikeperry-git@torproject.org> | 2021-08-10 21:35:46 +0000 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2021-10-04 10:45:46 -0400 |
commit | 0422eb26a70fc1450cc6b57902f189edc4eed10a (patch) | |
tree | e5efb02a06ba635ddb837cb66c2c89969466895e /src/app | |
parent | a89a71cd7b4658eba8465f31b5e1bc21e3325a53 (diff) | |
download | tor-0422eb26a70fc1450cc6b57902f189edc4eed10a.tar.gz tor-0422eb26a70fc1450cc6b57902f189edc4eed10a.zip |
Prop#324: Hook up flow control
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/main/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/main/main.c b/src/app/main/main.c index 89564490e6..0742abe70a 100644 --- a/src/app/main/main.c +++ b/src/app/main/main.c @@ -27,6 +27,7 @@ #include "core/or/channel.h" #include "core/or/channelpadding.h" #include "core/or/circuitpadding.h" +#include "core/or/congestion_control_flow.h" #include "core/or/circuitlist.h" #include "core/or/command.h" #include "core/or/connection_or.h" @@ -630,6 +631,7 @@ tor_init(int argc, char *argv[]) * until we get a consensus */ channelpadding_new_consensus_params(NULL); circpad_new_consensus_params(NULL); + flow_control_new_consensus_params(NULL); /* Initialize circuit padding to defaults+torrc until we get a consensus */ circpad_machines_init(); |