nut/docs/man/libnutclient_variables.txt

92 lines
2.5 KiB
Text
Raw Permalink Normal View History

2013-11-24 15:00:12 +00:00
LIBNUTCLIENT_VARIABLES(3)
=========================
NAME
----
libnutclient_variables, nutclient_get_device_variables,
nutclient_get_device_rw_variables, nutclient_has_device_variable,
2022-06-29 10:37:36 +00:00
nutclient_get_device_variable_description,
nutclient_get_device_variable_values,
2013-11-24 15:00:12 +00:00
nutclient_set_device_variable_value, nutclient_set_device_variable_values -
2022-06-29 10:37:36 +00:00
Variable related functions in Network UPS Tools high-level client access
library
2013-11-24 15:00:12 +00:00
SYNOPSIS
--------
#include <nutclient.h>
typedef void* NUTCLIENT_t;
2022-06-29 10:37:36 +00:00
typedef char** strarr;
strarr nutclient_get_device_variables(NUTCLIENT_t client,
const char* dev);
strarr nutclient_get_device_rw_variables(NUTCLIENT_t client,
const char* dev);
int nutclient_has_device_variable(NUTCLIENT_t client,
const char* dev, const char* var);
char* nutclient_get_device_variable_description(NUTCLIENT_t client,
const char* dev, const char* var);
strarr nutclient_get_device_variable_values(NUTCLIENT_t client,
const char* dev, const char* var);
void nutclient_set_device_variable_value(NUTCLIENT_t client,
const char* dev, const char* var, const char* value);
void nutclient_set_device_variable_values(NUTCLIENT_t client,
const char* dev, const char* var, const strarr values);
2013-11-24 15:00:12 +00:00
DESCRIPTION
-----------
These functions allow to manage variables of devices.
2022-06-29 10:37:36 +00:00
The *nutclient_get_device_variables()* function retrieves the list
of variables names for a device.
2013-11-24 15:00:12 +00:00
The returned strarr must be freed by 'strarr_free'.
2022-06-29 10:37:36 +00:00
The *nutclient_get_device_rw_variables* function retrieves the list
of read-write variables names for a device.
2013-11-24 15:00:12 +00:00
The returned strarr must be freed by 'strarr_free'.
2022-06-29 10:37:36 +00:00
The *nutclient_has_device_variable* function tests if the specified
variable is supported by the device.
2013-11-24 15:00:12 +00:00
Return 1 is supported and 0 if not.
2022-06-29 10:37:36 +00:00
The *nutclient_get_device_variable_description* function retrieves
the variable description, if any.
The returned string must be freed.
2013-11-24 15:00:12 +00:00
2022-06-29 10:37:36 +00:00
The *nutclient_get_device_variable_values* returns variable values
(generally only one).
2013-11-24 15:00:12 +00:00
The returned strarr must be freed by 'strarr_free'.
2022-06-29 10:37:36 +00:00
The *nutclient_set_device_variable_value* intends to set the value
of the specified variable.
2013-11-24 15:00:12 +00:00
2022-06-29 10:37:36 +00:00
The *nutclient_set_device_variable_values* intends to set multiple
values of the specified variable.
2013-11-24 15:00:12 +00:00
2022-06-29 10:37:36 +00:00
Common arguments:
2013-11-24 15:00:12 +00:00
2022-06-29 10:37:36 +00:00
* 'dev' is the device name.
2013-11-24 15:00:12 +00:00
2022-06-29 10:37:36 +00:00
* 'var' is the variable name.
2013-11-24 15:00:12 +00:00
2022-06-29 10:37:36 +00:00
* 'value' is the variable value.
* 'values' is the variable array of values.
2013-11-24 15:00:12 +00:00
SEE ALSO
--------
2022-06-29 10:37:36 +00:00
2013-11-24 15:00:12 +00:00
linkman:libnutclient[3]
linkman:libnutclient_devices[3]
linkman:libnutclient_general[3]