1 /******************************************************************************
2  *
3  *  Copyright 2018 The Android Open Source Project
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at:
8  *
9  *  http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  ******************************************************************************/
18 
19 #include "mock_btm_layer.h"
20 
21 #include "stack/include/btm_client_interface.h"
22 #include "stack/include/rfcdefs.h"
23 #include "types/raw_address.h"
24 
25 // TODO(b/369381361) Enfore -Wmissing-prototypes
26 #pragma GCC diagnostic ignored "-Wmissing-prototypes"
27 
28 static bluetooth::manager::MockBtmSecurityInternalInterface* btm_security_internal_interface =
29         nullptr;
30 
SetMockSecurityInternalInterface(MockBtmSecurityInternalInterface * mock_btm_security_internal_interface)31 void bluetooth::manager::SetMockSecurityInternalInterface(
32         MockBtmSecurityInternalInterface* mock_btm_security_internal_interface) {
33   btm_security_internal_interface = mock_btm_security_internal_interface;
34 }
35 
BTM_GetMaxPacketSize(const RawAddress &)36 uint16_t BTM_GetMaxPacketSize(const RawAddress& /*addr*/) { return RFCOMM_DEFAULT_MTU; }
37 
BTM_IsAclConnectionUp(const RawAddress &,tBT_TRANSPORT)38 bool BTM_IsAclConnectionUp(const RawAddress& /*remote_bda*/, tBT_TRANSPORT /*transport*/) {
39   return true;
40 }
41 
42 struct btm_client_interface_t btm_client_interface = {
43         .peer =
44                 {
45                         .BTM_IsAclConnectionUp = BTM_IsAclConnectionUp,
46                         .BTM_GetMaxPacketSize = BTM_GetMaxPacketSize,
47                 },
48 };
49