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/control.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/control.c')
-rw-r--r-- | src/or/control.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/control.c b/src/or/control.c index aea51c44d6..e0ebd7d591 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -54,7 +54,9 @@ const char control_c_id[] = * list to find out. **/ typedef uint32_t event_mask_t; +/* DOCDOC global_event_mask1long */ static event_mask_t global_event_mask1long = 0; +/* DOCDOC global_event_mask1short */ static event_mask_t global_event_mask1short = 0; /** True iff we have disabled log messages from being sent to the controller */ @@ -74,6 +76,7 @@ static int disable_log_messages = 0; /** If true, we've set authentication_cookie to a secret code and * stored it to disk. */ static int authentication_cookie_is_set = 0; +/* DOCDOC authentication_cookie */ static char authentication_cookie[AUTHENTICATION_COOKIE_LEN]; /** A sufficiently large size to record the last bootstrap phase string. */ |