diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-04-10 11:23:14 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-04-13 10:41:14 -0400 |
commit | c376200f6a77b2509928bc08d2aa1245028cec30 (patch) | |
tree | 3e086444e595718c59edffeaeb13e439422a8bc8 /src/test/include.am | |
parent | d8ef9a2d1e0701073d8209115bc3c34857c2d7b4 (diff) | |
download | tor-c376200f6a77b2509928bc08d2aa1245028cec30.tar.gz tor-c376200f6a77b2509928bc08d2aa1245028cec30.zip |
Add a new token-bucket backend abstraction, with tests
This differs from our previous token bucket abstraction in a few
ways:
1) It is an abstraction, and not a collection of fields.
2) It is meant to be used with monotonic timestamps, which should
produce better results than calling gettimeofday over and over.
Diffstat (limited to 'src/test/include.am')
-rw-r--r-- | src/test/include.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/include.am b/src/test/include.am index e98b056a44..2da50de01d 100644 --- a/src/test/include.am +++ b/src/test/include.am @@ -89,6 +89,7 @@ src_test_test_SOURCES = \ src/test/test_address.c \ src/test/test_address_set.c \ src/test/test_buffers.c \ + src/test/test_bwmgt.c \ src/test/test_cell_formats.c \ src/test/test_cell_queue.c \ src/test/test_channel.c \ |