2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 #include "bluetooth-api.h"
19 #include "bt-internal-types.h"
21 #include "bt-common.h"
22 #include "bt-request-sender.h"
23 #include "bt-event-handler.h"
25 BT_EXPORT_API int bluetooth_oob_read_local_data(bt_oob_data_t *local_oob_data)
29 BT_CHECK_PARAMETER(local_oob_data, return);
30 BT_CHECK_ENABLED(return);
33 BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
35 result = _bt_send_request(BT_BLUEZ_SERVICE, BT_OOB_READ_LOCAL_DATA,
36 in_param1, in_param2, in_param3, in_param4, &out_param);
38 if (result == BLUETOOTH_ERROR_NONE) {
39 *local_oob_data = g_array_index(out_param,
43 BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
48 BT_EXPORT_API int bluetooth_oob_add_remote_data(
49 const bluetooth_device_address_t *remote_device_address,
50 bt_oob_data_t *remote_oob_data)
54 BT_CHECK_PARAMETER(remote_device_address, return);
55 BT_CHECK_PARAMETER(remote_oob_data, return);
56 BT_CHECK_ENABLED(return);
59 BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
61 g_array_append_vals(in_param1, remote_device_address,
62 sizeof(bluetooth_device_address_t));
64 g_array_append_vals(in_param2, remote_oob_data, sizeof(bt_oob_data_t));
66 result = _bt_send_request(BT_BLUEZ_SERVICE, BT_OOB_ADD_REMOTE_DATA,
67 in_param1, in_param2, in_param3, in_param4, &out_param);
69 BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
74 BT_EXPORT_API int bluetooth_oob_remove_remote_data(
75 const bluetooth_device_address_t *remote_device_address)
79 BT_CHECK_PARAMETER(remote_device_address, return);
80 BT_CHECK_ENABLED(return);
83 BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
85 g_array_append_vals(in_param1, remote_device_address,
86 sizeof(bluetooth_device_address_t));
88 result = _bt_send_request(BT_BLUEZ_SERVICE, BT_OOB_REMOVE_REMOTE_DATA,
89 in_param1, in_param2, in_param3, in_param4, &out_param);
91 BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);