gensio_acc_control - Man Page
Perform gensio accepter specific actions
Synopsis
#include <gensio/gensio.h>
- int gensio_acc_control(struct gensio_accepter *acc, int depth,
bool get, unsigned int option,
char *data, gensiods *datalen);
Description
gensio_acc_control performs a gensio accepter specific operation on the gensio accepter. This works exactly like gensio_control(3), see that for details on get, depth, and how the data and datalen work.
gensio control operations in option depend on the particular gensio. Below some are documented, but there may be other controls available. See the gensio documentation in gensio(5) for details.
Gensio_acc_control_laddr
Return the given local address for the given gensio. Since a single gensio may have more than one local address, this control provides a means to tell which one. The data string passed in should be the string representation of a the number (like created with snprintf()) for the particular index you want to fetch. If you specify a number larger than the number of open listen sockets, GE_NOTFOUND is returned. The return data is a string holding the address.
Note that a single fetched string may contain more than one address. These will be separated by semicolons. In some cases addresses may change dynamically (like with SCTP), so you get a single set of addresses.
Gensio_acc_control_lport
Return the port for the given local address for the given gensio. Since a single gensio may have more than one local address, this control provides a means to tell which one. The data string passed in should be the string representation of a the number (like created with snprintf()) for the particular index you want to fetch. If you specify a number larger than the number of open listen sockets, GE_NOTFOUND is returned. The return data is a string holding the port number.
Gensio_acc_control_tcpdname
Get or set the TCPD name for the gensio, only for TCP gensios.
Return Values
Zero is returned on success, or a gensio error on failure.