t_listen - listen for a connection indication
#include <xti.h>
int t_listen(
int fd,
struct t_call *call)
The t_listen(3) function listens for a connection indication from a calling transport user. The fd argument identifies the local transport endpoint where connection indications arrive, and on return, call contains information describing the connection indication.
Before call | Parameters | After call |
---|---|---|
fd | x | / |
call-> | addr.maxlen | x |
call-> | addr.len | / |
call-> | addr.buf | ? |
call-> | opt.maxlen | x |
call-> | opt.len | / |
call-> | opt.buf | ? |
call-> | udata.maxlen | x |
call-> | udata.len | / |
call-> | udata.buf | ? |
call-> | sequence | / |
The parameter call points to a t_call structure which contains the following members:
struct netbuf addr;
struct netbuf opt;
struct netbuf udata;
int sequence;
In call, addr returns the protocol address of the calling transport user. This address is in a format usable in future calls to t_connect(3). Note, however that t_connect(3) may fail for other reasons, for example [TADDRBUSY]. opt returns options associated with the connection indication, udata returns any user data sent by the caller on the connection request, and sequence is a number that uniquely identifies the returned connection indication. The value of sequence enables the user to listen for multiple connection indications before responding to any of them.
Since this function returns values for the addr, opt and udata fields of call, the maxlen field of each must be set before issuing the t_listen(3) to indicate the maximum size of the buffer for each. If the maxlen field of call->addr, call->opt, or call->udata is set to zero, no information is returned for this parameter.
By default, t_listen(3) executes in synchronous mode and waits for a connection indication to arrive before returning to the user. However, if O_NONBLOCK is set through t_open(3) or fcntl(), t_listen(3) executes asynchronously, reducing to a poll for existing connection indications. If none are available, it returns -1 and sets t_errno to [TNODATA].
T_IDLE, T_INCON
On failure, t_errno is set to one of the following:
Some transport providers do not differentiate between a connection indication and the connection itself. If this is the case, a successful return of t_listen(3) indicates an existing connection.
Upon successful completion, a value of 0 is returned. Otherwise, a value of -1 is returned and t_errno is set to indicate an error.
fcntl(3)
t_accept(3)
t_alloc(3)
t_bind(3)
t_connect(3)
t_open(3)
t_optmgmt(3)
t_rcvconnect(3)