diff options
Diffstat (limited to 'src/or/command.c')
-rw-r--r-- | src/or/command.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/or/command.c b/src/or/command.c index baa435695..7ad20f009 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -20,19 +20,19 @@ const char command_c_id[] = #include "or.h" -/** Keep statistics about how many of each type of cell we've received. */ +/** How many CELL_PADDING cells have we received, ever? */ uint64_t stats_n_padding_cells_processed = 0; -/* DOCDOC stats_n_create_cells_processed */ +/** How many CELL_CREATE cells have we received, ever? */ uint64_t stats_n_create_cells_processed = 0; -/* DOCDOC stats_n_created_cells_processed */ +/** How many CELL_CREATED cells have we received, ever? */ uint64_t stats_n_created_cells_processed = 0; -/* DOCDOC stats_n_relay_cells_processed */ +/** How many CELL_RELAY cells have we received, ever? */ uint64_t stats_n_relay_cells_processed = 0; -/* DOCDOC stats_n_destroy_cells_processed */ +/** How many CELL_DESTROY cells have we received, ever? */ uint64_t stats_n_destroy_cells_processed = 0; -/* DOCDOC stats_n_versions_cells_processed */ +/** How many CELL_VERSIONS cells have we received, ever? */ uint64_t stats_n_versions_cells_processed = 0; -/* DOCDOC stats_n_netinfo_cells_processed */ +/** How many CELL_NETINFO cells have we received, ever? */ uint64_t stats_n_netinfo_cells_processed = 0; /* These are the main functions for processing cells */ |