diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-11-05 11:58:31 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-11-07 07:28:43 -0500 |
commit | 280a9a476031db7c5c5923b0ad9b23e475abeae9 (patch) | |
tree | 25f761afa02a8ae26b590fbc60f825a6e41f6e69 /src/app/config/statefile.h | |
parent | 3afbb29bee060b191e10aaec134a819047c3cf5e (diff) | |
download | tor-280a9a476031db7c5c5923b0ad9b23e475abeae9.tar.gz tor-280a9a476031db7c5c5923b0ad9b23e475abeae9.zip |
Move netstatus (mainloop) state fields into mainloop's state.
Diffstat (limited to 'src/app/config/statefile.h')
-rw-r--r-- | src/app/config/statefile.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/config/statefile.h b/src/app/config/statefile.h index 515c90a52f..60171f8d13 100644 --- a/src/app/config/statefile.h +++ b/src/app/config/statefile.h @@ -31,6 +31,8 @@ STATIC struct config_line_t *get_transport_in_state_by_name( STATIC void or_state_free_(or_state_t *state); #define or_state_free(st) FREE_AND_NULL(or_state_t, or_state_free_, (st)) STATIC or_state_t *or_state_new(void); +struct config_mgr_t; +STATIC const struct config_mgr_t *get_state_mgr(void); #endif /* defined(STATEFILE_PRIVATE) */ #endif /* !defined(TOR_STATEFILE_H) */ |