|
@@ -496,6 +496,7 @@ static const config_var_t testing_tor_network_defaults[] = {
|
|
V(TestingEnableCellStatsEvent, BOOL, "1"),
|
|
V(TestingEnableCellStatsEvent, BOOL, "1"),
|
|
V(TestingEnableTbEmptyEvent, BOOL, "1"),
|
|
V(TestingEnableTbEmptyEvent, BOOL, "1"),
|
|
VAR("___UsingTestNetworkDefaults", BOOL, UsingTestNetworkDefaults_, "1"),
|
|
VAR("___UsingTestNetworkDefaults", BOOL, UsingTestNetworkDefaults_, "1"),
|
|
|
|
+ V(RendPostPeriod, INTERVAL, "2 minutes"),
|
|
|
|
|
|
{ NULL, CONFIG_TYPE_OBSOLETE, 0, NULL }
|
|
{ NULL, CONFIG_TYPE_OBSOLETE, 0, NULL }
|
|
};
|
|
};
|
|
@@ -2492,6 +2493,7 @@ compute_publishserverdescriptor(or_options_t *options)
|
|
|
|
|
|
* services can overload the directory system. */
|
|
* services can overload the directory system. */
|
|
#define MIN_REND_POST_PERIOD (10*60)
|
|
#define MIN_REND_POST_PERIOD (10*60)
|
|
|
|
+#define MIN_REND_POST_PERIOD_TESTING (5)
|
|
|
|
|
|
|
|
|
|
* too high, our selection of exits will decrease for an extended
|
|
* too high, our selection of exits will decrease for an extended
|
|
@@ -2976,10 +2978,13 @@ options_validate(or_options_t *old_options, or_options_t *options,
|
|
options->MinUptimeHidServDirectoryV2 = 0;
|
|
options->MinUptimeHidServDirectoryV2 = 0;
|
|
}
|
|
}
|
|
|
|
|
|
- if (options->RendPostPeriod < MIN_REND_POST_PERIOD) {
|
|
+ const int min_rendpostperiod =
|
|
|
|
+ options->TestingTorNetwork ?
|
|
|
|
+ MIN_REND_POST_PERIOD_TESTING : MIN_REND_POST_PERIOD;
|
|
|
|
+ if (options->RendPostPeriod < min_rendpostperiod) {
|
|
log_warn(LD_CONFIG, "RendPostPeriod option is too short; "
|
|
log_warn(LD_CONFIG, "RendPostPeriod option is too short; "
|
|
- "raising to %d seconds.", MIN_REND_POST_PERIOD);
|
|
+ "raising to %d seconds.", min_rendpostperiod);
|
|
- options->RendPostPeriod = MIN_REND_POST_PERIOD;
|
|
+ options->RendPostPeriod = min_rendpostperiod;;
|
|
}
|
|
}
|
|
|
|
|
|
if (options->RendPostPeriod > MAX_DIR_PERIOD) {
|
|
if (options->RendPostPeriod > MAX_DIR_PERIOD) {
|