public void read(ONL.Reader rdr) throws java.io.IOException { setHost(new String(rdr.readString())); setPort(rdr.readInt()); short cid = (short) rdr.readShort(); ExpCoordinator.print( new String("NCCPConnection.read host:" + getHost() + " port:" + getPort() + " cid:" + cid), 5); if (proxy != null) proxy.setConnectionID(this, cid); }
public void setConnectionID(short cid) { ExpCoordinator.print( new String( "NCCPConnection.setConnectionID host:" + getHost() + " port:" + getPort() + " cid:" + cid), 5); if (proxy != null) proxy.setConnectionID(this, cid); }