Imported Upstream version 2.7.1
This commit is contained in:
parent
a1fa151fc7
commit
0121794af9
451 changed files with 41339 additions and 10887 deletions
43
docs/man/libnutclient_devices.txt
Normal file
43
docs/man/libnutclient_devices.txt
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
LIBNUTCLIENT_DEVICES(3)
|
||||
=======================
|
||||
|
||||
NAME
|
||||
----
|
||||
|
||||
libnutclient_devices, nutclient_get_devices, nutclient_has_device, nutclient_get_device_description -
|
||||
Device related functions in Network UPS Tools high-level client access library
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
|
||||
#include <nutclient.h>
|
||||
|
||||
typedef void* NUTCLIENT_t;
|
||||
|
||||
strarr nutclient_get_devices(NUTCLIENT_t client);
|
||||
int nutclient_has_device(NUTCLIENT_t client, const char* dev);
|
||||
char* nutclient_get_device_description(NUTCLIENT_t client, const char* dev);
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
|
||||
These functions allow to manage devices.
|
||||
|
||||
The *nutclient_get_devices()* function retrieve the list of devices monitored by a client.
|
||||
The returned strarr must be freed by 'strarr_free'.
|
||||
|
||||
The *nutclient_has_device()* function test if a device is monitored by a client.
|
||||
|
||||
The *nutclient_get_device_description()* function retrieve the device description.
|
||||
The returned description string must be freed.
|
||||
|
||||
'dev' is the device name.
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkman:libnutclient[3]
|
||||
linkman:libnutclient_commands[3]
|
||||
linkman:libnutclient_devices[3]
|
||||
linkman:libnutclient_general[3]
|
||||
linkman:libnutclient_variables[3]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue