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

Commit 9c026902 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add eventsEnabled field to UsdPublishConfig." into main

parents c01446a9 3e403e47
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@ parcelable UsdPublishConfig {
  boolean isFsd;
  int announcementPeriodMillis;
  android.hardware.wifi.supplicant.UsdPublishTransmissionType transmissionType;
  boolean eventsEnabled;
  enum PublishType {
    SOLICITED_ONLY = 0,
    UNSOLICITED_ONLY = 1,
+7 −0
Original line number Diff line number Diff line
@@ -68,4 +68,11 @@ parcelable UsdPublishConfig {
     * Type of the publish transmission (ex. unicast, multicast).
     */
    UsdPublishTransmissionType transmissionType;

    /**
     * Whether to enable publish replied events. If disabled, then
     * |ISupplicantStaIfaceCallback.onUsdPublishReplied| will not be
     * called for this session.
     */
    boolean eventsEnabled;
}