diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-07-10 07:50:17 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-07-10 07:50:17 -0400 |
commit | 8390df917b7e63696c70037765737037cd9162a0 (patch) | |
tree | 6560380a9da89dcbb356aaf1d0a5d8758ba95790 /src/test/test_relay.c | |
parent | 18391f689ea11b064a9313be8824834df8be2a9e (diff) | |
download | tor-8390df917b7e63696c70037765737037cd9162a0.tar.gz tor-8390df917b7e63696c70037765737037cd9162a0.zip |
Split bandwidth history functions into a separate C file.
These are logically independent from the rest of rephist, and make
more sense in isolation. The next patch will rename them too.
Diffstat (limited to 'src/test/test_relay.c')
-rw-r--r-- | src/test/test_relay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_relay.c b/src/test/test_relay.c index 066aeaa7b3..060ca1b75d 100644 --- a/src/test/test_relay.c +++ b/src/test/test_relay.c @@ -3,12 +3,12 @@ #define CIRCUITBUILD_PRIVATE #define RELAY_PRIVATE -#define REPHIST_PRIVATE +#define BWHIST_PRIVATE #include "core/or/or.h" #include "core/or/circuitbuild.h" #include "core/or/circuitlist.h" #include "core/or/channeltls.h" -#include "feature/stats/rephist.h" +#include "feature/stats/bwhist.h" #include "core/or/relay.h" #include "lib/container/order.h" /* For init/free stuff */ |