diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-02-07 09:49:35 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2018-02-08 14:38:11 -0500 |
commit | 46bd2aed915f17d520f9ff237262d1510fe25e12 (patch) | |
tree | 8a20c6425bee4fb1216b9fe639c347de29e7eb57 /src/common/include.am | |
parent | a2aaf9509ba578f4e7705b506ee9a0f764d24ff2 (diff) | |
download | tor-46bd2aed915f17d520f9ff237262d1510fe25e12.tar.gz tor-46bd2aed915f17d520f9ff237262d1510fe25e12.zip |
Add an address-set backend using a bloom filter.
We're going to need this to make our anti-DoS code (see 24902) more
robust.
Diffstat (limited to 'src/common/include.am')
-rw-r--r-- | src/common/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/include.am b/src/common/include.am index 40c463c9d9..cb307e9d5f 100644 --- a/src/common/include.am +++ b/src/common/include.am @@ -80,6 +80,7 @@ src_common_libor_ctime_testing_a_CFLAGS = @CFLAGS_CONSTTIME@ $(TEST_CFLAGS) LIBOR_A_SRC = \ src/common/address.c \ + src/common/address_set.c \ src/common/backtrace.c \ src/common/compat.c \ src/common/compat_threads.c \ @@ -135,6 +136,7 @@ src_common_libor_event_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) COMMONHEADERS = \ src/common/address.h \ + src/common/address_set.h \ src/common/backtrace.h \ src/common/aes.h \ src/common/ciphers.inc \ |