*/
public CommandChannel(String pServerName, int pServerPort)
throws SRCPException {
try {
socket = new Socket(pServerName, pServerPort);
out = new SocketWriter(socket);
in = new SocketReader(socket);
listeners = new HashSet<CommandDataListener>();
} catch (UnknownHostException e) {
throw new SRCPHostNotFoundException();