--- projects/cms/source/server/uk/org/iscream/cms/server/filter/TCPReaderInit.java 2001/05/29 17:02:35 1.25 +++ projects/cms/source/server/uk/org/iscream/cms/server/filter/TCPReaderInit.java 2002/03/21 13:01:21 1.26 @@ -16,7 +16,7 @@ import uk.org.iscream.cms.server.util.*; * This provides Host heartbeat functionality * * @author $Author: tdb $ - * @version $Id: TCPReaderInit.java,v 1.25 2001/05/29 17:02:35 tdb Exp $ + * @version $Id: TCPReaderInit.java,v 1.26 2002/03/21 13:01:21 tdb Exp $ */ class TCPReaderInit extends Thread { @@ -25,7 +25,7 @@ class TCPReaderInit extends Thread { /** * The current CVS revision of this class */ - public final String REVISION = "$Revision: 1.25 $"; + public final String REVISION = "$Revision: 1.26 $"; //---STATIC METHODS--- @@ -146,7 +146,7 @@ class TCPReaderInit extends Thread { String inBound = getInBound(); // check if it's what we're expecting if(!inBound.equals(expected)) { - throw new IOException("protocol error - expected:"+expected+" got:" + inBound); + throw new IOException("protocol error from "+_socket.getInetAddress().getHostName()+" - expected:"+expected+" got:" + inBound); } // it should be ok then return inBound;