From fce6af9c96d505fc36d6ec1f829ffaaf2b6969ba Mon Sep 17 00:00:00 2001 From: meeki007 <5952964+meeki007@users.noreply.github.com> Date: Sat, 20 Feb 2021 21:20:08 -0500 Subject: [PATCH] ipv6 support change comment --- io/ping/88-ping.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/ping/88-ping.js b/io/ping/88-ping.js index 1385a2cb..12ce1092 100644 --- a/io/ping/88-ping.js +++ b/io/ping/88-ping.js @@ -126,7 +126,7 @@ module.exports = function(RED) { if (plat == "linux" || plat == "android") { commandLineOptions = ["-n", "-w", timeoutS, "-c", "1"]; } else if (plat == "darwin" || plat == "freebsd") { - commandLineOptions = ["-n", "-c", "1"] //NOTE: dont know if -X works on mac OSX + commandLineOptions = ["-n", "-c", "1"] //NOTE: -X / timeout does not work on mac OSX and most freebsd systems } else { node.error("Sorry IPv6 on your platform - "+plat+" - is not supported.", msg); }