Man page - nutclient_get_device_command_description(3)
Packages contains this manual
- nutclient_get_device_description(3)
- nutclient_get_device_num_logins(3)
- nutclient_set_device_variable_values(3)
- nutclient_tcp_create_client(3)
- nutclient_tcp_set_timeout(3)
- nutclient_set_device_variable_value(3)
- libnutclient_general(3)
- nutclient_get_device_commands(3)
- libnutclient_misc(3)
- nutclient_get_devices(3)
- nutclient_logout(3)
- nutclient_device_login(3)
- libnutclient_tcp(3)
- nutclient_tcp_disconnect(3)
- libnutclient_variables(3)
- nutclient_get_device_variable_values(3)
- nutclient_authenticate(3)
- nutclient_device_forced_shutdown(3)
- nutclient_destroy(3)
- nutclient_has_device_command(3)
- nutclient_get_device_variable_description(3)
- nutclient_get_device_command_description(3)
- nutclient_has_device_variable(3)
- nutclient_tcp_reconnect(3)
- nutclient_device_master(3)
- nutclient_execute_device_command(3)
- nutclient_get_device_rw_variables(3)
- libnutclient(3)
- nutclient_has_device(3)
- nutclient_get_device_variables(3)
- libnutclient_devices(3)
- libnutclient_commands(3)
- nutclient_tcp_is_connected(3)
- nutclient_tcp_get_timeout(3)
apt-get install libnutclient-dev
Manual
LIBNUTCLIENT_COMMAND
NAMESYNOPSIS
DESCRIPTION
SEE ALSO
NAME
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
SYNOPSIS
#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="");
DESCRIPTION
These functions allow to manage instant commands of devices.
• The nutclient_get_device_commands() function retrieves the list of command names for a device.
The returned strarr must be freed by strarr_free .
• The nutclient_has_device_command function tests if the specified command is supported by the device.
Return 1 is supported and 0 if not.
• 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.
Common arguments:
• dev is the device name.
• cmd is the instant command name.
SEE ALSO
libnutclient (3) libnutclient_devices (3) libnutclient_general (3)