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

Commit b7b706d4 authored by David Su's avatar David Su Committed by android-build-merger
Browse files

Merge "wifi.proto: Add link probe event to StaEvent" into qt-dev

am: a3ef6c2d

Change-Id: I346252a5e85de6d40466e0691296a7f8706d2bd3
parents e21b748b a3ef6c2d
Loading
Loading
Loading
Loading
+15 −0
Original line number Original line Diff line number Diff line
@@ -956,6 +956,9 @@ message StaEvent {
    // The NetworkAgent Wifi usability score has changed in a way that may
    // The NetworkAgent Wifi usability score has changed in a way that may
    // impact connectivity
    // impact connectivity
    TYPE_WIFI_USABILITY_SCORE_BREACH = 20;
    TYPE_WIFI_USABILITY_SCORE_BREACH = 20;

    // Link probe was performed
    TYPE_LINK_PROBE = 21;
  }
  }


  enum FrameworkDisconnectReason {
  enum FrameworkDisconnectReason {
@@ -1077,6 +1080,18 @@ message StaEvent {
  // Prediction horizon (in second) of Wifi usability score provided by external
  // Prediction horizon (in second) of Wifi usability score provided by external
  // system app
  // system app
  optional int32 last_prediction_horizon_sec = 16 [default = -1];
  optional int32 last_prediction_horizon_sec = 16 [default = -1];

  // Only valid if event type == TYPE_LINK_PROBE.
  // true if link probe succeeded, false otherwise.
  optional bool link_probe_was_success = 17;

  // Only valid if event type == TYPE_LINK_PROBE and link_probe_was_success == true.
  // Elapsed time, in milliseconds, of a successful link probe.
  optional int32 link_probe_success_elapsed_time_ms = 18;

  // Only valid if event type == TYPE_LINK_PROBE and link_probe_was_success == false.
  // Failure reason for an unsuccessful link probe.
  optional LinkProbeStats.LinkProbeFailureReason link_probe_failure_reason = 19;
}
}


// Wi-Fi Aware metrics
// Wi-Fi Aware metrics