if(msg.command() == Commands.RCON.getNr() && msg.type() == Type.OK) {
LOG.debug("Successfully set up the reverse connection to peer {}", message.recipient().peerId());
rconResponse.response(msg);
} else {
LOG.debug("Could not acquire a reverse connection to peer {}", message.recipient().peerId());
rconResponse.failed("Could not acquire a reverse connection");
futureResponse.failed(rconResponse.failedReason());
}
}
};