File: upscli_sendline.txt

package info (click to toggle)
nut 2.8.4%2Breally-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,720 kB
  • sloc: ansic: 132,030; sh: 17,256; cpp: 12,566; makefile: 5,646; python: 1,114; perl: 856; xml: 47
file content (49 lines) | stat: -rw-r--r-- 1,367 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
UPSCLI_SENDLINE(3)
==================

NAME
----

upscli_sendline, upscli_sendline_timeout - Send a single command to a UPS

SYNOPSIS
--------

------
	#include <upsclient.h>
	#include <time.h> /* or <sys/time.h> on some platforms */

	int upscli_sendline(UPSCONN_t *ups, const char *buf, size_t buflen);

	int upscli_sendline_timeout(UPSCONN_t *ups, const char *buf, size_t buflen,
		const time_t timeout);
------

DESCRIPTION
-----------

The *upscli_sendline()* and *upscli_sendline_timeout()* functions take the
pointer 'ups' to a `UPSCONN_t` state structure and transmit a buffer 'buf'
of size 'buflen' to the server.

The data in 'buf' must be a fully formatted protocol command as no
parsing of the buffer occurs within this function.

The difference between the two functions is that *upscli_sendline_timeout()*
lets the caller decide the amount of time ('timeout' seconds) after which it
should give up and return, whereas *upscli_sendline()* does not offer this
freedom, and uses an immediate timeout (0 second).

RETURN VALUE
------------

The *upscli_sendline()* and *upscli_sendline_timeout()* functions
return '0' on success, or '-1' if an error occurs.

SEE ALSO
--------

linkman:upscli_fd[3], linkman:upscli_get[3],
linkman:upscli_readline[3], linkman:upscli_sendline[3],
linkman:upscli_ssl[3],
linkman:upscli_strerror[3], linkman:upscli_upserror[3]