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

Commit 0630d6ff 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

am: 07b34ba9

Change-Id: I8781b8df0ec631cf4675335c30f7954254b0c617
parents 9552ff47 07b34ba9
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
@@ -48,6 +48,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;
        }