mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-05 17:48:44 +00:00
DevIo.pm/TcpServerUtils.pm: TCP KEEPALIVE added, as requested in forum#21022
git-svn-id: https://svn.fhem.de/fhem/trunk@5350 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
5641b3cd36
commit
4b02715a44
@ -208,7 +208,8 @@ DevIo_OpenDev($$$)
|
||||
my $timeout = $hash->{TIMEOUT} ? $hash->{TIMEOUT} : 3;
|
||||
my $conn = IO::Socket::INET->new(PeerAddr => $dev, Timeout => $timeout);
|
||||
if($conn) {
|
||||
delete($hash->{NEXT_OPEN})
|
||||
delete($hash->{NEXT_OPEN});
|
||||
$conn->setsockopt(SOL_SOCKET, SO_KEEPALIVE, 1) if(defined($conn));
|
||||
|
||||
} else {
|
||||
Log3 $name, 3, "Can't connect to $dev: $!" if(!$reopen);
|
||||
|
@ -112,6 +112,7 @@ TcpServer_Accept($$)
|
||||
$defs{$cname} = \%nhash;
|
||||
$selectlist{$nhash{NAME}} = \%nhash;
|
||||
|
||||
my $ret = $clientinfo[0]->setsockopt(SOL_SOCKET, SO_KEEPALIVE, 1);
|
||||
|
||||
Log3 $name, 4, "Connection accepted from $nhash{NAME}";
|
||||
return \%nhash;
|
||||
|
Loading…
x
Reference in New Issue
Block a user