Removed security field, detection is not error proof for all tools.

This commit is contained in:
Christian Kuster
2016-04-06 21:06:13 +02:00
parent 5e2ddc49ee
commit cb7743fe1c
10 changed files with 104 additions and 43 deletions

View File

@ -31,8 +31,7 @@ function parseOutput(str, callback) {
'ssid' : _.trim(lines[i].substr(0, macStart), ' \''),
'mac' : elements[0].trim(),
'channel' : parseInt(elements[2].trim(), 10),
'rssi' : parseInt(elements[1].trim()),
'security': 'TODO'
'rssi' : parseInt(elements[1].trim())
});
}
}