123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- modbus_tcp_pi_accept(3)
- =======================
- NAME
- ----
- modbus_tcp_pi_accept - accept a new connection on a TCP PI Modbus socket (IPv6)
- SYNOPSIS
- --------
- *int modbus_tcp_pi_accept(modbus_t *'ctx', int *'s);*
- DESCRIPTION
- -----------
- The _modbus_tcp_pi_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 _modbus_tcp_pi_accept()_ 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_pi("::0", 502);
- s = modbus_tcp_pi_listen(ctx, 1);
- modbus_tcp_pi_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>
|