From 8634dd3ac37bc821afd0e7f321eb0064247074a2 Mon Sep 17 00:00:00 2001 From: "Jose M. Guisado" Date: Tue, 4 May 2021 15:20:14 +0000 Subject: #995 Show client link speed if available If the clients API response included speed information, show it in the default room view. In case link speed is less than 1000 Mbit, highlight so. --- admin/WebConsole/includes/restfunctions.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'admin/WebConsole/includes/restfunctions.php') diff --git a/admin/WebConsole/includes/restfunctions.php b/admin/WebConsole/includes/restfunctions.php index e7b1e1e6..2141c3b1 100644 --- a/admin/WebConsole/includes/restfunctions.php +++ b/admin/WebConsole/includes/restfunctions.php @@ -77,6 +77,7 @@ define('OG_REST_PARAM_AM_PM', 'am_pm'); define('OG_REST_PARAM_MINUTES', 'minutes'); define('OG_REST_PARAM_MODE', 'mode'); define('OG_REST_PARAM_SCOPE_NAME', 'scope_name'); +define('OG_REST_PARAM_SPEED', 'speed'); define('TYPE_COMMAND', 1); define('TYPE_PROCEDURE', 2); @@ -188,6 +189,22 @@ function clients($case, $ips) { return $trama_notificacion; } +function clients_v2($case, $ips) { + + switch ($case) { + case 1: + $type = POST; + $data = array(OG_REST_PARAM_CLIENTS => $ips); + break; + case 2: + $type = GET; + $data = null; + break; + } + + return common_request(OG_REST_CMD_CLIENTS, $type, $data); +} + function wol($type_wol, $ips) { switch ($type_wol) { -- cgit v1.2.3-18-g5258