diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-04-18 11:30:16 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-04-22 15:55:09 -0400 |
commit | 510220844774dee27f40204ee24a70b81af1dcb5 (patch) | |
tree | 74fb1a37c6fdec2765572176816529dea8449762 /src/or/confparse.h | |
parent | 8b6fc47cc30521195124191cdd4a6324baf652a6 (diff) | |
download | tor-510220844774dee27f40204ee24a70b81af1dcb5.tar.gz tor-510220844774dee27f40204ee24a70b81af1dcb5.zip |
Improve documentation for CONFIG_TYPE_CSV_INTERVAL.
Diffstat (limited to 'src/or/confparse.h')
-rw-r--r-- | src/or/confparse.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/confparse.h b/src/or/confparse.h index 64ea65d1b9..4b4bf0adb4 100644 --- a/src/or/confparse.h +++ b/src/or/confparse.h @@ -28,7 +28,9 @@ typedef enum config_type_t { * optional whitespace. */ CONFIG_TYPE_CSV_INTERVAL, /**< A list of strings, separated by commas and * optional whitespace, representing intervals in - * seconds, with optional units */ + * seconds, with optional units. We allow + * multiple values here for legacy reasons, but + * ignore every value after the first. */ CONFIG_TYPE_LINELIST, /**< Uninterpreted config lines */ CONFIG_TYPE_LINELIST_S, /**< Uninterpreted, context-sensitive config lines, * mixed with other keywords. */ |