1 /******************************************************************************
2 *
3 * Copyright 2003-2012 Broadcom Corporation
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 /******************************************************************************
20 *
21 * This is the API implementation file for the BTA device manager.
22 *
23 ******************************************************************************/
24 #include <base/functional/bind.h>
25
26 #include <memory>
27
28 #include "bta/dm/bta_dm_sec_int.h"
29 #include "stack/include/main_thread.h"
30 #include "types/raw_address.h"
31
32 // TODO(b/369381361) Enfore -Wmissing-prototypes
33 #pragma GCC diagnostic ignored "-Wmissing-prototypes"
34
35 /*******************************************************************************
36 *
37 * Function bta_dm_ci_rmt_oob
38 *
39 * Description This function must be called in response to function
40 * bta_dm_co_rmt_oob() to provide the OOB data associated
41 * with the remote device.
42 *
43 * Returns void
44 *
45 ******************************************************************************/
bta_dm_ci_rmt_oob(bool accept,const RawAddress & bd_addr,const Octet16 & c,const Octet16 & r)46 void bta_dm_ci_rmt_oob(bool accept, const RawAddress& bd_addr, const Octet16& c, const Octet16& r) {
47 std::unique_ptr<tBTA_DM_CI_RMT_OOB> msg = std::make_unique<tBTA_DM_CI_RMT_OOB>();
48
49 msg->bd_addr = bd_addr;
50 msg->accept = accept;
51 msg->c = c;
52 msg->r = r;
53
54 do_in_main_thread(base::Bind(bta_dm_ci_rmt_oob_act, base::Passed(&msg)));
55 }
56