diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-15 10:48:50 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-15 10:48:50 -0400 |
commit | 19c34b46589492be3fe19bed7e5729c1c7d231f1 (patch) | |
tree | 7b3f18847324e572eae5bf087ae3778dd53e45f8 /src/or/hibernate.c | |
parent | 6c0fe9d07c40ce453b5c9c7a60cbfd13bf3ca6d7 (diff) | |
download | tor-19c34b46589492be3fe19bed7e5729c1c7d231f1.tar.gz tor-19c34b46589492be3fe19bed7e5729c1c7d231f1.zip |
Move or_connection_t to its own header.
Diffstat (limited to 'src/or/hibernate.c')
-rw-r--r-- | src/or/hibernate.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/hibernate.c b/src/or/hibernate.c index d7d259470f..e2e53b3530 100644 --- a/src/or/hibernate.c +++ b/src/or/hibernate.c @@ -42,6 +42,8 @@ hibernating, phase 2: #include "router.h" #include "statefile.h" +#include "or_connection_st.h" + /** Are we currently awake, asleep, running out of bandwidth, or shutting * down? */ static hibernate_state_t hibernate_state = HIBERNATE_STATE_INITIAL; |