final String message =
"Connection already exists with name " + name;
throw new IllegalArgumentException( message );
}
final AcceptorConfig config = new AcceptorConfig( name, socket, handler );
acceptor = new ConnectionAcceptor( config, getMonitor() );
m_acceptors.put( name, acceptor );
}
final Thread thread =