Minor fixes

This commit is contained in:
romanman 2014-11-07 10:23:46 -05:00
parent 370ec383c7
commit d8388222fe
4 changed files with 13 additions and 13 deletions

View File

@ -26,7 +26,7 @@
<property name="artifact.groupId" value="org.ethereum"/>
<property name="artifact.id" value="ethereumj"/>
<property name="artifact.version" value="0.7.8"/>
<property name="artifact.version" value="0.7.9"/>
<property name="artifact.path" value="" />
<property name="artifact.snapshot" value="snapshot" />

View File

@ -6,6 +6,7 @@ import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.nio.NioSocketChannel;
import io.netty.handler.timeout.ReadTimeoutHandler;
import org.ethereum.manager.WorldManager;
import org.ethereum.net.MessageQueue;
import org.ethereum.net.PeerListener;
import org.ethereum.net.eth.EthHandler;
@ -106,20 +107,14 @@ public class PeerClient {
throw new Error("Disconnnected");
} finally {
workerGroup.shutdownGracefully();
p2pHandler.killTimers();
/*
final Set<PeerData> peers = WorldManager.getInstance().getPeerDiscovery().getPeers();
if (!peerDiscoveryMode){
if (WorldManager.getInstance().getListener() != null)
WorldManager.getInstance().getListener().
onPeerDisconnect(host, port);
}
synchronized (peers) {
for (PeerData peer : peers) {
if (host.equals(peer.getAddress().getHostAddress())
&& port == peer.getPort())
peer.setOnline(false);
}
}
*/
}
}

View File

@ -41,7 +41,7 @@ public class StaticMessages {
List<Capability> capabilities = Arrays.asList(
new Capability(Capability.ETH, EthHandler.VERSION),
new Capability(Capability.SHH, ShhHandler.VERSION));
int listenPort = 30303;
int listenPort = 333;
return new HelloMessage(p2pVersion, helloAnnouncement,
capabilities, listenPort, PEER_ID);

View File

@ -51,6 +51,11 @@ public class DisconnectMessage extends P2pMessage {
return encoded;
}
@Override
public P2pMessageCodes getCommand(){
return P2pMessageCodes.DISCONNECT;
}
@Override
public Class<?> getAnswerMessage() {
return null;