diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-23 17:56:31 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-23 17:56:31 +0000 |
commit | 558e9899e4d11d8ef194e5bc1761d5d2f6dff450 (patch) | |
tree | 45eb50017f2b65c70babf90b3c088a3c952ce6de /src/or/command.c | |
parent | d7f55dafe0287c1a8c13478c4e077da65533769c (diff) | |
download | tor-558e9899e4d11d8ef194e5bc1761d5d2f6dff450.tar.gz tor-558e9899e4d11d8ef194e5bc1761d5d2f6dff450.zip |
Document most undocumented variables.
svn:r17754
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 baa435695f..7ad20f0098 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 */ |