diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-08-26 19:32:41 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-08-28 09:42:17 -0400 |
commit | 3af1cee6d91a03912ffa0ddb866b5a85683cf178 (patch) | |
tree | a74cd703b22714ae1e72534ccc4015ae72973c43 /src/app | |
parent | 12d980027a52fd8a5c0a5f0c4088ce91b15f0a92 (diff) | |
download | tor-3af1cee6d91a03912ffa0ddb866b5a85683cf178.tar.gz tor-3af1cee6d91a03912ffa0ddb866b5a85683cf178.zip |
Document or_options_t.subconfigs_
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/config/or_options_st.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/app/config/or_options_st.h b/src/app/config/or_options_st.h index 2c1a8f0c00..32dcd9fb18 100644 --- a/src/app/config/or_options_st.h +++ b/src/app/config/or_options_st.h @@ -1109,7 +1109,12 @@ struct or_options_t { **/ int DormantCanceledByStartup; - /**DOCDOC*/ + /** + * Configuration objects for individual modules. + * + * Never access this field or its members directly: instead, use the module + * in question to get its relevant configuration object. + */ struct config_suite_t *subconfigs_; }; |