diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-22 19:00:05 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-22 19:00:05 +0000 |
commit | b68379b13b9169cf3542d678da6c1c2b4258c49e (patch) | |
tree | 4b2dd4aebe8d834486fb86d5a0853db60337c7d4 /src/or/command.c | |
parent | e5100bc6b5d3d7b004a66358bdf66ae8d3b00084 (diff) | |
download | tor-b68379b13b9169cf3542d678da6c1c2b4258c49e.tar.gz tor-b68379b13b9169cf3542d678da6c1c2b4258c49e.zip |
Add DOCDOC entries for undocumented static and global variables.
svn:r17739
Diffstat (limited to 'src/or/command.c')
-rw-r--r-- | src/or/command.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/or/command.c b/src/or/command.c index fa4189dc3b..baa435695f 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -22,11 +22,17 @@ const char command_c_id[] = /** Keep statistics about how many of each type of cell we've received. */ uint64_t stats_n_padding_cells_processed = 0; +/* DOCDOC stats_n_create_cells_processed */ uint64_t stats_n_create_cells_processed = 0; +/* DOCDOC stats_n_created_cells_processed */ uint64_t stats_n_created_cells_processed = 0; +/* DOCDOC stats_n_relay_cells_processed */ uint64_t stats_n_relay_cells_processed = 0; +/* DOCDOC stats_n_destroy_cells_processed */ uint64_t stats_n_destroy_cells_processed = 0; +/* DOCDOC stats_n_versions_cells_processed */ uint64_t stats_n_versions_cells_processed = 0; +/* DOCDOC stats_n_netinfo_cells_processed */ uint64_t stats_n_netinfo_cells_processed = 0; /* These are the main functions for processing cells */ |