summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/includes/restfunctions.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/WebConsole/includes/restfunctions.php')
-rw-r--r--admin/WebConsole/includes/restfunctions.php17
1 files changed, 17 insertions, 0 deletions
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) {