diff options
author | David Goulet <dgoulet@torproject.org> | 2019-01-29 15:13:16 +0100 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2019-03-14 23:54:05 -0400 |
commit | aee65084b421d0b5ff717cc9e01dd92f4e96be9e (patch) | |
tree | 874cfdc61f6d8872f6c9d563bda67933b4961a12 /src/test/test_circuitpadding.c | |
parent | 2d76945052c09a4f36519491fd414d1a314b27a7 (diff) | |
download | tor-aee65084b421d0b5ff717cc9e01dd92f4e96be9e.tar.gz tor-aee65084b421d0b5ff717cc9e01dd92f4e96be9e.zip |
circ: Remove n_mux and p_mux members
They are simply not used apart from assigning a pointer and asserting on the
pointer depending on the cell direction.
Closes #29196.
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/test/test_circuitpadding.c')
-rw-r--r-- | src/test/test_circuitpadding.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/test_circuitpadding.c b/src/test/test_circuitpadding.c index a2381023ca..aaf7875a13 100644 --- a/src/test/test_circuitpadding.c +++ b/src/test/test_circuitpadding.c @@ -115,7 +115,6 @@ new_fake_orcirc(channel_t *nchan, channel_t *pchan) //circ->n_chan = nchan; circ->n_circ_id = get_unique_circ_id_by_chan(nchan); - circ->n_mux = NULL; /* ?? */ cell_queue_init(&(circ->n_chan_cells)); circ->n_hop = NULL; circ->streams_blocked_on_n_chan = 0; |