diff options
author | Nick Mathewson <nickm@torproject.org> | 2021-06-14 13:10:18 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2021-06-14 13:10:18 -0400 |
commit | d642da020e750f6cff65755dcd66fed6eed2b443 (patch) | |
tree | 05a55a331278a13abf782fcf98db316ee2e72467 /src/app/config/config.c | |
parent | 982829650c59d6807e8c720028c9d766d69cb57c (diff) | |
parent | 265cca935aefd1a3bdbe6abc964858e10fb4a029 (diff) | |
download | tor-d642da020e750f6cff65755dcd66fed6eed2b443.tar.gz tor-d642da020e750f6cff65755dcd66fed6eed2b443.zip |
Merge remote-tracking branch 'tor-gitlab/mr/338'
Diffstat (limited to 'src/app/config/config.c')
-rw-r--r-- | src/app/config/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index 4aa8845ae3..7c92694178 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -550,6 +550,7 @@ static const config_var_t option_vars_[] = { V(MaxUnparseableDescSizeToLog, MEMUNIT, "10 MB"), VPORT(MetricsPort), V(MetricsPortPolicy, LINELIST, NULL), + V(TestingMinTimeToReportBandwidth, INTERVAL, "1 day"), VAR("MyFamily", LINELIST, MyFamily_lines, NULL), V(NewCircuitPeriod, INTERVAL, "30 seconds"), OBSOLETE("NamingAuthoritativeDirectory"), @@ -3980,6 +3981,7 @@ options_validate_cb(const void *old_options_, void *options_, char **msg) CHECK_DEFAULT(TestingSigningKeySlop); CHECK_DEFAULT(TestingAuthKeySlop); CHECK_DEFAULT(TestingLinkKeySlop); + CHECK_DEFAULT(TestingMinTimeToReportBandwidth); or_options_free(dflt_options); } #undef CHECK_DEFAULT |