Name

SocketReadTimeout — specify timeout on client sockets

SYNOPSIS

time_in_seconds

DESCRIPTION

The SocketReadTimeout directive specifies the amount of time Interchange will wait for data on client sockets.

The default is one second, which is the same as the previous unconfigurable value.

DIRECTIVE TYPE AND DEFAULT VALUE

Global directive

EXAMPLES

Example: Specifying SocketReadTimeout

SocketReadTimeout 5

NOTES

AVAILABILITY

SocketReadTimeout is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 447

['SocketReadTimeout','integer',          1],

Source: lib/Vend/Config.pm
Line 3992 (context shows lines 3992-3999)

sub parse_integer {
my($var, $value) = @_;
$value = hex($value) if $value =~ /^0x[\dA-Fa-f]+$/;
$value = oct($value) if $value =~ /^0[0-7]+$/;
config_error("The $var directive (now set to '$value') must be an integer\n")
  unless $value =~ /^\d+$/;
$value;
}

AUTHORS

Kevin Walsh

SEE ALSO

DocBook! Interchange!