2f2f9eaf5e4790f4baf0e64ed0926695595723e2
[platform/core/connectivity/bluetooth-frwk.git] / bt-oal / bluez_hal / src / bt-hal-device-dbus-handler.h
1 /* Bluetooth-frwk
2  *
3  * Copyright (c) 20015 - 2016 Samsung Electronics Co., Ltd. All rights reserved.
4  *
5  * Contact: Anupam Roy <anupam.r@samsung.com>
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *              http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21
22 #ifndef _BT_HAL_DEVICE_DBUS_HANDLER_H_
23 #define _BT_HAL_DEVICE_DBUS_HANDLER_H_
24
25 #include <glib.h>
26 #include <sys/types.h>
27
28 #include "bt-hal.h"
29 #include "bt-hal-log.h"
30 #include "bt-hal-msg.h"
31
32 #include "bt-hal-event-receiver.h"
33
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39 int _bt_hal_device_create_bond(const bt_bdaddr_t *bd_addr, unsigned short transport);
40
41 int _bt_hal_device_remove_bond(const bt_bdaddr_t *bd_addr);
42
43 int _bt_hal_device_cancel_bond(const bt_bdaddr_t *bd_addr);
44
45 int _bt_hal_dbus_get_remote_device_properties(bt_bdaddr_t *remote_addr);
46
47 int _bt_hal_dbus_set_remote_device_property(
48                 bt_bdaddr_t *remote_addr, const bt_property_t *property);
49
50 int _bt_hal_device_legacy_pin_reply(const bt_bdaddr_t *bd_addr,
51                 gboolean accept, uint8_t pin_len, char *pincode);
52
53 int _bt_hal_device_ssp_reply(const bt_bdaddr_t *bd_addr, bt_ssp_variant_t variant,
54                 uint8_t accept, uint32_t passkey);
55
56 int _bt_hal_dbus_get_remote_device_services(const bt_bdaddr_t *remote_addr);
57
58 int _bt_hal_device_authorize_response(const bt_bdaddr_t *bd_addr, bt_service_id_t service_id,
59                                     uint8_t authorize, uint8_t save_settings);
60
61 int _bt_hal_device_set_trust(const bt_bdaddr_t *bd_addr, uint8_t trust);
62
63 int _bt_hal_device_get_connection_state(const bt_bdaddr_t *bd_addr);
64
65 #ifdef TIZEN_BT_HAL
66 int _bt_hal_device_get_service_connection_state(
67                 const bt_bdaddr_t *bd_addr, bt_service_id_t rem_svc_id);
68
69 int _bt_hal_device_set_osp_server(uint32_t type, gboolean enable);
70
71
72 int _bt_hal_device_set_trusted_profile(const bt_bdaddr_t *bd_addr,
73                 bt_trusted_profile_t profile, uint8_t trust);
74
75 int _bt_hal_device_get_trusted_profile(const bt_bdaddr_t *bd_addr,
76                 bt_trusted_profile_t profile, uint32_t *trusted);
77
78 int _bt_hal_device_enable_rssi_monitoring(bt_bdaddr_t *bd_addr, uint32_t conn_link_type,
79                     int low_threshold, int in_range_threshold, int high_threshold);
80
81 int _bt_hal_device_get_connected_link_rssi_strength(const bt_bdaddr_t *bd_addr, uint32_t link_type);
82 #endif
83
84 #ifdef __cplusplus
85 }
86 #endif /* __cplusplus */
87 #endif /* _BT_HAL_DEVICE_DBUS_HANDLER_H_ */