|
@@ -45,6 +45,7 @@ public class ConnectionImplementation implements Connection {
|
|
|
boolean removed = participants.remove(sd);
|
|
|
if(removed)
|
|
|
removedParticipants.add(sd);
|
|
|
+ if(participants.size()<2)setStatus(Connection.TERMINATED);
|
|
|
return removed;
|
|
|
}
|
|
|
|
|
@@ -72,6 +73,7 @@ public class ConnectionImplementation implements Connection {
|
|
|
public Collection<Packet> getTerminationPackages(long startTime) {
|
|
|
changed=!removedParticipants.isEmpty();
|
|
|
removedParticipants.clear();
|
|
|
+ if(status==TERMINATED)status = DONE;
|
|
|
return protocol.generateNextPakets(null, startTime, false);
|
|
|
}
|
|
|
|