|
NAMEterm_done - half-closes the connectionSYNOPSIS
DESCRIPTIONTERM is a protocol that implements clean terminal handshake between peers. When creating the protocol instance user specifies the terminal message to use. When closing the protocol, terminal messages are exchanged between peers in both directions. After the protocol shuts down the peers agree on their position in the message stream.This function sends the termination message to the peer. Afterwards, it is not possible to send more messages. However, it is still possible to receiving outstanding inbound messages. s: The TERM protocol handle. deadline: A point in time when the operation should time out, in milliseconds. Use the now function to get your current point in time. 0 means immediate timeout, i.e., perform the operation if possible or return without blocking if not. -1 means no deadline, i.e., the call will block forever if the operation cannot be performed. This function is not available if libdill is compiled with --disable-sockets option. RETURN VALUEIn case of success the function returns 0. In case of error it returns -1 and sets errno to one of the values below.ERRORS
EXAMPLE
SEE ALSOmrecv(3) mrecvl(3) msend(3) msendl(3) now(3) term_attach(3) term_attach_mem(3) term_detach(3)
Visit the GSP FreeBSD Man Page Interface. |