Web User Interface

N/A

Phone User Interface

N/A

Firmware

8.7.5.11

XML Configuration

<swupd_curl_timeouts perm="PERMISSIONFLAGS">VALIDVALUE</swupd_curl_timeouts>

Description

The normal firmware update process downloads firmware images via the unix tool curl. This setting allows to modify some curl options which control the timeout and retry behavior in case of slow downloads and/or errors.


The following curl options get their values from this setting:

  --retry
  --connect-timeout
  --max-time
  --retry-max-time


Example: The value "12;30;60;120" would result in the following curl options:

  --retry 12 --connect-timeout 30 --max-time 60 --retry-max-time 120

Please consult the curl documentation at http://curl.haxx.se/docs/manpage.html for information about these options.

Valid Values

Four positive numbers separated by semicolons. The first value must be an integer, for the last three values also decimals are allowed.


The value must match the following regular expression to be accepted:

  ^(0-9+);(.0-9+);(.0-9+);(.0-9+)$

The default value is used if no or an invalid value is given.

Default Value

4;600;600;3600