2013-11-24 17:00:12 +02:00
|
|
|
LIBNUTCLIENT_COMMANDS(3)
|
|
|
|
========================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
|
2022-07-10 10:23:45 +03:00
|
|
|
libnutclient_commands, nutclient_get_device_commands,
|
|
|
|
nutclient_has_device_command, nutclient_get_device_command_description,
|
|
|
|
nutclient_execute_device_command -
|
|
|
|
Instant command related functions in Network UPS Tools high-level client
|
|
|
|
access library
|
2013-11-24 17:00:12 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
|
|
|
|
#include <nutclient.h>
|
|
|
|
|
|
|
|
typedef void* NUTCLIENT_t;
|
|
|
|
|
2022-07-10 10:23:45 +03:00
|
|
|
typedef char** strarr;
|
|
|
|
|
|
|
|
strarr nutclient_get_device_commands(
|
|
|
|
NUTCLIENT_t client,
|
|
|
|
const char* dev);
|
|
|
|
|
|
|
|
int nutclient_has_device_command(
|
|
|
|
NUTCLIENT_t client,
|
|
|
|
const char* dev, const char* cmd);
|
|
|
|
|
|
|
|
char* nutclient_get_device_command_description(
|
|
|
|
NUTCLIENT_t client,
|
|
|
|
const char* dev, const char* cmd);
|
|
|
|
|
|
|
|
void nutclient_execute_device_command(
|
|
|
|
NUTCLIENT_t client,
|
|
|
|
const char* dev, const char* cmd,
|
|
|
|
const char* param="");
|
2013-11-24 17:00:12 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
|
|
|
These functions allow to manage instant commands of devices.
|
|
|
|
|
2022-07-10 10:23:45 +03:00
|
|
|
* The *nutclient_get_device_commands()* function retrieves
|
|
|
|
the list of command names for a device.
|
|
|
|
+
|
2013-11-24 17:00:12 +02:00
|
|
|
The returned strarr must be freed by 'strarr_free'.
|
|
|
|
|
2022-07-10 10:23:45 +03:00
|
|
|
* The *nutclient_has_device_command* function tests if the
|
|
|
|
specified command is supported by the device.
|
|
|
|
+
|
2013-11-24 17:00:12 +02:00
|
|
|
Return 1 is supported and 0 if not.
|
|
|
|
|
2022-07-10 10:23:45 +03:00
|
|
|
* The *nutclient_get_device_command_description* function
|
|
|
|
retrieves the command description, if any.
|
|
|
|
+
|
|
|
|
The returned string must be freed.
|
|
|
|
|
|
|
|
* The *nutclient_execute_device_command* intends to execute
|
|
|
|
the instant command, with an optional parameter.
|
2013-11-24 17:00:12 +02:00
|
|
|
|
2022-07-10 10:23:45 +03:00
|
|
|
Common arguments:
|
2013-11-24 17:00:12 +02:00
|
|
|
|
2022-07-10 10:23:45 +03:00
|
|
|
* 'dev' is the device name.
|
2013-11-24 17:00:12 +02:00
|
|
|
|
2022-07-10 10:23:45 +03:00
|
|
|
* 'cmd' is the instant command name.
|
2013-11-24 17:00:12 +02:00
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
2022-07-10 10:23:45 +03:00
|
|
|
|
2013-11-24 17:00:12 +02:00
|
|
|
linkman:libnutclient[3]
|
|
|
|
linkman:libnutclient_devices[3]
|
|
|
|
linkman:libnutclient_general[3]
|