Forgot to commit the List the saves the network structure

This commit is contained in:
senft-desktop 2012-11-30 10:51:15 +01:00
parent 892ba1e4c7
commit 378ad5f1e0

View File

@ -29,6 +29,11 @@ public class Node {
private Map<Integer, Ack> acks = new HashMap<Integer, Ack>();
/**
* Saves the neighbor of each node in the network
*/
private Map<String, List<String>> network = new HashMap<>();
private volatile Thread thread;
private UDPHandler udpListen;