Index: sources/wifi/WifiInterface.h =================================================================== diff -u -rea52cee2614f319804690a9b1d5091bed9676753 -r5600d2133dd0ea6dc1f733aa78bd26e2a4892a38 --- sources/wifi/WifiInterface.h (.../WifiInterface.h) (revision ea52cee2614f319804690a9b1d5091bed9676753) +++ sources/wifi/WifiInterface.h (.../WifiInterface.h) (revision 5600d2133dd0ea6dc1f733aa78bd26e2a4892a38) @@ -27,8 +27,12 @@ bool _init = false; bool _scanRunning = false; QProcess _scanProcess; + QProcess _wifiInterfaceProcess; + const QString _iface = "wlan0"; + const QString _wpaSupplicantConfPath = "/etc/wpa_supplicant.conf"; + // Singleton SINGLETON(WifiInterface) @@ -40,6 +44,7 @@ public slots: bool doInit(); void doScan(); + void doJoinNetwork(const Network &vNetwork, const QString &vPassword); signals: void didAddNetwork(const Network);