Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 14b628a3 authored by Dmitry Shmidt's avatar Dmitry Shmidt
Browse files

wifi: Add delimiter flag into bss scan results request



Change-Id: I2989ef1ee884db6add0405f36b628701aa928f69
Signed-off-by: default avatarDmitry Shmidt <dimitrysh@google.com>
parent bc086862
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -210,13 +210,14 @@ public class WifiNative {
     * age=2623
     * flags=[WPA2-PSK-CCMP][WPS][ESS]
     * ssid=zubyb
     * ====
     *
     * RANGE=ALL gets all scan results
     * RANGE=ID- gets results from ID
     * MASK=<N> see wpa_supplicant/src/common/wpa_ctrl.h for details
     */
    public String scanResults(int sid) {
        return doStringCommand("BSS RANGE=" + sid + "- MASK=0x1987");
        return doStringCommand("BSS RANGE=" + sid + "- MASK=0x21987");
    }

    public boolean startDriver() {