mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-11-02 13:37:24 +00:00
Peer: Extract method processVersionAck().
This commit is contained in:
@@ -482,30 +482,7 @@ public class Peer extends PeerSocketHandler {
|
||||
} else if (m instanceof VersionMessage) {
|
||||
processVersionMessage((VersionMessage) m);
|
||||
} else if (m instanceof VersionAck) {
|
||||
if (vPeerVersionMessage == null) {
|
||||
throw new ProtocolException("got a version ack before version");
|
||||
}
|
||||
if (isAcked) {
|
||||
throw new ProtocolException("got more than one version ack");
|
||||
}
|
||||
isAcked = true;
|
||||
this.setTimeoutEnabled(false);
|
||||
for (final ListenerRegistration<PeerConnectedEventListener> registration : connectedEventListeners) {
|
||||
registration.executor.execute(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
registration.listener.onPeerConnected(Peer.this, 1);
|
||||
}
|
||||
});
|
||||
}
|
||||
// We check min version after onPeerConnected as channel.close() will
|
||||
// call onPeerDisconnected, and we should probably call onPeerConnected first.
|
||||
final int version = vMinProtocolVersion;
|
||||
if (vPeerVersionMessage.clientVersion < version) {
|
||||
log.warn("Connected to a peer speaking protocol version {} but need {}, closing",
|
||||
vPeerVersionMessage.clientVersion, version);
|
||||
close();
|
||||
}
|
||||
processVersionAck((VersionAck) m);
|
||||
} else if (m instanceof UTXOsMessage) {
|
||||
processUTXOMessage((UTXOsMessage) m);
|
||||
} else if (m instanceof RejectMessage) {
|
||||
@@ -568,6 +545,33 @@ public class Peer extends PeerSocketHandler {
|
||||
versionHandshakeFuture.set(this);
|
||||
}
|
||||
|
||||
private void processVersionAck(VersionAck m) throws ProtocolException {
|
||||
if (vPeerVersionMessage == null) {
|
||||
throw new ProtocolException("got a version ack before version");
|
||||
}
|
||||
if (isAcked) {
|
||||
throw new ProtocolException("got more than one version ack");
|
||||
}
|
||||
isAcked = true;
|
||||
this.setTimeoutEnabled(false);
|
||||
for (final ListenerRegistration<PeerConnectedEventListener> registration : connectedEventListeners) {
|
||||
registration.executor.execute(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
registration.listener.onPeerConnected(Peer.this, 1);
|
||||
}
|
||||
});
|
||||
}
|
||||
// We check min version after onPeerConnected as channel.close() will
|
||||
// call onPeerDisconnected, and we should probably call onPeerConnected first.
|
||||
final int version = vMinProtocolVersion;
|
||||
if (vPeerVersionMessage.clientVersion < version) {
|
||||
log.warn("Connected to a peer speaking protocol version {} but need {}, closing",
|
||||
vPeerVersionMessage.clientVersion, version);
|
||||
close();
|
||||
}
|
||||
}
|
||||
|
||||
protected void startFilteredBlock(FilteredBlock m) {
|
||||
// Filtered blocks come before the data that they refer to, so stash it here and then fill it out as
|
||||
// messages stream in. We'll call endFilteredBlock when a non-tx message arrives (eg, another
|
||||
|
Reference in New Issue
Block a user