diff options
author | David Goulet <dgoulet@torproject.org> | 2018-03-20 14:58:12 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2018-04-04 11:03:50 -0400 |
commit | 3d5bf12ac24bfbabad5f14c6cd45373b227d2816 (patch) | |
tree | bf93713e447e35c4fd64a44b34c02726339fde37 /src/or/or.h | |
parent | ec8ee541296f3ca494421cd8c8f9903e848823ec (diff) | |
download | tor-3d5bf12ac24bfbabad5f14c6cd45373b227d2816.tar.gz tor-3d5bf12ac24bfbabad5f14c6cd45373b227d2816.zip |
relay: Remove max middle cells dead code
Next commit is addressing the circuit queue cell limit so cleanup before doing
anything else.
Part of #25226
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/or/or.h b/src/or/or.h index 2397f66511..8fcba42ad2 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3524,12 +3524,6 @@ typedef struct or_circuit_t { * exit-ward queues of this circuit; reset every time when writing * buffer stats to disk. */ uint64_t total_cell_waiting_time; - - /** Maximum cell queue size for a middle relay; this is stored per circuit - * so append_cell_to_circuit_queue() can adjust it if it changes. If set - * to zero, it is initialized to the default value. - */ - uint32_t max_middle_cells; } or_circuit_t; #if REND_COOKIE_LEN != DIGEST_LEN |