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

Commit 07b34ba9 authored by Chiachang Wang's avatar Chiachang Wang Committed by android-build-merger
Browse files

Merge "Support partial connectivity probe result option" am: da0ebedb

am: cca7cdc8

Change-Id: Ic1ea01ee3d6ac2f01f843fbf71684b6f7b21bd41
parents 88b0f9bf cca7cdc8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ enum ProbeResult {
    VALID = 1;
    INVALID = 2;
    PORTAL = 3;
    PARTIAL = 4;
}

enum ApBand {
+2 −0
Original line number Diff line number Diff line
@@ -46,6 +46,8 @@ public class DataStallStatsUtils {
            return DataStallEventProto.VALID;
        } else if (result.isPortal()) {
            return DataStallEventProto.PORTAL;
        } else if (result.isPartialConnectivity()) {
            return DataStallEventProto.PARTIAL;
        } else {
            return DataStallEventProto.INVALID;
        }