diff options
author | Raquel Medina <raquel.medina@konsulko.com> | 2019-09-09 00:35:55 +0200 |
---|---|---|
committer | raquel medina <raquel.medina@konsulko.com> | 2019-09-10 14:09:30 +0000 |
commit | 4221fd2f9e5b72090fe5c2c5f19aa16ab8bf68b8 (patch) | |
tree | 82a6e7e606c85e75e36cdd71c07f6f5aed802f4d /network/wifiadapter.cpp | |
parent | a824dc2de24ac3789207a5fb9d89400bc83891f9 (diff) |
wired: add hooks for addressing configuration
- Add new roles to provide UI clients with the
active configuration (values obtained from the
stack: agl-service-network binding + connman).
- Add Q_INVOKABLE methods to feed new values
from the UI client.
SPEC-2676
Signed-off-by: Raquel Medina <raquel.medina@konsulko.com>
Change-Id: Id239ddc549ec8471d44d56f7631d4e9e3efda798
Diffstat (limited to 'network/wifiadapter.cpp')
-rw-r--r-- | network/wifiadapter.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/network/wifiadapter.cpp b/network/wifiadapter.cpp index 440e541..98f73fa 100644 --- a/network/wifiadapter.cpp +++ b/network/wifiadapter.cpp @@ -83,17 +83,18 @@ bool WifiAdapter::addService(QString id, QJsonObject properties) return false; QString ssid = properties.value("name").toString(); + // Ignore hidden SSIDs or services already added + if (m_model->getNetwork(id) || (ssid == "")) + return false; + QString state = properties.value("state").toString(); int strength = properties.value("strength").toInt(); // Initially support only IPv4 and the first security method found QString address = properties.value("ipv4").toObject().value("address").toString(); QString security = properties.value("security").toArray().at(0).toString(); - // Ignore hidden SSIDs or services already added - if (m_model->getNetwork(id) || (ssid == "")) - return false; - - ConnectionProfile *network = new ConnectionProfile(address, security, id, state, ssid, strength); + ConnectionProfile *network = new ConnectionProfile(address, security, id, state, ssid, + strength, "", "", "", "", ""); m_model->addNetwork(network); if ((state == "ready") || (state == "online")) |