diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2013-05-24 12:29:42 +0200 |
---|---|---|
committer | Karsten Loesing <karsten.loesing@gmx.net> | 2013-05-25 19:51:38 +0200 |
commit | 26b49f525d5b2a4781755d72738491c016dd15a9 (patch) | |
tree | 98fbbb6fe3b79612e2c0adc2a44c5b83480a0720 /src/or/relay.h | |
parent | 2f893624abb65a0df4f0f8ca6fbbe0c00fbf216a (diff) | |
download | tor-26b49f525d5b2a4781755d72738491c016dd15a9.tar.gz tor-26b49f525d5b2a4781755d72738491c016dd15a9.zip |
Tweak CELL_STATS event based on comments by nickm.
- Move cell_command_to_string from control.c to command.c.
- Use accessor for global_circuitlist instead of extern.
- Add a struct for cell statistics by command instead of six arrays.
- Split up control_event_circuit_cell_stats by using two helper functions.
- Add TestingEnableCellStatsEvent option.
- Prepare functions for testing.
- Rename a few variables and document a few things better.
Diffstat (limited to 'src/or/relay.h')
-rw-r--r-- | src/or/relay.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/relay.h b/src/or/relay.h index e3b392ce7f..b5458575ee 100644 --- a/src/or/relay.h +++ b/src/or/relay.h @@ -53,7 +53,7 @@ void packed_cell_free(packed_cell_t *cell); void cell_queue_clear(cell_queue_t *queue); void cell_queue_append(cell_queue_t *queue, packed_cell_t *cell); void cell_queue_append_packed_copy(circuit_t *circ, cell_queue_t *queue, - int exit_ward, const cell_t *cell, + int exitward, const cell_t *cell, int wide_circ_ids); void append_cell_to_circuit_queue(circuit_t *circ, channel_t *chan, |