diff options
author | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-08-24 21:27:26 +0200 |
---|---|---|
committer | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-08-24 21:27:26 +0200 |
commit | b125fa0ca129beaf819f10e7399c9878b47e905e (patch) | |
tree | e4eb5a7bb1babc6d02300f753aa3bc1265dfc0c0 /includes | |
parent | 027cd66297c0f56579db99d97d5fc3122ab4fe4b (diff) |
Add configuration option to change connection timeout.
The timeout can be specified in seconds with the ['timeout'] array index
within the router configuration. The default value is 30 seconds.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/config.defaults.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/config.defaults.php b/includes/config.defaults.php index fa17f66..4439410 100644 --- a/includes/config.defaults.php +++ b/includes/config.defaults.php @@ -26,6 +26,7 @@ function set_defaults_for_routers(&$parsed_config) { $router_defaults = array( + 'timeout' => 30, 'disable_ipv6' => false, 'disable_ipv4' => false ); |