This group of functions allows TCP/IP or UDP sockets to be set up for interprocess communications. These functions can be used in conjunction with the stream input/output functions described above to allow direct encoding and decoding of XML messages to and from socket connections.
The key functions in this group are as follows:
rtxSocketAccept - This function accepts an incoming connection request on a socket.
rtxSocketBind - This function associates a local address with a socket.
rtxSocketConnect -This function establishes a connection on a specified socket.
rtxSocketCreate - This function creates a new socket.
rtxSocketListen - This function places a socket in a state where it is listening for an incoming connection.
rtxSocketRecv -This function receives (reads) data from a connected socket.
rtxSocketWrite - This function writes data to a socket connection.
For a complete list and full description of all of the stream input/output functions, see the XBinder C/ C++ Runtime Reference Manual.