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

Commit ca7886c2 authored by Chris Manton's avatar Chris Manton
Browse files

Add shim ACL layer when rust is enabled

Still require an acl shim for functionality and
bridging between legacy and gd/rust

Bug: 206968047
Tag: #refactor
Test: gd/cert/run

Change-Id: I1791dc0be4dc546c0b430b673f5ab0850b6575e5
parent 48d9ef03
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -120,6 +120,12 @@ void Stack::StartEverything() {

    // Create pid since we're up and running
    CreatePidFile();

    // Create the acl shim layer
    acl_ = new legacy::Acl(
        stack_handler_, legacy::GetAclInterface(),
        controller_get_interface()->get_ble_acceptlist_size(),
        controller_get_interface()->get_ble_resolving_list_max_size());
    return;
  }