// the message must have set the keepAlive Flag true. If not, the relay
// peer will close the PeerConnection to the unreachable peer.
rconMessage.keepAlive(true);
// making the message ready to send
PeerAddress recipient = message.recipient().changeAddress(socketAddress.inetAddress())
.changePorts(socketAddress.tcpPort(), socketAddress.udpPort()).changeRelayed(false);
rconMessage.recipient(recipient);
rconMessage.command(RPC.Commands.RCON.getNr());
rconMessage.type(Message.Type.REQUEST_1);
return rconMessage;
}