From 558e9899e4d11d8ef194e5bc1761d5d2f6dff450 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 23 Dec 2008 17:56:31 +0000 Subject: Document most undocumented variables. svn:r17754 --- src/or/command.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/or/command.c') 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 */ -- cgit v1.2.3