diff options
author | David Goulet <dgoulet@torproject.org> | 2021-01-26 15:31:21 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2021-01-27 09:50:27 -0500 |
commit | fd5a72078cf405ae60ebe4ca608cbe2b203d0258 (patch) | |
tree | 77a5149141b4e1633e28d2da8bbdd13e17a34687 /src/app | |
parent | 05a762426681ce5e37c7f222c2337a4a1915286c (diff) | |
download | tor-fd5a72078cf405ae60ebe4ca608cbe2b203d0258.tar.gz tor-fd5a72078cf405ae60ebe4ca608cbe2b203d0258.zip |
dos: Add DoS subsystem to manager list
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/main/subsystem_list.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/main/subsystem_list.c b/src/app/main/subsystem_list.c index cb79909e69..4b417f57e2 100644 --- a/src/app/main/subsystem_list.c +++ b/src/app/main/subsystem_list.c @@ -14,6 +14,7 @@ #include "lib/cc/torint.h" #include "core/mainloop/mainloop_sys.h" +#include "core/or/dos_sys.h" #include "core/or/or_sys.h" #include "feature/control/btrack_sys.h" #include "lib/compress/compress_sys.h" @@ -64,6 +65,7 @@ const subsys_fns_t *tor_subsystems[] = { &sys_mainloop, &sys_or, + &sys_dos, &sys_relay, &sys_hs, |