diff --git a/HttpServer/Action.php b/HttpServer/Action.php index 480167ec..d8d1462d 100644 --- a/HttpServer/Action.php +++ b/HttpServer/Action.php @@ -134,7 +134,7 @@ trait Action if (empty($port)) { return false; } - exec('netstat -tunlp tcp | grep ' . $port, $output); + exec('netstat -tunlp | grep ' . $port, $output); if (empty($output)) { return false; }