--- experimental/agents/AgentStation.java 2001/05/04 02:04:35 1.2 +++ experimental/agents/AgentStation.java 2001/05/06 19:01:48 1.3 @@ -9,7 +9,7 @@ import java.util.ArrayList; * An implementation of an agent station * * @author $Author: ajm $ - * @version $Id: AgentStation.java,v 1.2 2001/05/04 02:04:35 ajm Exp $ + * @version $Id: AgentStation.java,v 1.3 2001/05/06 19:01:48 ajm Exp $ */ class AgentStation extends Station { @@ -18,7 +18,7 @@ class AgentStation extends Station { /** * The current CVS revision of this class */ - public static final String REVISION = "$Revision: 1.2 $"; + public static final String REVISION = "$Revision: 1.3 $"; public static final int DIRECT_LISTEN_PORT = 32497; @@ -78,6 +78,7 @@ class AgentStation extends Station { PeerHandler peerHandler = new PeerHandler(socket); addPeer(peerHandler); + peerHandler.start(); } catch (IOException e) { _logger.write(toString(), Logger.ERROR, "I/O ERROR - " + e); }