* @param splitter is the message splitter.
* @return the listener.
*/
public TCPListener AddListener(String name, InetAddress ipAddress, int port, int maxConnections, int readBufferSize, int connectionTimeOut, int backLog, String splitter)
{
TCPListener listener = new TCPListener(name, ipAddress, port, maxConnections, readBufferSize, connectionTimeOut, backLog, splitter);
listener.setMyExtasysTCPServer(this);
fListeners.add(listener);
return listener;
}