2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 03:06:37 +00:00

PRESENCE: changing ping method for Windows systems to "tcp"

git-svn-id: https://svn.fhem.de/fhem/trunk@3800 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
markusbloch 2013-08-26 21:31:52 +00:00
parent 315d47860f
commit 5b309b7ea2
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
- SVN - SVN
- change: PRESENCE: changing ping method for Windows systems to "tcp"
- feature: install FHEM as Windows service by T.E., see docs/HOWTO_Windows.txt - feature: install FHEM as Windows service by T.E., see docs/HOWTO_Windows.txt
- feature: new module 33_readingsGroup to display a collection of readings - feature: new module 33_readingsGroup to display a collection of readings
from one or more devices. this will replace weblink readings. from one or more devices. this will replace weblink readings.

View File

@ -515,7 +515,7 @@ PRESENCE_DoLocalPingScan($)
if($^O =~ m/(Win|cygwin)/) if($^O =~ m/(Win|cygwin)/)
{ {
eval "require Net::Ping;"; eval "require Net::Ping;";
my $pingtool = Net::Ping->new("syn"); my $pingtool = Net::Ping->new("tcp");
if($pingtool) if($pingtool)
{ {