diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-01 14:58:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-01 15:20:37 -0400 |
commit | 13116378b1a8118e277320e377a691064e54983a (patch) | |
tree | 2189b9557d1162d93ae3f1e11c85e6929bc9b9ad /src/or/control.h | |
parent | 986d761510c4e5070cbdf8879f49342b7b1350c1 (diff) | |
download | tor-13116378b1a8118e277320e377a691064e54983a.tar.gz tor-13116378b1a8118e277320e377a691064e54983a.zip |
Extract or_options_t from or.h
I decided to have this file included from config.h, though, since it
is used nearly everywhere.
Diffstat (limited to 'src/or/control.h')
-rw-r--r-- | src/or/control.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/control.h b/src/or/control.h index 53ac871078..5c5fe8a917 100644 --- a/src/or/control.h +++ b/src/or/control.h @@ -184,6 +184,7 @@ int control_event_signal(uintptr_t signal); int init_control_cookie_authentication(int enabled); char *get_controller_cookie_file_name(void); +struct config_line_t; smartlist_t *decode_hashed_passwords(struct config_line_t *passwords); void disable_control_logging(void); void enable_control_logging(void); |