Update how controller handles circuit tests -- save results to filesystem.

This commit is contained in:
Adam Ierymenko 2017-03-01 16:33:34 -08:00
parent 136fddc7f1
commit a577b8d381
7 changed files with 100 additions and 102 deletions

View file

@ -141,10 +141,10 @@ void Peer::received(
path->trustedPacketReceived(now);
}
if (hops == 0) {
if (_vProto >= 9)
path->updateLinkQuality((unsigned int)(packetId & 7));
if (_vProto >= 9)
path->updateLinkQuality((unsigned int)(packetId & 7));
if (hops == 0) {
bool pathIsConfirmed = false;
{
Mutex::Lock _l(_paths_m);