aboutsummaryrefslogtreecommitdiff
path: root/src/or/hibernate.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-09-07 17:48:21 -0400
committerNick Mathewson <nickm@torproject.org>2011-09-07 17:48:21 -0400
commit9bdde8902716bf923a78d8c287acadb0c4d2ffcd (patch)
tree4e2f9643bf4cace07909e7cef78a8db4cc43b872 /src/or/hibernate.c
parentd10ae9c02808c10b19bca66cdc1972616b2b6646 (diff)
downloadtor-9bdde8902716bf923a78d8c287acadb0c4d2ffcd.tar.gz
tor-9bdde8902716bf923a78d8c287acadb0c4d2ffcd.zip
Make the unit tests pass again after the bug2003 fix
Diffstat (limited to 'src/or/hibernate.c')
-rw-r--r--src/or/hibernate.c28
1 files changed, 10 insertions, 18 deletions
diff --git a/src/or/hibernate.c b/src/or/hibernate.c
index badc96ba8e..6b1217a446 100644
--- a/src/or/hibernate.c
+++ b/src/or/hibernate.c
@@ -21,6 +21,7 @@ hibernating, phase 2:
- close all OR/AP/exit conns)
*/
+#define HIBERNATE_PRIVATE
#include "or.h"
#include "config.h"
#include "connection.h"
@@ -29,24 +30,6 @@ hibernating, phase 2:
#include "main.h"
#include "router.h"
-/** Possible values of hibernate_state */
-typedef enum {
- /** We are running normally. */
- HIBERNATE_STATE_LIVE=1,
- /** We're trying to shut down cleanly, and we'll kill all active connections
- * at shutdown_time. */
- HIBERNATE_STATE_EXITING=2,
- /** We're running low on allocated bandwidth for this period, so we won't
- * accept any new connections. */
- HIBERNATE_STATE_LOWBANDWIDTH=3,
- /** We are hibernating, and we won't wake up till there's more bandwidth to
- * use. */
- HIBERNATE_STATE_DORMANT=4,
- /** We start out in state default, which means we havent decided which state
- * we're in. */
- HIBERNATE_STATE_INITIAL=5
-} hibernate_state_t;
-
extern long stats_n_seconds_working; /* published uptime */
/** Are we currently awake, asleep, running out of bandwidth, or shutting
@@ -1025,3 +1008,12 @@ getinfo_helper_accounting(control_connection_t *conn,
return 0;
}
+/**
+ * Manually change the hibernation state. Private; used only by the unit
+ * tests.
+ */
+void
+hibernate_set_state_for_testing_(hibernate_state_t newstate)
+{
+ hibernate_state = newstate;
+}