// all other nodes
private void dataReceived(byte[] data, ConnectionThread source) {
PacketListener listener = this.packetListener;
if (listener != null) {
// Send this data to the transmitter in this node!
listener.transmissionStarted();
listener.transmissionEnded(data);
}
// And if this is the server, propagate to the others
if (serverSocket != null) {