diff options
author | Mike Perry <mikeperry-git@torproject.org> | 2023-06-26 20:26:59 +0000 |
---|---|---|
committer | Mike Perry <mikeperry-git@torproject.org> | 2023-06-27 19:27:10 +0000 |
commit | 04d7f11086b97fa8bda2377ffe694089e18e45e7 (patch) | |
tree | 093d0f829aa3a587d9b047acb686c222a868ed6e /src/test/test_conflux_pool.c | |
parent | 7d85298b63dbc7a06e65395011568f4433a98430 (diff) | |
download | tor-04d7f11086b97fa8bda2377ffe694089e18e45e7.tar.gz tor-04d7f11086b97fa8bda2377ffe694089e18e45e7.zip |
Bug 40566: Remove unused BDP estimators
Diffstat (limited to 'src/test/test_conflux_pool.c')
-rw-r--r-- | src/test/test_conflux_pool.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/test_conflux_pool.c b/src/test/test_conflux_pool.c index ad78283fe3..fc30677377 100644 --- a/src/test/test_conflux_pool.c +++ b/src/test/test_conflux_pool.c @@ -128,7 +128,6 @@ circuit_establish_circuit_conflux_mock(const uint8_t *conflux_nonce, simulate_single_hop_extend(circ, 0); simulate_single_hop_extend(circ, 1); circ->cpath->prev->ccontrol = tor_malloc_zero(sizeof(congestion_control_t)); - circ->cpath->prev->ccontrol->sendme_arrival_timestamps = smartlist_new(); circ->cpath->prev->ccontrol->sendme_pending_timestamps = smartlist_new(); circ->cpath->prev->ccontrol->sendme_inc = 31; @@ -499,7 +498,6 @@ simulate_circuit_build(circuit_t *client_circ) relay_side->purpose = CIRCUIT_PURPOSE_OR; relay_side->n_chan = NULL; // No next hop relay_side->ccontrol = tor_malloc_zero(sizeof(congestion_control_t)); - relay_side->ccontrol->sendme_arrival_timestamps = smartlist_new(); relay_side->ccontrol->sendme_pending_timestamps = smartlist_new(); relay_side->ccontrol->sendme_inc = 31; smartlist_add(exit_circs, relay_side); |