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 static bluetooth::manager::MockBtmSecurityInternalInterface* 26 btm_security_internal_interface = nullptr; 27 SetMockSecurityInternalInterface(MockBtmSecurityInternalInterface * mock_btm_security_internal_interface)28void bluetooth::manager::SetMockSecurityInternalInterface( 29 MockBtmSecurityInternalInterface* mock_btm_security_internal_interface) { 30 btm_security_internal_interface = mock_btm_security_internal_interface; 31 } 32 BTM_GetMaxPacketSize(const RawAddress & addr)33uint16_t BTM_GetMaxPacketSize(const RawAddress& addr) { 34 return RFCOMM_DEFAULT_MTU; 35 } 36 BTM_IsAclConnectionUp(const RawAddress & remote_bda,tBT_TRANSPORT transport)37bool BTM_IsAclConnectionUp(const RawAddress& remote_bda, 38 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