modbus_tcp_accept.txt
1.09 KB
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
50
51
52
53
54
55
56
modbus_tcp_accept(3)
====================
NAME
----
modbus_tcp_accept - accept a new connection on a TCP Modbus socket (IPv4)
SYNOPSIS
--------
*int modbus_tcp_accept(modbus_t *'ctx', int *'s);*
DESCRIPTION
-----------
The *modbus_tcp_accept()* function shall extract the first connection on the
queue of pending connections, create a new socket and store it in libmodbus
context given in argument. If available, _accept4()_ with `SOCK_CLOEXEC` will be
called instead of *accept()*.
RETURN VALUE
------------
The function shall return a new socket if successful.
Otherwise it shall return -1 and set errno.
EXAMPLE
-------
For detailed example, see unit-test-server.c source file in tests directory.
[source,c]
-------------------
...
ctx = modbus_new_tcp("127.0.0.1", 502);
s = modbus_tcp_listen(ctx, 1);
modbus_tcp_accept(ctx, &s);
...
close(s)
modbus_free(ctx);
-------------------
SEE ALSO
--------
linkmb:modbus_tcp_pi_accept[3]
linkmb:modbus_tcp_listen[3]
linkmb:modbus_tcp_pi_listen[3]
AUTHORS
-------
The libmodbus documentation was written by Stéphane Raimbault
<stephane.raimbault@gmail.com>