1 // Copyright 2024 The Pigweed Authors
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); you may not
4 // use this file except in compliance with the License. You may obtain a copy of
5 // the License at
6 //
7 //     https://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 // License for the specific language governing permissions and limitations under
13 // the License.
14 
15 #pragma once
16 
17 #include "pw_bluetooth_proxy/internal/l2cap_signaling_channel.h"
18 
19 namespace pw::bluetooth::proxy {
20 
21 // Signaling channel for managing L2CAP channels over ACL-U logical links.
22 class L2capAclUSignalingChannel : public L2capSignalingChannel {
23  public:
24   explicit L2capAclUSignalingChannel(L2capChannelManager& l2cap_channel_manager,
25                                      uint16_t connection_handle);
26 
27  private:
28   bool OnCFramePayload(pw::span<const uint8_t> cframe_payload) override;
29 };
30 
31 }  // namespace pw::bluetooth::proxy
32