aboutsummaryrefslogtreecommitdiff
path: root/src/or/status.c
Commit message (Collapse)AuthorAge
* Update copyright dates to 2012; add a few missing copyright statementsNick Mathewson2012-06-04
|
* Clarify the heartbeat message a bit.George Kadianakis2011-08-27
|
* Make the get_options() return constNick Mathewson2011-06-14
| | | | | | | | This lets us make a lot of other stuff const, allows the compiler to generate (slightly) better code, and will make me get slightly fewer patches from folks who stick mutable stuff into or_options_t. const: because not every input is an output!
* Remove a dead variable in the heartbeat codeSebastian Hahn2011-06-08
|
* Update the uptime string to include an hours indicatorSebastian Hahn2011-06-08
| | | | | Before, it wasn't really obvious if one meant hours:minutes or minutes:seconds etc.
* Fix bug3183George Kadianakis2011-05-15
|
* Reuse get_bytes_{read,written}() in status.cGeorge Kadianakis2011-04-16
|
* Fix a couple of compile warnings on OS X 10.6Sebastian Hahn2011-02-24
|
* Tweak some names and comments in asn's heartbeat patchNick Mathewson2011-02-22
|
* Implement more heartbeat message stuff.George Kadianakis2011-02-22
| | | | | | | | | | | | | | | | | | | (This squashes multiple commits: * Adds uptime monitoring support. * Adds circuit counting code. * Trivially tweaks the documentation. * Trivial run_scheduled_events() code tweaking. * Adds a status.h to export functions. * Added bandwidth monitoring code. * Added consensus presense detection code. * Restricts the precision of the bandwidth output. * Various fixes. * Fixed style and spacing problems. * Tidied up src/or/Makefile.am * Couple of minor fixes on status.c functions. * 'Implemented' client heartbeat support )
* Initial heartbeat subsystem commit.Sebastian Hahn2011-02-22
Sets: * Documentation * Logging domain * Configuration option * Scheduled event * Makefile It also creates status.c and the log_heartbeat() function. All code was written by Sebastian Hahn. Commit message was written by me (George Kadianakis).