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

Commit 606000a0 authored by Myles Watson's avatar Myles Watson Committed by android-build-merger
Browse files

Merge "RootCanal: Initialize connecting states to false" am: bb4bd5b4 am:...

Merge "RootCanal: Initialize connecting states to false" am: bb4bd5b4 am: 74edf451 am: 2920d8e9
am: 92a2fef6

Change-Id: I60541639fc745e694c4e842021e9432a23bec34e
parents d4dab4b5 92a2fef6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -62,9 +62,9 @@ class AclConnectionHandler {

 private:
  std::unordered_map<uint16_t, AclConnection> acl_connections_;
  bool classic_connection_pending_;
  bool classic_connection_pending_{false};
  Address pending_connection_address_;
  bool le_connection_pending_;
  bool le_connection_pending_{false};
  Address pending_le_connection_address_;
  uint8_t pending_le_connection_address_type_;
  uint16_t GetUnusedHandle();
+1 −1
Original line number Diff line number Diff line
@@ -260,7 +260,7 @@ class LinkLayerController {
  uint8_t le_scan_filter_duplicates_;
  uint8_t le_address_type_;

  bool le_connect_;
  bool le_connect_{false};
  uint16_t le_connection_interval_min_;
  uint16_t le_connection_interval_max_;
  uint16_t le_connection_latency_;