worked on wifi-scanner for linux

new time-grouping for vap grouper
adjusted test-cases
minor changes/fixes/improvements
This commit is contained in:
2017-10-11 14:00:24 +02:00
parent 628be72e1f
commit da477866c1
13 changed files with 649 additions and 223 deletions

View File

@@ -58,6 +58,13 @@ public:
/** OPTIONAL: get the AP's ssid (if any) */
inline const std::string& getSSID() const {return ssid;}
/** as string for debuging */
std::string asString() const {
std::string res = "AP(" + mac.asString();
if (!ssid.empty()) {res += ", '" + ssid + "'";}
res += ")";
return res;
}
};