diff options
author | Mike Perry <mikeperry-git@torproject.org> | 2018-10-23 19:49:26 +0000 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2019-01-02 15:12:31 +0200 |
commit | 9aaf72ea58bd52d0af694411d16194ea15d612d1 (patch) | |
tree | 7ec62a94e5727dd08405a11a4ca07656d6e6f205 /src/core/include.am | |
parent | 7be71903daff042e606e7a8445a6359100c9f8f5 (diff) | |
download | tor-9aaf72ea58bd52d0af694411d16194ea15d612d1.tar.gz tor-9aaf72ea58bd52d0af694411d16194ea15d612d1.zip |
Circuit padding implementation.
This implements all of the event handling, state machines, and padding
decisions for circuit padding.
I recommend reviewing this after you look at the call-in points into it from
the rest of Tor.
Co-authored-by: George Kadianakis <desnacked@riseup.net>
Diffstat (limited to 'src/core/include.am')
-rw-r--r-- | src/core/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/include.am b/src/core/include.am index 5e69cb9ada..ae47c75e09 100644 --- a/src/core/include.am +++ b/src/core/include.am @@ -32,6 +32,7 @@ LIBTOR_APP_A_SOURCES = \ src/core/or/circuitlist.c \ src/core/or/circuitmux.c \ src/core/or/circuitmux_ewma.c \ + src/core/or/circuitpadding.c \ src/core/or/circuitstats.c \ src/core/or/circuituse.c \ src/core/or/command.c \ @@ -227,6 +228,7 @@ noinst_HEADERS += \ src/core/or/circuitmux.h \ src/core/or/circuitmux_ewma.h \ src/core/or/circuitstats.h \ + src/core/or/circuitpadding.h \ src/core/or/circuituse.h \ src/core/or/command.h \ src/core/or/connection_edge.h \ |