Skip to content

Commit

Permalink
Changed ping6 to ping -6 for windows (phpservermon#936)
Browse files Browse the repository at this point in the history
Resolving phpservermon#935.
  • Loading branch information
TimZ99 authored May 25, 2020
1 parent 07abc7d commit f02d556
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/psm/Util/Server/Updater/StatusUpdater.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,24 +179,24 @@ protected function updatePing($max_runs, $run = 1)
if ($max_runs == null || $max_runs > 1) {
$max_runs = 1;
}
$serverIp = $this->server['ip'];
$pingCommand = 'ping6';
$ping_count = " -c ";

$server_ip = $this->server['ip'];
$ping_command = 'ping';
$ping_count = "-c";
$os_is_windows = strtoupper(substr(PHP_OS, 0, 3)) === 'WIN';
$result = null;

// Choose right ping version, ping6 for IPV6, ping for IPV4
if (filter_var($serverIp, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) === false) {
$pingCommand = 'ping';
if (filter_var($server_ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) !== false) {
$ping_command = $os_is_windows ? 'ping -6' : 'ping6';
}

// Use -n instead of -c for Windows machines
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
$ping_count = " -n ";
if ($os_is_windows) {
$ping_count = "-n";
}

// execute PING
$txt = exec($pingCommand . $ping_count . $max_runs . " " . $serverIp . " 2>&1", $output);
$txt = exec($ping_command . " " . $ping_count . " " . $max_runs . " " . $server_ip . " 2>&1", $output);

// Check if output is PING and if transmitted packets is equal to received packets.
preg_match('/^(\d{1,3}) packets transmitted, (\d{1,3}).*$/', $output[count($output) - 2], $output_package_loss);
Expand Down

0 comments on commit f02d556

Please sign in to comment.