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

Commit 902dc833 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "flatbuffers: Add privacy levels to init flags InitFlagsData"

parents 008f375c 3291b9a7
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -3,15 +3,15 @@ namespace bluetooth.common;
attribute "privacy";

table InitFlagsData {
    title:string;
    gd_advertising_enabled:bool;
    gd_scanning_enabled:bool;
    gd_security_enabled:bool;
    gd_acl_enabled:bool;
    gd_hci_enabled:bool;
    gd_controller_enabled:bool;
    gd_core_enabled:bool;
    btaa_hci_log_enabled:bool;
    title:string (privacy:"Any");
    gd_advertising_enabled:bool (privacy:"Any");
    gd_scanning_enabled:bool (privacy:"Any");
    gd_security_enabled:bool (privacy:"Any");
    gd_acl_enabled:bool (privacy:"Any");
    gd_hci_enabled:bool (privacy:"Any");
    gd_controller_enabled:bool (privacy:"Any");
    gd_core_enabled:bool (privacy:"Any");
    btaa_hci_log_enabled:bool (privacy:"Any");
}

root_type InitFlagsData;