msg_accept - accept a connection from a client
Synopsis
Description
#include <sys/msg.h>
int msg_accept(long handle);
The msg_accept() system service is used by a server to accept an incoming connection from a client. After this call, the client will be able to exchange messages with the server.handle is the value passed in m_sender field of the MSG_CONNECT message received by the server on its port using msg_receive().
MSG_ACCEPT (2) |