2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00
git-svn-id: https://svn.fhem.de/fhem/trunk@2989 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2013-03-26 09:01:47 +00:00
parent 31b1edc3c1
commit 46251855fa

View File

@ -74,6 +74,13 @@ BlockingCall($$@)
}
# Child here
foreach my $d (sort keys %defs) { # Close all open TCP-Server sockets
my $h = $defs{$d};
next if(!$h->{SERVERSOCKET});
TcpServer_Close($h);
}
no strict "refs";
my $ret = &{$blockingFn}($arg);
use strict "refs";