LIBNUTCLIENT_COMMAND(3) | NUT Manual | LIBNUTCLIENT_COMMAND(3) |
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
#include <nutclient.h>
typedef void* NUTCLIENT_t;
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="");
These functions allow to manage instant commands of devices.
The returned strarr must be freed by strarr_free.
Return 1 is supported and 0 if not.
The returned string must be freed.
Common arguments:
libnutclient(3) libnutclient_devices(3) libnutclient_general(3)
01/25/2023 | Network UPS Tools 2.8.0 |