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

Commit 4919df12 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Use BASIC rather than LE_CREDIT_BASED channel for LE Fixed channels"...

Merge "Use BASIC rather than LE_CREDIT_BASED channel for LE Fixed channels" am: e3c00c82 am: 5f2c2f03 am: 75bbccf0

Change-Id: I34af28e73f270eb058c5cf0f73fea42177af43d2
parents 00b10bb7 75bbccf0
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -64,8 +64,7 @@ void Link::UpdateConnectionParameter(SignalId signal_id, uint16_t conn_interval_


std::shared_ptr<FixedChannelImpl> Link::AllocateFixedChannel(Cid cid, SecurityPolicy security_policy) {
std::shared_ptr<FixedChannelImpl> Link::AllocateFixedChannel(Cid cid, SecurityPolicy security_policy) {
  auto channel = fixed_channel_allocator_.AllocateChannel(cid, security_policy);
  auto channel = fixed_channel_allocator_.AllocateChannel(cid, security_policy);
  data_pipeline_manager_.AttachChannel(cid, channel,
  data_pipeline_manager_.AttachChannel(cid, channel, l2cap::internal::DataPipelineManager::ChannelMode::BASIC);
                                       l2cap::internal::DataPipelineManager::ChannelMode::LE_CREDIT_BASED);
  return channel;
  return channel;
}
}