Scan filter refactoring
[platform/core/connectivity/bluetooth-frwk.git] / include / bluetooth-api.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
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
7  *
8  *              http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  *
16  */
17
18 #ifndef _BLUETOOTH_API_H_
19 #define _BLUETOOTH_API_H_
20
21 #include <stdlib.h>
22 #include <stdbool.h>
23 #include <unistd.h>
24 #include <glib.h>
25 #include <stdint.h>
26
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif                          /* __cplusplus */
31
32 /**
33  * @defgroup BLUETOOTHFW BluetoothFW
34  *
35  * A base library for bluetooth framework
36  *
37  * @addtogroup BLUETOOTHFW
38  * @{
39  */
40
41 #define BLUETOOTH_ADDRESS_STRING_LENGTH         18 /**< This specifies bluetooth device address length (AA:BB:CC:DD:EE:FF) */
42 #define BLUETOOTH_ADDRESS_LENGTH                6 /**< This specifies bluetooth device address length */
43 #define BLUETOOTH_VERSION_LENGTH_MAX            30 /**< This specifies bluetooth device version length */
44 #define BLUETOOTH_INTERFACE_NAME_LENGTH         16
45 #define BLUETOOTH_DEVICE_NAME_LENGTH_MAX        248 /**< This specifies maximum device name length */
46 #define BLUETOOTH_DEVICE_PASSKEY_LENGTH_MAX       50 /**< This specifies maximum length of the passkey */
47 #define BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX   31 /**< This specifies maximum AD data length */
48 #define BLUETOOTH_SCAN_RESP_DATA_LENGTH_MAX     31 /**< This specifies maximum LE Scan response data length */
49 #define BLUETOOTH_MANUFACTURER_DATA_LENGTH_MAX  240 /**< This specifies maximum manufacturer data length */
50
51 #define BLUETOOTH_MAX_SERVICES_FOR_DEVICE       40  /**< This specifies maximum number of services
52                                                         a device can support */
53
54 #define BLUETOOTH_MAX_ATT_MTU   512             /**< This specifies the maximum  ATT MTU Value*/
55
56 #define BLUETOOTH_UUID_STRING_MAX 50
57 #define BLUETOOTH_PATH_STRING 50
58
59 #define BLUETOOTH_OOB_DATA_LENGTH 16
60
61 #define BLUETOOTH_LE_OOB_DATA_LENGTH 100
62
63 #define BLUETOOTH_PIN_CODE_MAX_LENGTH 16
64
65 #ifdef TIZEN_GATT_CLIENT
66 #define BLUETOOTH_GATT_ATT_DATA_LENGTH_MAX      610 /**< GATT ATT value max len */
67 #endif
68
69 /**
70  * This is Bluetooth Connected event role
71  */
72 #define RFCOMM_ROLE_SERVER 1
73 #define RFCOMM_ROLE_CLIENT 2
74
75 /**
76  * This is RFCOMM default Channel Value
77  */
78 #define RFCOMM_DEFAULT_PROFILE_CHANNEL 0
79
80 /**
81  * This is maximum length for search value string for PBAP Phonebook Search
82  */
83 #define BLUETOOTH_PBAP_MAX_SEARCH_VALUE_LENGTH 100
84
85
86 #define BLUETOOTH_MAX_DPM_LIST 20       /**< This specifies maximum number of devices/uuids
87                                                         dpm shall store */
88
89 #define BLUETOOTH_TDS_DATA_LENGTH_MAX   239 /**< This specifies maximum AD data length: 0xEF */
90 #define BLUETOOTH_TDS_CONTROL_POINT_PARAM_LENGTH_MAX   500 /**< TDS Control Point parameter Max length */
91
92 /*
93  * < This defines the maximum size of OTP server directory name
94  */
95 #define BLUETOOTH_MAX_OTP_SERVER_DIR_NAME 100
96
97 #define BLUETOOTH_OTP_CHARC_VAL_MAX_LENGTH   500 /**< OTP Characteristics Value Max length */
98
99 /**
100  * This is Bluetooth error code
101  */
102 #define BLUETOOTH_ERROR_BASE                   ((int)0)         /**< Error code base */
103
104 #define BLUETOOTH_ERROR_NONE                   ((int)0)         /**< No error #0 */
105 #define BLUETOOTH_ERROR_CANCEL                 ((int)BLUETOOTH_ERROR_BASE - 0x01)
106                                                                 /**< cancelled */
107 #define BLUETOOTH_ERROR_INVALID_CALLBACK       ((int)BLUETOOTH_ERROR_BASE - 0x02)
108                                                                 /**< Callback error */
109 #define BLUETOOTH_ERROR_INVALID_PARAM          ((int)BLUETOOTH_ERROR_BASE - 0x03)
110                                                                 /**< invalid paramerror */
111 #define BLUETOOTH_ERROR_INVALID_DATA           ((int)BLUETOOTH_ERROR_BASE - 0x04)
112                                                                 /**< invalid data error */
113 #define BLUETOOTH_ERROR_MEMORY_ALLOCATION      ((int)BLUETOOTH_ERROR_BASE - 0x05)
114                                                                 /**< Memory allocation error */
115 #define BLUETOOTH_ERROR_OUT_OF_MEMORY          ((int)BLUETOOTH_ERROR_BASE - 0x06)
116                                                                 /**< out of memory error */
117 #define BLUETOOTH_ERROR_TIMEOUT                ((int)BLUETOOTH_ERROR_BASE - 0x07)
118                                                                 /**< timeout error */
119 #define BLUETOOTH_ERROR_NO_RESOURCES           ((int)BLUETOOTH_ERROR_BASE - 0x08)
120                                                                 /**< No resource error */
121 #define BLUETOOTH_ERROR_INTERNAL               ((int)BLUETOOTH_ERROR_BASE - 0x09)
122                                                                 /**< internal error */
123 #define BLUETOOTH_ERROR_NOT_SUPPORT            ((int)BLUETOOTH_ERROR_BASE - 0x0a)
124                                                                 /**< Not supported error */
125 #define BLUETOOTH_ERROR_DEVICE_NOT_ENABLED     ((int)BLUETOOTH_ERROR_BASE - 0x0b)
126                                                                 /**< Operation is failed because
127                                                                 of not enabled BT Adapter */
128 #define BLUETOOTH_ERROR_DEVICE_ALREADY_ENABLED  ((int)BLUETOOTH_ERROR_BASE - 0x0c)
129                                                                 /**< Enabling is failed because of
130                                                                 already enabled BT Adapter */
131 #define BLUETOOTH_ERROR_DEVICE_BUSY            ((int)BLUETOOTH_ERROR_BASE - 0x0d)
132                                                                 /**< Operation is failed because of
133                                                                 other on going operation */
134 #define BLUETOOTH_ERROR_ACCESS_DENIED          ((int)BLUETOOTH_ERROR_BASE - 0x0e)
135                                                                 /**< access denied error */
136 #define BLUETOOTH_ERROR_MAX_CLIENT             ((int)BLUETOOTH_ERROR_BASE - 0x0f)
137                                                                 /**< max client error */
138 #define BLUETOOTH_ERROR_NOT_FOUND              ((int)BLUETOOTH_ERROR_BASE - 0x10)
139                                                                 /**< not found error */
140 #define BLUETOOTH_ERROR_SERVICE_SEARCH_ERROR   ((int)BLUETOOTH_ERROR_BASE - 0x11)
141                                                                 /**< service search fail */
142 #define BLUETOOTH_ERROR_PARING_FAILED          ((int)BLUETOOTH_ERROR_BASE - 0x12)
143                                                                 /**< pairing failed error */
144 #define BLUETOOTH_ERROR_NOT_PAIRED             ((int)BLUETOOTH_ERROR_BASE - 0x13)
145                                                                 /**< Not paired error */
146 #define BLUETOOTH_ERROR_SERVICE_NOT_FOUND      ((int)BLUETOOTH_ERROR_BASE - 0x14)
147                                                                 /**< no service error */
148 #define BLUETOOTH_ERROR_NOT_CONNECTED          ((int)BLUETOOTH_ERROR_BASE - 0x15)
149                                                                 /**< no connection error */
150 #define BLUETOOTH_ERROR_ALREADY_CONNECT        ((int)BLUETOOTH_ERROR_BASE - 0x16)
151                                                                 /**< alread connected error */
152 #define BLUETOOTH_ERROR_CONNECTION_BUSY        ((int)BLUETOOTH_ERROR_BASE - 0x17)
153                                                                 /**< connection busy error */
154 #define BLUETOOTH_ERROR_CONNECTION_ERROR       ((int)BLUETOOTH_ERROR_BASE - 0x18)
155                                                                 /**< connection error */
156 #define BLUETOOTH_ERROR_MAX_CONNECTION         ((int)BLUETOOTH_ERROR_BASE - 0x19)
157                                                                 /**< max connection error*/
158 #define BLUETOOTH_ERROR_NOT_IN_OPERATION       ((int)BLUETOOTH_ERROR_BASE - 0x1a)
159                                                                 /**< Not in operation */
160 #define BLUETOOTH_ERROR_CANCEL_BY_USER         ((int)BLUETOOTH_ERROR_BASE - 0x1b)
161                                                                 /**< Cancelled by user */
162 #define BLUETOOTH_ERROR_REGISTRATION_FAILED    ((int)BLUETOOTH_ERROR_BASE - 0x1c)
163                                                                 /**< Service record registration failed */
164 #define BLUETOOTH_ERROR_IN_PROGRESS            ((int)BLUETOOTH_ERROR_BASE - 0x1d)
165                                                                 /**< Operation in progress */
166 #define BLUETOOTH_ERROR_AUTHENTICATION_FAILED  ((int)BLUETOOTH_ERROR_BASE - 0x1e)
167                                                                 /**< authentication failed error when paring*/
168 #define BLUETOOTH_ERROR_HOST_DOWN              ((int)BLUETOOTH_ERROR_BASE - 0x1f)
169                                                                 /**< Remote host is down */
170 #define BLUETOOTH_ERROR_END_OF_DEVICE_LIST     ((int)BLUETOOTH_ERROR_BASE - 0x20)
171                                                                 /**< End of device list */
172
173 #define BLUETOOTH_ERROR_AGENT_ALREADY_EXIST      ((int)BLUETOOTH_ERROR_BASE - 0x21)
174                                                                 /**< Obex agent already exists */
175 #define BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST    ((int)BLUETOOTH_ERROR_BASE - 0x22)
176                                                                 /**< Obex agent does not exist */
177
178 #define BLUETOOTH_ERROR_ALREADY_INITIALIZED    ((int)BLUETOOTH_ERROR_BASE - 0x23)
179                                                                 /**< Already initialized */
180
181 #define BLUETOOTH_ERROR_PERMISSION_DEINED    ((int)BLUETOOTH_ERROR_BASE - 0x24)
182                                                                 /**< Permission deined */
183
184 #define BLUETOOTH_ERROR_ALREADY_DEACTIVATED    ((int)BLUETOOTH_ERROR_BASE - 0x25)
185                                                                 /**< Nap already done */
186
187 #define BLUETOOTH_ERROR_NOT_INITIALIZED    ((int)BLUETOOTH_ERROR_BASE - 0x26)
188                                                                 /**< Not initialized */
189
190 #define BLUETOOTH_ERROR_AUTHENTICATION_REJECTED ((int)BLUETOOTH_ERROR_BASE - 0x27)
191                                                                 /**< Authentication rejected */
192
193 #define BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION    ((int)BLUETOOTH_ERROR_BASE - 0x28)
194                                                                 /**< Device Policy Restricted */
195
196 #define BLUETOOTH_ERROR_NO_DATA    ((int)BLUETOOTH_ERROR_BASE - 0x29)
197                                                                 /**< No data */
198
199 #define BLUETOOTH_ERROR_AUTHORIZATION_REJECTED  ((int)BLUETOOTH_ERROR_BASE - 0x2a)
200                                                                 /**< Authorization rejected */
201
202 /**
203 * Error codes for ATT Error response *
204 */
205 #define BLUETOOTH_ATT_ERROR_INTERNAL                            -1
206 #define BLUETOOTH_ATT_ERROR_NONE                                0x00
207 #define BLUETOOTH_ATT_ERROR_INVALID_HANDLE                      0x01
208 #define BLUETOOTH_ATT_ERROR_READ_NOT_PERMITTED                  0x02
209 #define BLUETOOTH_ATT_ERROR_WRITE_NOT_PERMITTED                 0x03
210 #define BLUETOOTH_ATT_ERROR_INVALID_PDU                         0x04
211 #define BLUETOOTH_ATT_ERROR_AUTHENTICATION                      0x05
212 #define BLUETOOTH_ATT_ERROR_REQUEST_NOT_SUPPORTED               0x06
213 #define BLUETOOTH_ATT_ERROR_INVALID_OFFSET                      0x07
214 #define BLUETOOTH_ATT_ERROR_AUTHORIZATION                       0x08
215 #define BLUETOOTH_ATT_ERROR_PREPARE_QUEUE_FULL                  0x09
216 #define BLUETOOTH_ATT_ERROR_ATTRIBUTE_NOT_FOUND                 0x0A
217 #define BLUETOOTH_ATT_ERROR_ATTRIBUTE_NOT_LONG                  0x0B
218 #define BLUETOOTH_ATT_ERROR_INSUFFICIENT_ENCRYPTION_KEY_SIZE    0x0C
219 #define BLUETOOTH_ATT_ERROR_INVALID_ATTRIBUTE_VALUE_LEN         0x0D
220 #define BLUETOOTH_ATT_ERROR_UNLIKELY                            0x0E
221 #define BLUETOOTH_ATT_ERROR_INSUFFICIENT_ENCRYPTION             0x0F
222 #define BLUETOOTH_ATT_ERROR_UNSUPPORTED_GROUP_TYPE              0x10
223 #define BLUETOOTH_ATT_ERROR_INSUFFICIENT_RESOURCES              0x11
224 /* Common profile error codes */
225 #define BLUETOOTH_ATT_ERROR_WRITE_REQUEST_REJECTED              0xFC
226 #define BLUETOOTH_ATT_ERROR_CCCD_IMPROPERLY_CONFIGURED          0xFD
227 #define BLUETOOTH_ATT_ERROR_PROCEDURE_ALREADY_IN_PROGRESS       0xFE
228 #define BLUETOOTH_ATT_ERROR_OUT_OF_RANGE        0xFF
229
230 /*
231  * Bluetooth ATT error codes specific to OTP
232  */
233 #define BLUETOOTH_OTP_ERROR_WRITE_REQUEST_REJECTED      0x80
234 #define BLUETOOTH_OTP_ERROR_OBJECT_NOT_SELECTED 0x81
235 #define BLUETOOTH_OTP_ERROR_CONCURRENCY_LIMIT_EXCEEDED  0x82
236 #define BLUETOOTH_OTP_ERROR_OBJECT_NAME_EXISTS          0x83
237
238 /*
239  * Bluetooth OTP error codes
240  * TODO: Check error code conflict
241  */
242 #define BLUETOOTH_ERROR_INVALID_DIRECTORY       0x01
243 #define BLUETOOTH_ERROR_NO_OBJECTS_FOUND        0x02
244
245 /**
246  * Device disconnection reasons; received from stack
247  */
248 #define BLUETOOTH_ERROR_PAGE_TIMEOUT    0x04
249 #define BLUETOOTH_ERROR_AUTH_FAILURE    0x05
250 #define BLUETOOTH_ERROR_PIN_OR_KEY_MISSING      0x06
251 #define BLUETOOTH_ERROR_CONNECTION_TIMEOUT      0x08
252 #define BLUETOOTH_ERROR_CONNECTION_REJECTED_DUE_TO_SECURITY_REASONS 0x0e
253 #define BLUETOOTH_ERROR_REMOTE_USER_TERM        0x13
254 #define BLUETOOTH_ERROR_REMOTE_LOW_RESOURCES    0x14
255 #define BLUETOOTH_ERROR_REMOTE_POWER_OFF        0x15
256 #define BLUETOOTH_ERROR_LOCAL_HOST_TERM 0x16
257 #define BLUETOOTH_ERROR_REPEATED_ATTEMPTS       0x17
258 #define BLUETOOTH_ERROR_LMP_RESPONSE_TIMEOUT 0x22
259 #define BLUETOOTH_ERROR_LMP_TRANSACTION_COLLISION 0x23
260 #define BLUETOOTH_ERROR_INSTANT_PASSED 0x28
261 #define BLUETOOTH_ERROR_INSUFFICIENT_SECURITY 0x2f
262 #define BLUETOOTH_ERROR_CONNECTION_TERMINATED_DUE_TO_MIC_FAILURE 0x3d
263 #define BLUETOOTH_ERROR_CONNECTION_FAILED_TO_BE_ESTABLISHED     0x3e
264
265 /**
266 * Device disconnect reason
267 */
268 typedef enum {
269         BLUETOOTH_DEVICE_DISCONNECT_UNKNOWN,
270         BLUETOOTH_DEVICE_DISCONNECT_TIMEOUT,
271         BLUETOOTH_DEVICE_DISCONNECT_LOCAL_HOST,
272         BLUETOOTH_DEVICE_DISCONNECT_REMOTE,
273 } bluetooth_device_disconnect_reason_t;
274
275 /**
276  * This is Bluetooth device address type, fixed to 6 bytes ##:##:##:##:##:##
277  */
278 typedef struct {
279         unsigned char addr[BLUETOOTH_ADDRESS_LENGTH];
280 } bluetooth_device_address_t;
281
282 /**
283  * This is Bluetooth device address type
284  */
285 typedef enum {
286         BLUETOOTH_DEVICE_PUBLIC_ADDRESS = 0x00,
287         BLUETOOTH_DEVICE_RANDOM_ADDRESS
288 } bluetooth_device_address_type_t;
289
290 /**
291  * This is BD Address type defined in kernel BT header
292  */
293 typedef enum {
294         BLUETOOTH_BDADDR_BREDR = 0x00,
295         BLUETOOTH_BDADDR_LE_PUBLIC = 0x01,
296         BLUETOOTH_BDADDR_LE_RANDOM = 0x02
297 } bluetooth_bdaddr_type_e;
298
299 /**
300  * This is Bluetooth version
301  */
302 typedef struct {
303         char version[BLUETOOTH_VERSION_LENGTH_MAX + 1];
304 } bluetooth_version_t;
305
306 /**
307  * This is Bluetooth device name type, maximum size of Bluetooth device name is 248 bytes
308  */
309 typedef struct {
310         char name[BLUETOOTH_DEVICE_NAME_LENGTH_MAX + 1];
311 } bluetooth_device_name_t;
312
313 /**
314  * This is Bluetooth manufacturer specific data, maximum size of data is 240 bytes
315  */
316 typedef struct {
317         int data_len;           /**< manafacturer specific data length */
318         char data[BLUETOOTH_MANUFACTURER_DATA_LENGTH_MAX];
319 } bluetooth_manufacturer_data_t;
320
321 typedef struct {
322         char pin_code[BLUETOOTH_PIN_CODE_MAX_LENGTH + 1];
323 } bluetooth_device_pin_code_t;
324
325 /**
326  * This is data for battery usage monitoring
327  */
328
329 typedef struct {
330         time_t session_start_time;
331         time_t session_end_time;
332         uint16_t session_connected_time;
333         uint16_t session_scan_time;
334         GSList *atm_list;
335 } bt_battery_data;
336
337 typedef struct {
338         uid_t uid;
339         pid_t pid;
340         uint16_t rx_bytes;
341         uint16_t tx_bytes;
342 } bt_battery_app_data;
343
344 /**
345  * Adapter state
346  */
347 typedef enum {
348         BLUETOOTH_ADAPTER_DISABLED,         /**< Bluetooth adapter is disabled */
349         BLUETOOTH_ADAPTER_ENABLED,          /**< Bluetooth adapter is enabled */
350         BLUETOOTH_ADAPTER_CHANGING_ENABLE,  /**< Bluetooth adapter is currently enabling */
351         BLUETOOTH_ADAPTER_CHANGING_DISABLE, /**< Bluetooth adapter is currently disabling */
352 } bluetooth_adapter_state_t;
353
354 /**
355  * Adapter state
356  */
357 typedef enum {
358         BLUETOOTH_ADAPTER_LE_DISABLED,      /**< Bluetooth adapter le is disabled */
359         BLUETOOTH_ADAPTER_LE_ENABLED,       /**< Bluetooth adapter le is enabled */
360         BLUETOOTH_ADAPTER_LE_CHANGING_ENABLE,  /**< Bluetooth adapter le is currently enabling */
361         BLUETOOTH_ADAPTER_LE_CHANGING_DISABLE, /**< Bluetooth adapter le is currently disabling */
362 } bluetooth_adapter_le_state_t;
363
364 /**
365  * Discoverable mode
366  */
367 typedef enum {
368         BLUETOOTH_DISCOVERABLE_MODE_CONNECTABLE,         /**< Non discoverable mode */
369         /*Changed the order to make it compatable with old method */
370         BLUETOOTH_DISCOVERABLE_MODE_GENERAL_DISCOVERABLE,/**< Discoverable mode */
371         BLUETOOTH_DISCOVERABLE_MODE_TIME_LIMITED_DISCOVERABLE,
372                                                          /**< Discoverable mode with time limit
373                                                         After specific timeout, it is changed
374                                                                 to non discoverable mode */
375 } bluetooth_discoverable_mode_t;
376
377 /**
378  * Network connect mode
379  */
380 typedef enum {
381         BLUETOOTH_NETWORK_PANU_ROLE,
382                                  /**< PAN user */
383         BLUETOOTH_NETWORK_NAP_ROLE,/**< Network Access Point */
384         BLUETOOTH_NETWORK_GN_ROLE,  /**< Group ad-hoc Network */
385         BLUETOOTH_NETWORK_CUSTOM_UUID, /**< Custom role */
386 } bluetooth_network_role_t;
387
388 /**
389  * Service type
390  * Service type matched to bt_profile_type_t of bt-service-common.h
391  */
392 typedef enum {
393         BLUETOOTH_RFCOMM_SERVICE = 0x01,
394         BLUETOOTH_A2DP_SERVICE = 0x02,
395         BLUETOOTH_HSP_SERVICE = 0x04,
396         BLUETOOTH_HID_SERVICE = 0x08,
397         BLUETOOTH_NAP_SERVICE = 0x10,
398         BLUETOOTH_HFG_SERVICE = 0x20,
399         BLUETOOTH_GATT_SERVICE = 0x40,
400         BLUETOOTH_NAP_SERVER_SERVICE = 0x80,
401         BLUETOOTH_A2DP_SINK_SERVICE = 0x100,
402         BLUETOOTH_PBAP_SERVICE = 0x200,
403 } bluetooth_service_type_t;
404
405 /**
406  * Service type
407  */
408 typedef enum {
409         BLUETOOTH_DEV_CONN_DEFAULT = 0xFF,
410         /* represents that connection
411          * type can both BR/EDR and LE */
412         BLUETOOTH_DEV_CONN_BREDR = 0x00,
413         BLUETOOTH_DEV_CONN_LE = 0x01,
414 } bluetooth_conn_type_t;
415
416 /**
417  * Service type
418  */
419 typedef enum {
420         BLUETOOTH_CODEC_ID_CVSD = 0x01,
421         BLUETOOTH_CODEC_ID_MSBC = 0x02,
422 } bluetooth_codec_type_t;
423
424 /**
425  * Service type
426  */
427 typedef enum {
428         BLUETOOTH_HF_AUDIO_DISCONNECTED = 0x00,
429         BLUETOOTH_HF_AUDIO_CONNECTED = 0x01,
430 } bluetooth_hf_audio_connected_type_t;
431
432 /**
433  * Advertising data
434  */
435 typedef struct {
436         guint8 data[BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX];
437 } bluetooth_advertising_data_t;
438
439 /**
440  * Scan response data
441  */
442 typedef struct {
443         guint8 data[BLUETOOTH_SCAN_RESP_DATA_LENGTH_MAX];
444 } bluetooth_scan_resp_data_t;
445
446 /**
447  * Advertising filter policy
448  */
449 typedef enum {
450         BLUETOOTH_ALLOW_SCAN_CONN_ALL = 0x00,
451         BLUETOOTH_ALLOW_CONN_ALL_SCAN_WHITE_LIST = 0x01,
452         BLUETOOTH_ALLOW_SCAN_ALL_CONN_WHITE_LIST = 0x02,
453         BLUETOOTH_ALLOW_SCAN_CONN_WHITE_LIST = 0x03,
454 } bluetooth_advertising_filter_policy_t;
455
456 /**
457  * Advertising type
458  */
459 typedef enum {
460         BLUETOOTH_ADV_CONNECTABLE = 0x00, /* ADV_IND */
461         BLUETOOTH_ADV_CONNECTABLE_DIRECT_HIGH = 0x01, /* ADV_DIRECT_IND, high duty cycle */
462         BLUETOOTH_ADV_SCANNABLE = 0x02, /* ADV_SCAN_IND */
463         BLUETOOTH_ADV_NON_CONNECTABLE = 0x03, /* ADV_NONCOND_IND */
464         BLUETOOTH_ADV_CONNECTABLE_DIRECT_LOW = 0x04, /* ADV_DIRECT_IND, low duty cycle */
465 } bluetooth_advertising_type_t;
466
467 typedef enum {
468         BLUETOOTH_GATT_SERVICE_CHANGE_TYPE_ADD = 0x01,
469         BLUETOOTH_GATT_SERVICE_CHANGE_TYPE_REMOVE = 0x02,
470 } bluetooth_gatt_service_change_type_t;
471
472 typedef enum {
473         BLUETOOTH_GATT_PERMISSION_READ = 0x01,
474         BLUETOOTH_GATT_PERMISSION_WRITE = 0x02,
475         BLUETOOTH_GATT_PERMISSION_ENCRYPT_READ = 0x04,
476         BLUETOOTH_GATT_PERMISSION_ENCRYPT_WRITE = 0x08,
477         BLUETOOTH_GATT_PERMISSION_ENCRYPT_AUTHENTICATED_READ = 0x10,
478         BLUETOOTH_GATT_PERMISSION_ENCRYPT_AUTHENTICATED_WRITE = 0x20,
479 } bt_gatt_permission_t;
480
481 typedef enum {
482         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_BROADCAST = 0x01,
483         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_READ = 0x02,
484         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_WRITE_NO_RESPONSE = 0x04,
485         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_WRITE = 0x08,
486         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_NOTIFY = 0x10,
487         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_INDICATE = 0x20,
488         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_SIGNED_WRITE = 0x40,
489         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_RELIABLE_WRITE = 0x80,
490         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_WRITABLE_AUXILIARIES = 0x100,
491         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_ENCRYPT_READ = 0x200,
492         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_ENCRYPT_WRITE = 0x400,
493         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_ENCRYPT_AUTHENTICATED_READ = 0x800,
494         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_ENCRYPT_AUTHENTICATED_WRITE = 0x1000,
495         BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_EXTENDED_PROPS = 0xffff,
496 } bt_gatt_characteristic_property_t;
497
498 /**
499 * Remote device request types for attributes
500 */
501 typedef enum {
502         BLUETOOTH_GATT_ATT_REQUEST_TYPE_READ = 0x00, /* Read Requested*/
503         BLUETOOTH_GATT_ATT_REQUEST_TYPE_WRITE = 0x01, /* Write Requested*/
504 } bluetooth_gatt_att_request_tyep_t;
505
506 /**
507  * Proximity Property Type
508  */
509 typedef enum {
510                 BLUETOOTH_PXP_PROPERTY_LLS = 0x01,      /* Link Loss Alert Proeprty */
511                 BLUETOOTH_PXP_PROPERTY_IAS = 0x02,      /* Immediate Alert Proeprty */
512                 BLUETOOTH_PXP_PROPERTY_TX_POWER = 0x04, /* TX Power */
513 } bluetooth_pxp_poperty_t;
514
515 /**
516  * TDS transport Type
517  */
518 typedef enum {
519                 BLUETOOTH_TDS_TRANSPORT_BT = 0x01,      /* Transport type BR-EDR */
520                 BLUETOOTH_TDS_TRANSPORT_CUSTOM, /* Transport type custom */
521                 /* ... */
522                 BLUETOOTH_TDS_TRANSPORT_INVALID
523 } bluetooth_tds_transport_t;
524
525 /**
526  * TDS transport state
527  */
528 typedef enum {
529         BLUETOOTH_TDS_TRANSPORT_STATE_OFF = 0,
530         BLUETOOTH_TDS_TRANSPORT_STATE_ON,
531         BLUETOOTH_TDS_TRANSPORT_STATE_UNAVAILABLE,
532         BLUETOOTH_TDS_TRANSPORT_STATE_RESERVED
533 } bluetooth_tds_transport_state_t;
534
535 /**
536 * TDS data
537 */
538 typedef struct {
539         int length;
540         guint8 data[BLUETOOTH_TDS_DATA_LENGTH_MAX];
541 } bluetooth_tds_data_t;
542
543 /**
544 * TDS activation request
545 */
546 typedef struct {
547         bluetooth_device_address_t rem_addr;
548         bluetooth_tds_transport_t transport;
549         bluetooth_tds_data_t tds_data;
550 } bluetooth_tds_activation_req_t;
551
552 /**
553 * TDS Control Point data
554 */
555 typedef struct {
556         int length;                                                     /**< Control point data length */
557         guint8 data[BLUETOOTH_TDS_CONTROL_POINT_PARAM_LENGTH_MAX];      /**< Control pint param data */
558 } bluetooth_control_point_data_t;
559
560 /**
561 * TDS Indication Response data
562 */
563 typedef struct {
564         bluetooth_device_address_t rem_addr;         /**< Device address */
565         bluetooth_control_point_data_t tds_data;     /**< TDS Control Point Indication params */
566 } bluetooth_tds_indication_res_t;
567
568 /**
569 * Structure to hold the TDS Complete data information which is read from remote TDS provider
570 */
571 typedef struct {
572         bluetooth_device_address_t device_address;      /**< Device address */
573         int data_length;                        /**< Data length */
574         char *data;                             /**< Complete Transport Specific data */
575 } bluetooth_tds_transport_data_info_t;
576
577 /**
578 * OTP Characteristics Value
579 */
580 typedef struct {
581         int length;                                                     /**< Characteristics value length */
582         guint8 data[BLUETOOTH_OTP_CHARC_VAL_MAX_LENGTH];        /**< Characteristics data */
583 } bluetooth_otp_charc_data_t;
584
585 /**
586 * Structure to hold the OTP response data from remote OTP server
587 */
588 typedef struct {
589         char *handle;      /**< Handle */
590         int data_length;                        /**< Data length */
591         char *data;                             /**< Read data */
592 } bluetooth_otp_resp_info_t;
593
594 /**
595 * Structure to hold the OTC Channel Info
596 */
597 typedef struct {
598         gboolean connected;     /**< Connection Status */
599         int fd;                         /**< Fd */
600         char *address;      /**< Remote address */
601 } bluetooth_otc_info_t;
602
603 /**
604 * Advertising parameters
605 */
606 typedef struct {
607         float interval_min;
608         float interval_max;
609         guint8 filter_policy;
610         guint8 type;
611         int tx_power_level;
612 } bluetooth_advertising_params_t;
613
614 /**
615 * LE Scan parameters
616 */
617 typedef struct {
618         int type;  /**< passive 0, active 1 */
619         float interval;  /**< LE scan interval */
620         float window;  /**< LE scan window */
621 } bluetooth_le_scan_params_t;
622
623 /**
624 * LE Scan type
625 */
626 typedef enum {
627         BLUETOOTH_LE_PASSIVE_SCAN = 0x00,
628         BLUETOOTH_LE_ACTIVE_SCAN
629 } bluetooth_le_scan_type_t;
630
631 /*
632         LE Connection Update
633  */
634 typedef struct {
635         float interval_min;
636         float interval_max;
637         guint16 latency;
638         guint16 timeout;
639 } bluetooth_le_connection_param_t;
640
641 /*
642         LE Read Maximum Data Length
643  */
644 typedef struct {
645         guint16 max_tx_octets;
646         guint16 max_tx_time;
647         guint16 max_rx_octets;
648         guint16 max_rx_time;
649 } bluetooth_le_read_maximum_data_length_t;
650
651 /*
652         LE Read Host suggested default Data Length
653  */
654 typedef struct {
655         guint16 def_tx_octets;
656         guint16 def_tx_time;
657 } bluetooth_le_read_host_suggested_data_length_t;
658
659 /**
660  * Samsung XSAT Vendor dependent command
661  */
662 typedef struct {
663         gint app_id;
664         char *message;
665 } bluetooth_vendor_dep_at_cmd_t;
666
667 /**
668  * Transfer Types
669  */
670 typedef enum {
671         BLUETOOTH_TRANSFER_INBOUND,         /**< Inbound Transfer Type */
672         BLUETOOTH_TRANSFER_OUTBOUND,        /**< Outbound Transfer Type */
673 } bluetooth_opp_transfer_type_t;
674
675 typedef struct {
676         gint event;
677         gint value;
678 } bluetooth_hf_ciev_device_event_t;
679
680 #define BLUETOOTH_EVENT_BASE            ((int)(0x0000))         /**< No event */
681 #define BLUETOOTH_EVENT_GAP_BASE        ((int)(BLUETOOTH_EVENT_BASE + 0x0010))
682                                                                 /**< Base ID for GAP Event */
683 #define BLUETOOTH_EVENT_SDP_BASE        ((int)(BLUETOOTH_EVENT_GAP_BASE + 0x0020))
684                                                                 /**< Base ID for SDP events */
685 #define BLUETOOTH_EVENT_RFCOMM_BASE     ((int)(BLUETOOTH_EVENT_SDP_BASE + 0x0020))
686                                                                 /**< Base ID for RFCOMM events */
687 #define BLUETOOTH_EVENT_NETWORK_BASE     ((int)(BLUETOOTH_EVENT_RFCOMM_BASE + 0x0020))
688                                                                 /**< Base ID for NETWORK events */
689 #define BLUETOOTH_EVENT_HDP_BASE     ((int)(BLUETOOTH_EVENT_NETWORK_BASE + 0x0020))
690                                                                 /**< Base ID for HDP events */
691 #define BLUETOOTH_EVENT_OPC_BASE  ((int)(BLUETOOTH_EVENT_HDP_BASE + 0x0020))
692                                                                 /**< Base ID for OPC events */
693 #define BLUETOOTH_EVENT_OBEX_SERVER_BASE ((int)(BLUETOOTH_EVENT_OPC_BASE + 0x0020))
694                                                                 /**< Base ID for Obex Server events */
695 #define BLUETOOTH_EVENT_GATT_BASE ((int)(BLUETOOTH_EVENT_OBEX_SERVER_BASE + 0x0020))
696                                                                 /**< Base ID for GATT events */
697
698 #define BLUETOOTH_EVENT_AUDIO_BASE ((int)(BLUETOOTH_EVENT_GATT_BASE + 0x0020))
699                                                                 /**< Base ID for Audio events */
700 #define BLUETOOTH_EVENT_HID_BASE ((int)(BLUETOOTH_EVENT_AUDIO_BASE + 0x0030))
701                                                                 /**< Base ID for HID events */
702 #define BLUETOOTH_EVENT_ADVERTISING_BASE ((int)(BLUETOOTH_EVENT_HID_BASE + 0x0020))
703                                                                 /**< Base ID for Advertising events */
704 #define BLUETOOTH_EVENT_PBAP_CLIENT_BASE ((int)(BLUETOOTH_EVENT_ADVERTISING_BASE + 0x0020))
705                                                                 /**< Base ID for PBAP Client events */
706 #define BLUETOOTH_EVENT_AVRCP_CONTROL_BASE ((int)(BLUETOOTH_EVENT_PBAP_CLIENT_BASE + 0x0020))
707                                                                 /**< Base ID for AVRCP events */
708 #define BLUETOOTH_EVENT_IPSP_BASE ((int)(BLUETOOTH_EVENT_AVRCP_CONTROL_BASE + 0x0020))
709                                                                 /**< Base ID for IPSP events */
710 #define BLUETOOTH_EVENT_MAP_BASE  ((int)(BLUETOOTH_EVENT_IPSP_BASE + 0x0020))
711                                                                 /**< Base ID for MAP events */
712
713 /**
714  * Bluetooth event type
715  */
716 typedef enum {
717         BLUETOOTH_EVENT_NONE = BLUETOOTH_EVENT_BASE,/**< No event */
718
719         BLUETOOTH_EVENT_ENABLED,                    /**< Bluetooth event adpater enabled */
720         BLUETOOTH_EVENT_DISABLED,                   /**< Bluetooth event adpater disabled */
721         BLUETOOTH_EVENT_DISABLED_BATTERY_DATA,      /**< Bluetooth event adapter disabled battery data*/
722         BLUETOOTH_EVENT_LE_ENABLED,                 /**< Bluetooth event adpater enabled */
723         BLUETOOTH_EVENT_LE_DISABLED,                /**< Bluetooth event adpater disabled */
724         BLUETOOTH_EVENT_LOCAL_NAME_CHANGED,         /**< Bluetooth event local name changed*/
725         BLUETOOTH_EVENT_DISCOVERABLE_TIMEOUT_REQUESTED,
726                                         /**< Bluetooth event Discoverable timeout requested*/
727         BLUETOOTH_EVENT_DISCOVERABLE_MODE_CHANGED,  /**< Bluetooth event mode changed */
728         BLUETOOTH_EVENT_DISCOVERY_OPTION_REQUESTED, /**< Bluetooth event discovery option */
729         BLUETOOTH_EVENT_DISCOVERY_STARTED,          /**< Bluetooth event discovery started */
730         BLUETOOTH_EVENT_DISCOVERY_FINISHED,         /**< Bluetooth event discovery finished */
731         BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND,        /**< Bluetooth event remote deice found */
732         BLUETOOTH_EVENT_LE_DISCOVERY_STARTED,           /**< Bluetooth event LE discovery started */
733         BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED,  /**< Bluetooth event LE discovery finished */
734         BLUETOOTH_EVENT_REMOTE_LE_DEVICE_FOUND,     /**< Bluetooth event remote deice found (LE dev) */
735         BLUETOOTH_EVENT_REMOTE_DEVICE_NAME_UPDATED,/**< Bluetooth event remote device name updated*/
736         BLUETOOTH_EVENT_BONDING_FINISHED,           /**< Bluetooth event bonding completed */
737         BLUETOOTH_EVENT_BONDED_DEVICE_REMOVED,      /**< Bluetooth event bonding removed */
738         BLUETOOTH_EVENT_BONDED_DEVICE_FOUND,        /**< Bluetooth event paired device found */
739         BLUETOOTH_EVENT_REMOTE_DEVICE_READ,         /**< Bluetooth event read remote device */
740         BLUETOOTH_EVENT_DEVICE_AUTHORIZED,          /**< Bluetooth event authorize device */
741         BLUETOOTH_EVENT_DEVICE_UNAUTHORIZED,        /**< Bluetooth event unauthorize device */
742         BLUETOOTH_EVENT_DISCOVERABLE_TIMEOUT_CHANGED,  /**< Bluetooth event mode changed */
743         BLUETOOTH_EVENT_KEYBOARD_PASSKEY_DISPLAY,       /**Bluetooth event for displaying keyboard  passkey to user*/
744         BLUETOOTH_EVENT_PIN_REQUEST,    /**Bluetooth event for PIN input by user*/
745         BLUETOOTH_EVENT_PASSKEY_REQUEST,        /**Bluetooth event for entering Passkey by user*/
746         BLUETOOTH_EVENT_PASSKEY_CONFIRM_REQUEST,        /**Bluetooth event for Passkey confirmation by user*/
747         BLUETOOTH_EVENT_CONNECTABLE_CHANGED,        /**< Bluetooth event connectable changed */
748
749         BLUETOOTH_EVENT_RSSI_ENABLED,           /**< Bluetooth event RSSI monitoring enabled */
750         BLUETOOTH_EVENT_RSSI_ALERT,                             /**< Bluetooth event RSSI Alert */
751         BLUETOOTH_EVENT_RAW_RSSI,                               /**< Bluetooth event Raw RSSI */
752         BLUETOOTH_EVENT_SUPPORTED_PROFILE_TRUSTED,      /**< Bluetooth event Supported Profile Trusted */
753         BLUETOOTH_EVENT_PASSKEY_NOTIFICATION,       /**< Bluetooth event passkey notification */
754
755         BLUETOOTH_EVENT_SERVICE_SEARCHED = BLUETOOTH_EVENT_SDP_BASE,
756                                                     /**< Bluetooth event serice search base id */
757         BLUETOOTH_EVENT_SERVICE_SEARCH_CANCELLED,   /**< Bluetooth event service search cancelled */
758         BLUETOOTH_EVENT_RFCOMM_DATA_RECEIVED = BLUETOOTH_EVENT_RFCOMM_BASE,
759                                                         /**< RFCOMM data receive event */
760         BLUETOOTH_EVENT_RFCOMM_CONNECTED,               /**< Rfcomm server incomming connection */
761         BLUETOOTH_EVENT_RFCOMM_DISCONNECTED,            /**< Rfcomm server/client disconnect */
762
763         BLUETOOTH_EVENT_RFCOMM_AUTHORIZE,
764
765         BLUETOOTH_EVENT_DEVICE_CONNECTED,           /**< Bluetooth event device connected */
766         BLUETOOTH_EVENT_DEVICE_DISCONNECTED,        /**< Bluetooth event device disconnected */
767
768         BLUETOOTH_EVENT_RFCOMM_SERVER_REMOVED,
769
770         BLUETOOTH_EVENT_NETWORK_SERVER_ACTIVATED = BLUETOOTH_EVENT_NETWORK_BASE,
771                                                                 /**< Bluetooth Network event */
772         BLUETOOTH_EVENT_NETWORK_SERVER_DEACTIVATED, /**< Network server deactivated */
773         BLUETOOTH_EVENT_NETWORK_SERVER_CONNECTED,     /**< Network connected event in server */
774         BLUETOOTH_EVENT_NETWORK_SERVER_DISCONNECTED,
775                                                    /**< Network disconnected evnet in server */
776
777         BLUETOOTH_EVENT_NETWORK_CONNECTED,              /**< Network connected event in client*/
778         BLUETOOTH_EVENT_NETWORK_DISCONNECTED,           /**< Network disconnected evnet in client*/
779
780         BLUETOOTH_EVENT_HDP_CONNECTED
781                         = BLUETOOTH_EVENT_HDP_BASE,                /**<HDP Connect>*/
782         BLUETOOTH_EVENT_HDP_DISCONNECTED,          /**<HDP Disconnect>*/
783         BLUETOOTH_EVENT_HDP_DATA_RECEIVED,         /**<HDP Data Indication>*/
784
785         BLUETOOTH_EVENT_OPC_CONNECTED = BLUETOOTH_EVENT_OPC_BASE,
786                                                                 /* OPC Connected event */
787         BLUETOOTH_EVENT_OPC_DISCONNECTED,               /* OPC Disonnected event */
788         BLUETOOTH_EVENT_OPC_TRANSFER_STARTED,   /* OPC Transfer started event */
789         BLUETOOTH_EVENT_OPC_TRANSFER_PROGRESS,  /* OPC Transfer progress event */
790         BLUETOOTH_EVENT_OPC_TRANSFER_COMPLETE,  /* OPC Transfer Complete event */
791
792         BLUETOOTH_EVENT_MAP_CONNECTED = BLUETOOTH_EVENT_MAP_BASE,
793         BLUETOOTH_EVENT_MAP_DISCONNECTED,
794         /*
795         BLUETOOTH_EVENT_MAP_SET_FOLDER_COMPLETE,
796         BLUETOOTH_EVENT_MAP_SET_FOLDER_INVALID_ARGUMENTS,
797         BLUETOOTH_EVENT_MAP_SET_FOLDER_FAILED,
798         BLUETOOTH_EVENT_MAP_UPDATE_INBOX_COMPLETE,
799         BLUETOOTH_EVENT_MAP_UPDATE_INBOX_FAILED,
800         */
801         BLUETOOTH_EVENT_MAP_LIST_FOLDERS_COMPLETE,
802         BLUETOOTH_EVENT_MAP_LIST_FOLDERS_INVALID_ARGUMENTS,
803         BLUETOOTH_EVENT_MAP_LIST_FOLDERS_FAILED,
804         BLUETOOTH_EVENT_MAP_LIST_MESSAGES_COMPLETE,
805         BLUETOOTH_EVENT_MAP_LIST_MESSAGES_INVALID_ARGUMENTS,
806         BLUETOOTH_EVENT_MAP_LIST_MESSAGES_FAILED,
807         BLUETOOTH_EVENT_MAP_PUSH_MESSAGE_COMPLETE,
808         BLUETOOTH_EVENT_MAP_PUSH_MESSAGE_INVALID_ARGUMENTS,
809         BLUETOOTH_EVENT_MAP_PUSH_MESSAGE_FAILED,
810         BLUETOOTH_EVENT_MAP_GET_MESSAGE_COMPLETE,
811         BLUETOOTH_EVENT_MAP_GET_MESSAGE_INVALID_ARGUMENTS,
812         BLUETOOTH_EVENT_MAP_GET_MESSAGE_FAILED,
813         BLUETOOTH_EVENT_MAP_LIST_FILTER_FIELD_COMPLETE,
814
815         BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_AUTHORIZE = BLUETOOTH_EVENT_OBEX_SERVER_BASE,
816                                                                 /* Obex server authorize event*/
817         BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_STARTED,   /* Obex Server transfer started event*/
818         BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_PROGRESS,/* Obex Server transfer progress event*/
819         BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_COMPLETED,/* Obex Server transfer complete event*/
820         BLUETOOTH_EVENT_OBEX_SERVER_CONNECTION_AUTHORIZE,
821         BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_CONNECTED, /* Obex Transfer connected event */
822         BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_DISCONNECTED, /* Obex Transfer disconnected event */
823
824         BLUETOOTH_EVENT_GATT_SVC_CHAR_DISCOVERED = BLUETOOTH_EVENT_GATT_BASE,
825                                 /**<Discovered GATT service characteristics event*/
826         BLUETOOTH_EVENT_GATT_CHAR_VAL_CHANGED,
827                                 /**<Remote GATT charateristic value changed event*/
828         BLUETOOTH_EVENT_GATT_GET_CHAR_FROM_UUID,
829         BLUETOOTH_EVENT_GATT_READ_CHAR, /**<Gatt Read Characteristic Value */
830         BLUETOOTH_EVENT_GATT_WRITE_CHAR, /**<Gatt Write Characteristic Value */
831         BLUETOOTH_EVENT_GATT_READ_DESC, /**<Gatt Read Characteristic Descriptor Value */
832         BLUETOOTH_EVENT_GATT_WRITE_DESC, /**<Gatt Write Characteristic Descriptor Value */
833         BLUETOOTH_EVENT_GATT_SVC_CHAR_DESC_DISCOVERED, /**<Gatt Char Descriptors Discovered Event*/
834 #ifdef TIZEN_GATT_CLIENT
835         BLUETOOTH_EVENT_GATT_SERVER_CONNECTED,/**<Local Gatt Server connected event */
836         BLUETOOTH_EVENT_GATT_SERVER_DISCONNECTED, /**<Local Gatt Server Disconnected event */
837         BLUETOOTH_EVENT_GATT_CLIENT_CONNECTED,/**<Local Gatt Client connected event */
838         BLUETOOTH_EVENT_GATT_CLIENT_DISCONNECTED, /**<Local Gatt Client Disconnected event */
839 #else
840         BLUETOOTH_EVENT_GATT_CONNECTED,/**<Gatt connected event */
841         BLUETOOTH_EVENT_GATT_DISCONNECTED, /**<Gatt Disconnected event */
842 #endif
843         BLUETOOTH_EVENT_GATT_ATT_MTU_CHANGED, /**<Attribute protocol MTU changed event */
844         BLUETOOTH_EVENT_GATT_SERVER_ATT_MTU_CHANGED, /**<Attribute protocol Server MTU changed event */
845         BLUETOOTH_EVENT_GATT_SERVER_CHARACTERISTIC_VALUE_CHANGED, /**<Gatt Char write callback event */
846         BLUETOOTH_EVENT_GATT_SERVER_READ_REQUESTED, /** <GATT Characteristic/Descriptor Read Request event */
847         BLUETOOTH_EVENT_GATT_SERVER_VALUE_CHANGED, /** <GATT Characteristic/Descriptor Value change event */
848         BLUETOOTH_EVENT_GATT_SERVER_NOTIFICATION_STATE_CHANGED, /** <GATT Characteristic Notification change event */
849         BLUETOOTH_EVENT_GATT_SERVER_NOTIFICATION_COMPLETED, /** <GATT Characteristic Notification or Indication completed event */
850         BLUETOOTH_EVENT_GATT_CLIENT_SERVICE_CHANGED, /** <GATT Client service change event */
851         BLUETOOTH_EVENT_GATT_SERVER_ACQUIRE_WRITE, /** <GATT Characteristic/Descriptor Value change event */
852         BLUETOOTH_EVENT_GATT_SERVER_ACQUIRE_NOTIFY,
853         BLUETOOTH_EVENT_AG_CONNECTED = BLUETOOTH_EVENT_AUDIO_BASE, /**<AG service connected event*/
854         BLUETOOTH_EVENT_AG_DISCONNECTED, /**<AG service disconnected event*/
855         BLUETOOTH_EVENT_AG_SPEAKER_GAIN, /**<Speaker gain request event*/
856         BLUETOOTH_EVENT_AG_MIC_GAIN, /**<Mic gain request event*/
857         BLUETOOTH_EVENT_AG_AUDIO_CONNECTED, /**<AV & AG service connected event*/
858         BLUETOOTH_EVENT_AG_AUDIO_DISCONNECTED,  /**<AV & AG service disconnected event*/
859         BLUETOOTH_EVENT_AV_CONNECTED, /**<AV service connected event*/
860         BLUETOOTH_EVENT_AV_DISCONNECTED, /**<AV service disconnected event*/
861         BLUETOOTH_EVENT_AV_SOURCE_CONNECTED, /**<AV Source device connected event */
862         BLUETOOTH_EVENT_AV_SOURCE_DISCONNECTED, /**<AV Source device disconnected event */
863         BLUETOOTH_EVENT_AVRCP_CONNECTED, /**<AVRCP service connected event*/
864         BLUETOOTH_EVENT_AVRCP_DISCONNECTED, /**<AVRCP service disconnected event*/
865         BLUETOOTH_EVENT_AVRCP_SETTING_SHUFFLE_STATUS, /**<AVRCP service player suffle  status event*/
866         BLUETOOTH_EVENT_AVRCP_SETTING_EQUALIZER_STATUS, /**<AVRCP service player equalizer status event*/
867         BLUETOOTH_EVENT_AVRCP_SETTING_REPEAT_STATUS, /**<AVRCP service player repeat status event*/
868         BLUETOOTH_EVENT_AVRCP_SETTING_SCAN_STATUS, /**<AVRCP service player scan status event*/
869         BLUETOOTH_EVENT_AVRCP_DELAY_CHANGED, /**<AVRCP service transport delay changed event*/
870         BLUETOOTH_EVENT_HF_CONNECTED,
871         BLUETOOTH_EVENT_HF_DISCONNECTED,
872         BLUETOOTH_EVENT_HF_AUDIO_CONNECTED,
873         BLUETOOTH_EVENT_HF_AUDIO_DISCONNECTED,
874         BLUETOOTH_EVENT_HF_RING_INDICATOR,
875         BLUETOOTH_EVENT_HF_CALL_WAITING,
876         BLUETOOTH_EVENT_HF_CALL_TERMINATED,
877         BLUETOOTH_EVENT_HF_CALL_STARTED,
878         BLUETOOTH_EVENT_HF_CALL_ENDED,
879         BLUETOOTH_EVENT_HF_CALL_UNHOLD,
880         BLUETOOTH_EVENT_HF_CALL_SWAPPED,
881         BLUETOOTH_EVENT_HF_CALL_ON_HOLD,
882         BLUETOOTH_EVENT_HF_CALL_STATUS,
883         BLUETOOTH_EVENT_HF_VOICE_RECOGNITION_ENABLED,
884         BLUETOOTH_EVENT_HF_VOICE_RECOGNITION_DISABLED,
885         BLUETOOTH_EVENT_HF_VOLUME_SPEAKER,
886         BLUETOOTH_EVENT_HF_VENDOR_DEP_CMD,
887         BLUETOOTH_EVENT_HF_CALLSETUP_INCOMING,
888         BLUETOOTH_EVENT_HF_CALL_FAILED_TO_DIAL,
889         BLUETOOTH_EVENT_HF_CALL_IDLE,
890         BLUETOOTH_EVENT_HF_CALLSETUP_DIALING,
891         BLUETOOTH_EVENT_HF_CALLSETUP_ALERTING,
892         BLUETOOTH_EVENT_HF_CIEV_DEVICE_STATUS_CHANGED,
893
894         BLUETOOTH_HID_CONNECTED = BLUETOOTH_EVENT_HID_BASE, /**< Input connectd event*/
895         BLUETOOTH_HID_DISCONNECTED, /**< Input disconnectd event*/
896         BLUETOOTH_HID_DEVICE_CONNECTED, /**< HID Device connected event*/
897         BLUETOOTH_HID_DEVICE_DISCONNECTED, /**< HID Device disconnected event*/
898         BLUETOOTH_HID_DEVICE_DATA_RECEIVED, /**< HID Device data received event*/
899
900         BLUETOOTH_EVENT_ADVERTISING_STARTED = BLUETOOTH_EVENT_ADVERTISING_BASE, /**< Advertising started event */
901         BLUETOOTH_EVENT_ADVERTISING_STOPPED, /**< Advertising stopped event */
902         BLUETOOTH_EVENT_ADVERTISING_MANUFACTURER_DATA_CHANGED, /**< Advertising manufacturer data changed event */
903         BLUETOOTH_EVENT_SCAN_RESPONSE_MANUFACTURER_DATA_CHANGED, /**< Scan response manufacturer data changed event */
904         BLUETOOTH_EVENT_MANUFACTURER_DATA_CHANGED, /**< Manufacturer data changed event */
905         BLUETOOTH_EVENT_DEVICE_ERROR, /**< Hardware error */
906         BLUETOOTH_EVENT_TX_TIMEOUT_ERROR, /** TX Timeout Error*/
907         BLUETOOTH_EVENT_MAX, /**< Bluetooth event Max value */
908
909         BLUETOOTH_PBAP_CONNECTED = BLUETOOTH_EVENT_PBAP_CLIENT_BASE, /**< PBAP connected event*/
910         BLUETOOTH_PBAP_DISCONNECTED, /**< PBAP disconnectd event*/
911         BLUETOOTH_PBAP_PHONEBOOK_SIZE, /**< PBAP Phonebook Size event*/
912         BLUETOOTH_PBAP_PHONEBOOK_PULL, /**< PBAP Phonebook Pull event*/
913         BLUETOOTH_PBAP_VCARD_LIST, /**< PBAP vCard List event*/
914         BLUETOOTH_PBAP_VCARD_PULL, /**< PBAP vCard Pull event*/
915         BLUETOOTH_PBAP_PHONEBOOK_SEARCH, /**< PBAP Phonebook Search event*/
916
917         BLUETOOTH_EVENT_AVRCP_CONTROL_CONNECTED = BLUETOOTH_EVENT_AVRCP_CONTROL_BASE, /**<AVRCP service connected event*/
918         BLUETOOTH_EVENT_AVRCP_CONTROL_DISCONNECTED, /**<AVRCP service disconnected event*/
919         BLUETOOTH_EVENT_AVRCP_CONTROL_SHUFFLE_STATUS, /**<AVRCP control suffle  status event*/
920         BLUETOOTH_EVENT_AVRCP_CONTROL_EQUALIZER_STATUS, /**<AVRCP control equalizer status event*/
921         BLUETOOTH_EVENT_AVRCP_CONTROL_REPEAT_STATUS, /**<AVRCP control repeat status event*/
922         BLUETOOTH_EVENT_AVRCP_CONTROL_SCAN_STATUS, /**<AVRCP control scan status event*/
923         BLUETOOTH_EVENT_AVRCP_SONG_POSITION_STATUS, /**<AVRCP control play Postion status event*/
924         BLUETOOTH_EVENT_AVRCP_PLAY_STATUS_CHANGED, /**<AVRCP control play status event*/
925         BLUETOOTH_EVENT_AVRCP_TRACK_CHANGED, /**<AVRCP control song metadata event*/
926
927         BLUETOOTH_EVENT_IPSP_INIT_STATE_CHANGED = BLUETOOTH_EVENT_IPSP_BASE, /**<IPSP init event*/
928         BLUETOOTH_EVENT_IPSP_CONNECTED, /**< IPSP connected event  */
929         BLUETOOTH_EVENT_IPSP_DISCONNECTED, /**< IPSP Disconnected event */
930         BLUETOOTH_EVENT_IPSP_INTERFACE_INFO, /** IPSP BT Interface Info after connection */
931         BLUETOOTH_EVENT_LE_DATA_LENGTH_CHANGED,  /** LE data length values changed */
932         BLUETOOTH_EVENT_PXP_PROPERTY_CHANGED, /** Proximity property changed */
933         BLUETOOTH_EVENT_TDS_ACTIVATION_REQUESTED, /** TDS activation requested */
934         BLUETOOTH_EVENT_TDS_TRANSPORT_DATA_RECEIVED,  /** TDS Transport Data received */
935         BLUETOOTH_EVENT_TDS_ACTIVATION_RESULT,        /** TDS Activation Result */
936         BLUETOOTH_EVENT_TDS_CONTROL_POINT_ENABLED,    /** TDS CCCD enabled event */
937         BLUETOOTH_EVENT_TDS_ACTIVATION_INDICATION,    /** TDS Activation Indication from Provider */
938
939         BLUETOOTH_EVENT_OTP_SERVER_STATE_CHANGED,       /* OTP Server Status **/
940         BLUETOOTH_EVENT_OTP_READ_CHAR_VAL,      /* OTP Read Value Response */
941         BLUETOOTH_EVENT_OTP_NOTIFICATION_ENABLED,       /* OTP Notification Enabled Response */
942         BLUETOOTH_EVENT_OTP_WRITE_CHAR_VAL,     /* OTP Write Value Response */
943         BLUETOOTH_EVENT_OTP_INDICATION, /* OTP Indication */
944         BLUETOOTH_EVENT_OTC_STATE_CHANGED,              /* OTC Connection State Changed Event */
945 } bluetooth_event_type_t;
946
947  /**
948  * This bt_service_uuid_list_t  enum  indicates service uuid list .
949  * This values is stored the service_list_array in bt_sdp_info_t and bluetooth_device_info_t.
950  */
951
952 typedef enum {
953         BLUETOOTH_SPP_PROFILE_UUID = ((unsigned short)0x1101),                  /**<SPP*/
954         BLUETOOTH_LAP_PROFILE_UUID = ((unsigned short)0x1102),                  /**<LAP*/
955         BLUETOOTH_DUN_PROFILE_UUID = ((unsigned short)0x1103),                  /**<DUN*/
956         BLUETOOTH_OBEX_IR_MC_SYNC_SERVICE_UUID = ((unsigned short)0x1104),      /**<OBEX IR MC SYNC*/
957         BLUETOOTH_OBEX_OBJECT_PUSH_SERVICE_UUID = ((unsigned short)0x1105),     /**<OPP*/
958         BLUETOOTH_OBEX_MESSAGE_ACCESS_SERVICE_UUID = ((unsigned short)0x1134),  /**<MAP*/
959         BLUETOOTH_OBEX_FILE_TRANSFER_UUID = ((unsigned short)0x1106),           /**<FTP*/
960         BLUETOOTH_IRMC_SYNC_COMMAND_UUID = ((unsigned short)0x1107),            /**<IRMC SYNC COMMAND*/
961         BLUETOOTH_HS_PROFILE_UUID = ((unsigned short)0x1108),                   /**<HS*/
962         BLUETOOTH_CTP_PROFILE_UUID = ((unsigned short)0x1109),                  /**<CTP*/
963         BLUETOOTH_AUDIO_SOURCE_UUID = ((unsigned short)0x110A),                 /**<AUDIO SOURCE*/
964         BLUETOOTH_AUDIO_SINK_UUID = ((unsigned short)0x110B),                   /**<AUDIO SINK*/
965         BLUETOOTH_AV_REMOTE_CONTROL_TARGET_UUID = ((unsigned short)0x110C),     /**<AV REMOTE CONTROL
966                                                                                 TARGET*/
967         BLUETOOTH_ADVANCED_AUDIO_PROFILE_UUID = ((unsigned short)0x110D),       /**<A2DP*/
968         BLUETOOTH_AV_REMOTE_CONTROL_UUID = ((unsigned short)0x110E),            /**<AV REMOTE CONTROL UUID*/
969         BLUETOOTH_AV_REMOTE_CONTROL_CONTROLLER_UUID = ((unsigned short)0x110F), /**<AV REMOTE CONTROLLER UUID*/
970         BLUETOOTH_ICP_PROFILE_UUID = ((unsigned short)0x1110),                  /**<ICP*/
971         BLUETOOTH_FAX_PROFILE_UUID = ((unsigned short)0x1111),                  /**<FAX*/
972         BLUETOOTH_HEADSET_AG_SERVICE_UUID = ((unsigned short)0x1112),           /**<HS AG */
973         BLUETOOTH_PAN_PANU_PROFILE_UUID = ((unsigned short)0x1115),             /**<PAN*/
974         BLUETOOTH_PAN_NAP_PROFILE_UUID = ((unsigned short)0x1116),              /**<PAN*/
975         BLUETOOTH_PAN_GN_PROFILE_UUID = ((unsigned short)0x1117),               /**<PAN*/
976         BLUETOOTH_DIRECT_PRINTING = ((unsigned short)0x1118),
977         BLUETOOTH_OBEX_BPPS_PROFILE_UUID = ((unsigned short)0x1118),            /**<OBEX BPPS*/ /* Will be removed */
978         BLUETOOTH_REFERENCE_PRINTING = ((unsigned short)0x1119),
979         BLUETOOTH_OBEX_IMAGING_UUID = ((unsigned short)0x111A),                 /**<OBEX_IMAGING*/
980         BLUETOOTH_OBEX_IMAGING_RESPONDER_UUID = ((unsigned short)0x111B),       /**<OBEX_IMAGING
981                                                                                 RESPONDER*/
982         BLUETOOTH_IMAGING_AUTOMATIC_ARCHIVE_UUID = ((unsigned short)0x111C),    /**<IMAGING AUTOMATIC ARCHIVE*/
983         BLUETOOTH_IMAGING_REFERENCED_OBJECTS_UUID = ((unsigned short)0x111D),   /**<IMAGING REFERENCED OBJECTS*/
984         BLUETOOTH_HF_PROFILE_UUID = ((unsigned short)0x111E),                   /**<HF*/
985         BLUETOOTH_HFG_PROFILE_UUID = ((unsigned short)0x111F),                  /**<HFG*/
986         BLUETOOTH_DIRECT_PRINTING_REFERENCE_OBJ_UUID = ((unsigned short)0x1120),
987                                                                         /**<DIRECT PRINTING*/
988         BLUETOOTH_REFLECTED_UI = ((unsigned short)0x1121),              /**<REFLECTED UI*/
989         BLUETOOTH_BASIC_PRINTING = ((unsigned short)0x1122),            /**<BASIC PRINTING*/
990         BLUETOOTH_PRINTING_STATUS = ((unsigned short)0x1123),           /**<PRINTING  STATUS*/
991         BLUETOOTH_OBEX_PRINTING_STATUS_UUID = ((unsigned short)0x1123), /**<OBEX PRINTING STATUS*/ /* Will be removed */
992         BLUETOOTH_HID_PROFILE_UUID = ((unsigned short)0x1124),          /**<HID*/
993         BLUETOOTH_HCR_PROFILE_UUID = ((unsigned short)0x1125),          /**<HCRP*/
994         BLUETOOTH_HCR_PRINT_UUID = ((unsigned short)0x1126),            /**<HCR PRINT*/
995         BLUETOOTH_HCR_SCAN_UUID = ((unsigned short)0x1127),             /**<HCR SCAN*/
996         BLUETOOTH_SIM_ACCESS_PROFILE_UUID = ((unsigned short)0x112D),   /**<SIM ACCESS PROFILE*/
997         BLUETOOTH_PBAP_PCE_UUID = ((unsigned short)0x112E),             /**<PBAP - PCE*/
998         BLUETOOTH_PBAP_PSE_UUID = ((unsigned short)0x112F),             /**<OBEX PBA*/
999         BLUETOOTH_OBEX_PBA_PROFILE_UUID = ((unsigned short)0x112F),     /**<OBEX PBA*/ /* Will be removed */
1000         BLUETOOTH_OBEX_PBAP_UUID = ((unsigned short)0x1130),            /**<OBEX PBA*/
1001         BLUETOOTH_HEADSET_HS_UUID = ((unsigned short)0x1131),           /**<HEADSET HS*/
1002         BLUETOOTH_MESSAGE_ACCESS_SERVER_UUID = ((unsigned short)0x1132),/**<MESSAGE ACCESS SERVER*/
1003         BLUETOOTH_MESSAGE_NOTIFICATION_SERVER_UUID = ((unsigned short)0x1133),/**<MESSAGE NOTIFICATION SERVER*/
1004         BLUETOOTH_MESSAGE_ACCESS_PROFILE_UUID = ((unsigned short)0x1134),/**<MESSAGE ACCESS PROFILE*/
1005         BLUETOOTH_PNP_INFORMATION_UUID = ((unsigned short)0x1200),      /**<PNP*/
1006         BLUETOOTH_GENERIC_NETWORKING_UUID = ((unsigned short)0x1201),   /**<GENERIC NETWORKING*/
1007         BLUETOOTH_GENERIC_FILE_TRANSFER_UUID = ((unsigned short)0x1202),/**<GENERIC FILE TRANSFER*/
1008         BLUETOOTH_GENERIC_AUDIO_UUID = ((unsigned short)0x1203),        /**<GENERIC AUDIO*/
1009         BLUETOOTH_GENERIC_TELEPHONY_UUID = ((unsigned short)0x1204),    /**<GENERIC TELEPHONY*/
1010         BLUETOOTH_VIDEO_SOURCE_UUID = ((unsigned short)0x1303), /**<VEDIO SOURCE*/
1011         BLUETOOTH_VIDEO_SINK_UUID = ((unsigned short)0x1304),           /**<VEDIO SINK*/
1012         BLUETOOTH_VIDEO_DISTRIBUTION_UUID = ((unsigned short)0x1305),   /**<VEDIO DISTRIBUTION*/
1013         BLUETOOTH_HDP_UUID = ((unsigned short)0x1400),                  /**<HDP*/
1014         BLUETOOTH_HDP_SOURCE_UUID = ((unsigned short)0x1401),           /**<HDP SOURCE*/
1015         BLUETOOTH_HDP_SINK_UUID = ((unsigned short)0x1402),             /**<HDP SINK*/
1016         BLUETOOTH_OBEX_SYNCML_TRANSFER_UUID = ((unsigned short)0x0000)  /**<OBEX_SYNC*/ /* Will be removed */
1017 } bluetooth_service_uuid_list_t;
1018
1019 /**
1020 * Service class part of class of device returned from device discovery
1021 */
1022 typedef enum {
1023         BLUETOOTH_DEVICE_SERVICE_CLASS_LIMITED_DISCOVERABLE_MODE = 0x002000,
1024         BLUETOOTH_DEVICE_SERVICE_CLASS_POSITIONING = 0x010000,                  /**<  */
1025         BLUETOOTH_DEVICE_SERVICE_CLASS_NETWORKING = 0x020000,                   /**<  */
1026         BLUETOOTH_DEVICE_SERVICE_CLASS_RENDERING = 0x040000,                    /**<  */
1027         BLUETOOTH_DEVICE_SERVICE_CLASS_CAPTURING = 0x080000,                    /**<  */
1028         BLUETOOTH_DEVICE_SERVICE_CLASS_OBJECT_TRANSFER = 0x100000,              /**<  */
1029         BLUETOOTH_DEVICE_SERVICE_CLASS_AUDIO = 0x200000,                        /**<  */
1030         BLUETOOTH_DEVICE_SERVICE_CLASS_TELEPHONY = 0x400000,                    /**<  */
1031         BLUETOOTH_DEVICE_SERVICE_CLASS_INFORMATION = 0x800000,                  /**<  */
1032 } bluetooth_device_service_class_t;
1033
1034
1035 /**
1036  * Major device mask (For device discovery)
1037  */
1038 typedef enum {
1039         BLUETOOTH_DEVICE_MAJOR_MASK_MISC = 0x00,
1040         BLUETOOTH_DEVICE_MAJOR_MASK_COMPUTER = 0x0001,
1041         BLUETOOTH_DEVICE_MAJOR_MASK_PHONE = 0x0002,
1042         BLUETOOTH_DEVICE_MAJOR_MASK_LAN_ACCESS_POINT = 0x0004,
1043         BLUETOOTH_DEVICE_MAJOR_MASK_AUDIO = 0x0008,
1044         BLUETOOTH_DEVICE_MAJOR_MASK_PERIPHERAL = 0x0010,
1045         BLUETOOTH_DEVICE_MAJOR_MASK_IMAGING = 0x0020,
1046         BLUETOOTH_DEVICE_MAJOR_MASK_WEARABLE = 0x0040,
1047         BLUETOOTH_DEVICE_MAJOR_MASK_TOY = 0x0080,
1048         BLUETOOTH_DEVICE_MAJOR_MASK_HEALTH = 0x0100,
1049 } bluetooth_device_major_mask_t;
1050
1051
1052 /**
1053  * Major device class (part of Class of Device)
1054  */
1055 typedef enum {
1056         BLUETOOTH_DEVICE_MAJOR_CLASS_MISC = 0x00,       /**< Miscellaneous major device class*/
1057         BLUETOOTH_DEVICE_MAJOR_CLASS_COMPUTER = 0x01,           /**< Computer major device class*/
1058         BLUETOOTH_DEVICE_MAJOR_CLASS_PHONE = 0x02,              /**< Phone major device class*/
1059         BLUETOOTH_DEVICE_MAJOR_CLASS_LAN_ACCESS_POINT = 0x03,   /**< LAN major device class*/
1060         BLUETOOTH_DEVICE_MAJOR_CLASS_AUDIO = 0x04,              /**< AUDIO major device class*/
1061         BLUETOOTH_DEVICE_MAJOR_CLASS_PERIPHERAL = 0x05,         /**< Peripheral major device class*/
1062         BLUETOOTH_DEVICE_MAJOR_CLASS_IMAGING = 0x06,            /**< Imaging major device class*/
1063         BLUETOOTH_DEVICE_MAJOR_CLASS_WEARABLE = 0x07,           /**< Wearable device class*/
1064         BLUETOOTH_DEVICE_MAJOR_CLASS_TOY = 0x08,                /**< Toy device class*/
1065         BLUETOOTH_DEVICE_MAJOR_CLASS_HEALTH = 0x09,             /**< Health device class*/
1066         BLUETOOTH_DEVICE_MAJOR_CLASS_UNCLASSIFIED = 0x1F        /**< Unknown major device class*/
1067 } bluetooth_device_major_class_t;
1068
1069 typedef enum {
1070         BLUETOOTH_DEVICE_MINOR_CLASS_UNCLASSIFIED = 0x00,       /**< unclassified minor class */
1071
1072         /* About Computer Major class */
1073         BLUETOOTH_DEVICE_MINOR_CLASS_DESKTOP_WORKSTATION = 0x04,        /**< desktop workstation
1074                                                                         minor class */
1075         BLUETOOTH_DEVICE_MINOR_CLASS_SERVER_CLASS_COMPUTER = 0x08,      /**< server minor class */
1076         BLUETOOTH_DEVICE_MINOR_CLASS_LAPTOP = 0x0C,                     /**< laptop minor class */
1077         BLUETOOTH_DEVICE_MINOR_CLASS_HANDHELD_PC_OR_PDA = 0x10,         /**< PDA minor class */
1078         BLUETOOTH_DEVICE_MINOR_CLASS_PALM_SIZED_PC_OR_PDA = 0x14,       /**< PALM minor class */
1079         BLUETOOTH_DEVICE_MINOR_CLASS_WEARABLE_COMPUTER = 0x18,  /**< Wearable PC minor class */
1080
1081         /* About Phone Major class */
1082         BLUETOOTH_DEVICE_MINOR_CLASS_CELLULAR = 0x04,                   /**< Cellular minor class */
1083         BLUETOOTH_DEVICE_MINOR_CLASS_CORDLESS = 0x08,                   /**< cordless minor class */
1084         BLUETOOTH_DEVICE_MINOR_CLASS_SMART_PHONE = 0x0C,        /**< smart phone minor class */
1085         BLUETOOTH_DEVICE_MINOR_CLASS_WIRED_MODEM_OR_VOICE_GATEWAY = 0x10,
1086                                                                 /**< voice gateway minor class */
1087         BLUETOOTH_DEVICE_MINOR_CLASS_COMMON_ISDN_ACCESS = 0x14,         /**< ISDN minor class */
1088
1089         /* About LAN/Network Access Point Major class */
1090         BLUETOOTH_DEVICE_MINOR_CLASS_FULLY_AVAILABLE = 0x04,            /**< Fully available minor class */
1091         BLUETOOTH_DEVICE_MINOR_CLASS_1_TO_17_PERCENT_UTILIZED = 0x20,   /**< 1-17% utilized minor class */
1092         BLUETOOTH_DEVICE_MINOR_CLASS_17_TO_33_PERCENT_UTILIZED = 0x40,  /**< 17-33% utilized minor class */
1093         BLUETOOTH_DEVICE_MINOR_CLASS_33_TO_50_PERCENT_UTILIZED = 0x60,  /**< 33-50% utilized minor class */
1094         BLUETOOTH_DEVICE_MINOR_CLASS_50_to_67_PERCENT_UTILIZED = 0x80,  /**< 50-67% utilized minor class */
1095         BLUETOOTH_DEVICE_MINOR_CLASS_67_TO_83_PERCENT_UTILIZED = 0xA0,  /**< 67-83% utilized minor class */
1096         BLUETOOTH_DEVICE_MINOR_CLASS_83_TO_99_PERCENT_UTILIZED = 0xC0,  /**< 83-99% utilized minor class */
1097         BLUETOOTH_DEVICE_MINOR_CLASS_NO_SERVICE_AVAILABLE = 0xE0,               /**< No service available minor class */
1098
1099         /* About Audio/Video Major class */
1100         BLUETOOTH_DEVICE_MINOR_CLASS_HEADSET_PROFILE = 0x04,            /**< Headset minor class */
1101         BLUETOOTH_DEVICE_MINOR_CLASS_HANDSFREE = 0x08,                  /**< Handsfree minor class*/
1102
1103         BLUETOOTH_DEVICE_MINOR_CLASS_MICROPHONE = 0x10,         /**< Microphone minor class */
1104         BLUETOOTH_DEVICE_MINOR_CLASS_LOUD_SPEAKER = 0x14,       /**< Loud Speaker minor class */
1105         BLUETOOTH_DEVICE_MINOR_CLASS_HEADPHONES = 0x18,         /**< Headphones minor class */
1106         BLUETOOTH_DEVICE_MINOR_CLASS_PORTABLE_AUDIO = 0x1C,     /**< Portable Audio minor class */
1107         BLUETOOTH_DEVICE_MINOR_CLASS_CAR_AUDIO = 0x20,           /**< Car Audio minor class */
1108         BLUETOOTH_DEVICE_MINOR_CLASS_SET_TOP_BOX = 0x24,        /**< Set top box minor class */
1109         BLUETOOTH_DEVICE_MINOR_CLASS_HIFI_AUDIO_DEVICE = 0x28,  /**< Hifi minor class */
1110         BLUETOOTH_DEVICE_MINOR_CLASS_VCR = 0x2C,                /**< VCR minor class */
1111         BLUETOOTH_DEVICE_MINOR_CLASS_VIDEO_CAMERA = 0x30,       /**< Video Camera minor class */
1112         BLUETOOTH_DEVICE_MINOR_CLASS_CAM_CORDER = 0x34,         /**< CAM Corder minor class */
1113         BLUETOOTH_DEVICE_MINOR_CLASS_VIDEO_MONITOR = 0x38,      /**<Video Monitor minor class */
1114         BLUETOOTH_DEVICE_MINOR_CLASS_VIDEO_DISPLAY_AND_LOUD_SPEAKER = 0x3C,
1115                                                                         /**< Video Display and Loud
1116                                                                         Speaker minor class */
1117         BLUETOOTH_DEVICE_MINOR_CLASS_VIDEO_CONFERENCING = 0x40, /**< Video Conferencing minor
1118                                                                 class */
1119
1120         BLUETOOTH_DEVICE_MINOR_CLASS_GAMING_OR_TOY = 0x48,      /**< Gaming or toy minor class */
1121
1122         /* About Peripheral Major class */
1123         BLUETOOTH_DEVICE_MINOR_CLASS_KEY_BOARD = 0x40,          /**< Key board minor class */
1124         BLUETOOTH_DEVICE_MINOR_CLASS_POINTING_DEVICE = 0x80,    /**< Pointing Device minor class */
1125         BLUETOOTH_DEVICE_MINOR_CLASS_COMBO_KEYBOARD_OR_POINTING_DEVICE = 0xC0,
1126                                                                 /**< Combo Keyboard or pointing
1127                                                                 device minorclass */
1128
1129         BLUETOOTH_DEVICE_MINOR_CLASS_JOYSTICK = 0x04,           /**< JoyStick minor class */
1130         BLUETOOTH_DEVICE_MINOR_CLASS_GAME_PAD = 0x08,           /**< Game Pad minor class */
1131         BLUETOOTH_DEVICE_MINOR_CLASS_REMOTE_CONTROL = 0x0C,     /**< Remote Control minor class */
1132         BLUETOOTH_DEVICE_MINOR_CLASS_SENSING_DEVICE = 0x10,     /**< Sensing Device minor class */
1133         BLUETOOTH_DEVICE_MINOR_CLASS_DIGITIZER_TABLET = 0x14,   /**< Digitizer minor class */
1134         BLUETOOTH_DEVICE_MINOR_CLASS_CARD_READER = 0x18,        /**< Card Reader minor class */
1135         BLUETOOTH_DEVICE_MINOR_CLASS_DIGITAL_PEN = 0x1C,        /**< Digital pen minor class */
1136         BLUETOOTH_DEVICE_MINOR_CLASS_HANDHELD_SCANNER = 0x20,   /**< Handheld scanner for bar-codes, RFID minor class */
1137         BLUETOOTH_DEVICE_MINOR_CLASS_HANDHELD_GESTURAL_INPUT_DEVICE = 0x24,     /**< Handheld gestural input device minor class */
1138
1139         /* About Imaging Major class */
1140         BLUETOOTH_DEVICE_MINOR_CLASS_DISPLAY = 0x10,            /**< Display minor class */
1141         BLUETOOTH_DEVICE_MINOR_CLASS_CAMERA = 0x20,             /**< Camera minor class */
1142         BLUETOOTH_DEVICE_MINOR_CLASS_SCANNER = 0x40,            /**< Scanner minor class */
1143         BLUETOOTH_DEVICE_MINOR_CLASS_PRINTER = 0x80,            /**< Printer minor class */
1144
1145         /* About Wearable Major class */
1146         BLUETOOTH_DEVICE_MINOR_CLASS_WRIST_WATCH = 0x04,        /**< Wrist watch minor class */
1147         BLUETOOTH_DEVICE_MINOR_CLASS_PAGER = 0x08,              /**< Pager minor class */
1148         BLUETOOTH_DEVICE_MINOR_CLASS_JACKET = 0x0C,             /**< Jacket minor class */
1149         BLUETOOTH_DEVICE_MINOR_CLASS_HELMET = 0x10,             /**< Helmet minor class */
1150         BLUETOOTH_DEVICE_MINOR_CLASS_GLASSES = 0x14,            /**< Glasses minor class */
1151
1152         /* About Toy Major class */
1153         BLUETOOTH_DEVICE_MINOR_CLASS_ROBOT = 0x04,              /**< Robot minor class */
1154         BLUETOOTH_DEVICE_MINOR_CLASS_VEHICLE = 0x08,            /**< Vehicle minor class */
1155         BLUETOOTH_DEVICE_MINOR_CLASS_DOLL_OR_ACTION = 0x0C,     /**< Doll or Action minor class */
1156         BLUETOOTH_DEVICE_MINOR_CLASS_CONTROLLER = 0x10,         /**< Controller minor class */
1157         BLUETOOTH_DEVICE_MINOR_CLASS_GAME = 0x14,               /**< Game minor class */
1158
1159         /* About Health Major class */
1160         BLUETOOTH_DEVICE_MINOR_CLASS_BLOOD_PRESSURE_MONITOR = 0x04,     /**< Blood Pressure minor class */
1161         BLUETOOTH_DEVICE_MINOR_CLASS_THERMOMETER = 0x08,                /**< Thermometer minor class */
1162         BLUETOOTH_DEVICE_MINOR_CLASS_WEIGHING_SCALE = 0x0C,             /**< Weighing Scale minor class */
1163         BLUETOOTH_DEVICE_MINOR_CLASS_GLUCOSE_METER = 0x10,              /**< Glucose minor class */
1164         BLUETOOTH_DEVICE_MINOR_CLASS_PULSE_OXIMETER = 0x14,             /**< Pulse Oximeter minor class */
1165         BLUETOOTH_DEVICE_MINOR_CLASS_HEART_OR_PULSE_RATE_MONITOR = 0x18,/**< Heart or pulse rate monitor minor class */
1166         BLUETOOTH_DEVICE_MINOR_CLASS_MEDICAL_DATA_DISPLAY = 0x1C,       /**< Medical minor class */
1167         BLUETOOTH_DEVICE_MINOR_CLASS_STEP_COUNTER = 0x20,               /**< Step Counter minor class */
1168         BLUETOOTH_DEVICE_MINOR_CLASS_BODY_COMPOSITION_ANALYZER = 0x24,  /**< Body composition analyzer minor class */
1169         BLUETOOTH_DEVICE_MINOR_CLASS_PEAK_FLOW_MONITOR = 0x28,  /**< Peak flow monitor minor class */
1170         BLUETOOTH_DEVICE_MINOR_CLASS_MEDICATION_MONITOR = 0x2C, /**< Medication monitor minor class */
1171         BLUETOOTH_DEVICE_MINOR_CLASS_KNEE_PROSTHESIS = 0x30,    /**< Knee prosthesis minor class */
1172         BLUETOOTH_DEVICE_MINOR_CLASS_ANKLE_PROSTHESIS = 0x34,   /**< Ankle prosthesis minor class */
1173 } bluetooth_device_minor_class_t;
1174
1175 /**
1176  * structure to hold the device information
1177  */
1178 typedef struct {
1179         bluetooth_device_major_class_t major_class; /**< major device class */
1180         bluetooth_device_minor_class_t minor_class; /**< minor device class */
1181         bluetooth_device_service_class_t service_class;
1182                                                     /**< service device class */
1183 } bluetooth_device_class_t;
1184
1185 /**
1186  * Discovery Role types
1187  */
1188 typedef enum {
1189         DISCOVERY_ROLE_BREDR = 0x1,
1190         DISCOVERY_ROLE_LE,
1191         DISCOVERY_ROLE_LE_BREDR
1192 } bt_discovery_role_type_t;
1193
1194 /**
1195  * Connected state types
1196  */
1197 typedef enum {
1198         BLUETOOTH_CONNECTED_LINK_NONE = 0x00,
1199         BLUETOOTH_CONNECTED_LINK_BREDR = 0x01,
1200         BLUETOOTH_CONNECTED_LINK_LE = 0x02,
1201         BLUETOOTH_CONNECTED_LINK_BREDR_LE = 0x03,
1202 } bluetooth_connected_link_t;
1203
1204 /**
1205 * Scan filter entry
1206 */
1207 typedef enum {
1208         BLUETOOTH_LE_SCAN_FILTER_FEATURE_DEVICE_ADDRESS = 0x01,                 /**< device address */
1209         BLUETOOTH_LE_SCAN_FILTER_FEATURE_SERVICE_UUID = 0x04,                   /**< service uuid */
1210         BLUETOOTH_LE_SCAN_FILTER_FEATURE_SERVICE_SOLICITATION_UUID = 0x08,      /**< service solicitation uuid */
1211         BLUETOOTH_LE_SCAN_FILTER_FEATURE_DEVICE_NAME = 0x10,                    /**< device name */
1212         BLUETOOTH_LE_SCAN_FILTER_FEATURE_MANUFACTURER_DATA = 0x20,              /**< manufacturer data */
1213         BLUETOOTH_LE_SCAN_FILTER_FEATURE_SERVICE_DATA = 0x40,                   /**< service data */
1214 } bluetooth_le_scan_filter_feature_t;
1215
1216 /**
1217  * LE connection mode
1218  */
1219 typedef enum {
1220         BLUETOOTH_LE_CONNECTION_MODE_BALANCED,
1221         BLUETOOTH_LE_CONNECTION_MODE_LOW_LATENCY,
1222         BLUETOOTH_LE_CONNECTION_MODE_LOW_POWER
1223 } bluetooth_le_connection_mode_t;
1224
1225 /**
1226 * structure to hold the device information
1227 */
1228 typedef struct {
1229         bluetooth_device_address_t device_address;      /**< device address */
1230         bluetooth_device_name_t device_name;    /**< device name */
1231         bluetooth_device_class_t device_class;  /**< device class */
1232         char uuids[BLUETOOTH_MAX_SERVICES_FOR_DEVICE][BLUETOOTH_UUID_STRING_MAX];
1233         unsigned int service_list_array[BLUETOOTH_MAX_SERVICES_FOR_DEVICE]; /**< Use enum values in bt_service_uuid_list_t */
1234         int service_index;
1235         int rssi;                               /**< received strength signal*/
1236         gboolean paired;                        /**< paired flag */
1237         bluetooth_connected_link_t connected;   /**< connected link type */
1238         gboolean trust;                         /**< trust flag */
1239         gboolean is_alias_set;          /** is device alias set flag**/
1240         bluetooth_manufacturer_data_t manufacturer_data;        /**< manafacturer specific class */
1241 } bluetooth_device_info_t;
1242
1243 /**
1244 * structure to hold the LE device information
1245 */
1246 typedef struct {
1247         int data_len;           /**< manafacturer specific data length */
1248         bluetooth_advertising_data_t data;              /**< manafacturer specific data */
1249 } bluetooth_le_advertising_data_t;
1250
1251 typedef struct {
1252         bluetooth_device_address_t device_address;      /**< device address */
1253         int addr_type;                  /**< address type*/
1254         int rssi;                       /**< received strength signal*/
1255         bluetooth_le_advertising_data_t adv_ind_data;
1256         bluetooth_le_advertising_data_t scan_resp_data;
1257 } bluetooth_le_device_info_t;
1258
1259 typedef struct {
1260         int slot_id;
1261         bluetooth_le_scan_filter_feature_t added_features;              /**< added features */
1262         bluetooth_device_address_t device_address;                      /**< device address */
1263         char device_name[BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX];        /**< device name */
1264         bluetooth_le_advertising_data_t service_uuid;                   /**< service uuid */
1265         bluetooth_le_advertising_data_t service_uuid_mask;              /**< service uuid mask */
1266         bluetooth_le_advertising_data_t service_solicitation_uuid;      /**< service solicitation uuid */
1267         bluetooth_le_advertising_data_t service_solicitation_uuid_mask; /**< service solicitation uuid mask */
1268         bluetooth_le_advertising_data_t service_data;                   /**< service data */
1269         bluetooth_le_advertising_data_t service_data_mask;              /**< service data mask */
1270         int manufacturer_id;                                            /**< manufacturer ID */
1271         bluetooth_le_advertising_data_t manufacturer_data;              /**< manufacturer data */
1272         bluetooth_le_advertising_data_t manufacturer_data_mask;         /**< manufacturer data mask */
1273 } bluetooth_le_scan_filter_t;
1274
1275 typedef struct {
1276         bluetooth_device_address_t device_address;      /**< device address */
1277         unsigned int mtu;       /** < MTU set for the ATT connection */
1278         unsigned int status; /** < status of the MTU exchange */
1279 } bluetooth_le_att_mtu_info_t;
1280
1281 /**
1282  * structure to hold the paired device information
1283  */
1284 typedef struct {
1285         bluetooth_device_address_t device_address;  /**< paired device address */
1286         bluetooth_device_name_t device_name;        /**< device name */
1287         bluetooth_device_class_t device_class;      /**< device class */
1288 } bluetooth_paired_device_info_t;
1289
1290 /**
1291 * structure to hold the paired device information
1292 */
1293 typedef struct {
1294         bluetooth_device_address_t device_address;
1295                                                /**< device address */
1296         char interface_name[BLUETOOTH_INTERFACE_NAME_LENGTH + 1];
1297                                                           /**< network interface name */
1298 } bluetooth_network_device_info_t;
1299
1300 /**
1301  * Authentication event types
1302  */
1303
1304 typedef enum {
1305         BLUETOOTH_AUTH_KEYBOARD_PASSKEY_REQUEST = 0,
1306         BLUETOOTH_AUTH_PIN_REQUEST,
1307         BLUETOOTH_AUTH_PASSKEY_REQUEST,
1308         BLUETOOTH_AUTH_PASSKEY_CONFIRM_REQUEST,
1309 } bluetooth_auth_type_t;
1310
1311 /**
1312 * structure to hold the pincode/pass-key req informations
1313 */
1314 typedef struct {
1315         bluetooth_device_address_t device_address;  /**< remote device address */
1316         bluetooth_device_name_t device_name;        /**< device name */
1317         char str_passkey[BLUETOOTH_DEVICE_PASSKEY_LENGTH_MAX]; /**< pass-key string */
1318         bool incoming; /**< stores if bonding request is incoming */
1319 } bluetooth_authentication_request_info_t;
1320
1321 /**
1322 * Stucture to hold discovery option
1323 */
1324 typedef struct {
1325         unsigned short max_response;    /**< the number of maximum response */
1326         unsigned short discovery_duration;
1327                                         /**< duration of discovery (seconds) */
1328         unsigned int classOfDeviceMask; /**<  mask for values of class of device. to be used with
1329                                         classOfDevice variable */
1330 } bluetooth_discovery_option_t;
1331
1332 /**
1333  * Stucture to hold event information
1334  */
1335 typedef struct {
1336         int event;      /**< event type */
1337         int result;     /**< Success or error value */
1338         void *param_data;
1339                         /**<parameter data pointer */
1340         void *user_data;
1341 } bluetooth_event_param_t;
1342
1343 typedef struct {
1344         bluetooth_device_address_t device_addr;
1345         char uuids[BLUETOOTH_MAX_SERVICES_FOR_DEVICE][BLUETOOTH_UUID_STRING_MAX];
1346         unsigned int service_list_array[BLUETOOTH_MAX_SERVICES_FOR_DEVICE]; /**< Use enum values in bt_service_uuid_list_t */
1347         unsigned int service_name_array[BLUETOOTH_MAX_SERVICES_FOR_DEVICE];
1348         int service_index;
1349 } bt_sdp_info_t;
1350
1351 typedef struct {
1352         bluetooth_device_address_t device_addr;
1353         unsigned char addr_type;
1354         int disc_reason;
1355 } bt_connection_info_t;
1356
1357 /**
1358  * Stucture to rfcomm receive data
1359  */
1360
1361 typedef struct {
1362         int socket_fd;
1363                 /**< the socket fd */
1364         int buffer_size;/**< the length of the receive buffer */
1365         char *buffer;
1366                 /**< the receive data buffer */
1367 } bluetooth_rfcomm_received_data_t;
1368
1369 /**
1370  * HID Header type
1371  */
1372 typedef enum {
1373         HTYPE_TRANS_HANDSHAKE,
1374         HTYPE_TRANS_HID_CONTROL,
1375         HTYPE_TRANS_GET_REPORT,
1376         HTYPE_TRANS_SET_REPORT,
1377         HTYPE_TRANS_GET_PROTOCOL,
1378         HTYPE_TRANS_SET_PROTOCOL,
1379         HTYPE_TRANS_DATA,
1380         HTYPE_TRANS_UNKNOWN,
1381         HTYPE_TRANS_GET_IDLE = 0xF0,
1382         HTYPE_TRANS_SET_IDLE = 0xF1,
1383 } bt_hid_header_type_t;
1384
1385 /**
1386  * HID Param type
1387  */
1388 typedef enum {
1389         PTYPE_DATA_RTYPE_INPUT,
1390         PTYPE_DATA_RTYPE_OUTPUT
1391 } bt_hid_param_type_t;
1392
1393 /**
1394  * Stucture to hid receive data
1395  */
1396 typedef struct {
1397         const char *address;
1398         bt_hid_header_type_t type;
1399                 /**< Header type containing */
1400         bt_hid_param_type_t param;
1401                 /**< Param type in header like INPUT Report or OutPut Report */
1402         int buffer_size;/**< the length of the receive buffer */
1403         char *buffer;
1404                 /**< the receive data buffer */
1405 } bluetooth_hid_received_data_t;
1406
1407 /**
1408 * Stucture to rfcomm connection
1409 */
1410
1411 typedef struct {
1412         int socket_fd; /**< the socket fd */
1413         int server_id; /* Server id */
1414         int device_role; /** < Device role - RFCOMM_ROLE_SERVER or RFCOMM_ROLE_CLIENT */
1415         bluetooth_device_address_t device_addr;
1416                                               /**< device address */
1417         char uuid[BLUETOOTH_UUID_STRING_MAX];
1418 } bluetooth_rfcomm_connection_t;
1419
1420 /**
1421  * Stucture to rfcomm disconnection
1422  */
1423 typedef struct {
1424         int socket_fd;
1425                 /**< the socket fd */
1426         int device_role;/** < Device role - RFCOMM_ROLE_SERVER or RFCOMM_ROLE_CLIENT */
1427         bluetooth_device_address_t device_addr;
1428                                               /**< device address */
1429         char uuid[BLUETOOTH_UUID_STRING_MAX];
1430 } bluetooth_rfcomm_disconnection_t;
1431
1432 typedef struct {
1433         int socket_fd;
1434                 /**< the socket fd */
1435         bluetooth_device_address_t device_addr;
1436                                               /**< device address */
1437 } bluetooth_rfcomm_connection_request_t;
1438
1439 /**
1440  * HDP QOS types
1441  */
1442 typedef enum {
1443         HDP_QOS_RELIABLE,
1444         HDP_QOS_STREAMING,
1445         HDP_QOS_ANY
1446 } bt_hdp_qos_type_t;
1447
1448 /**
1449  * HDP Role types
1450  */
1451 typedef enum {
1452         HDP_ROLE_SOURCE = 0x0,
1453         HDP_ROLE_SINK
1454 } bt_hdp_role_type_t;
1455
1456
1457 /**
1458  * Stucture to HDP connected
1459  */
1460 typedef struct {
1461         const char *app_handle; /**< the application handle */
1462         unsigned int channel_id;        /**< the channel id */
1463         bt_hdp_qos_type_t type; /**< the QOS type */
1464         bluetooth_device_address_t device_address; /**< the remote address */
1465 } bt_hdp_connected_t;
1466
1467 /**
1468  * Stucture to HDP disconnected
1469  */
1470 typedef struct {
1471         unsigned int channel_id; /**< the channel id */
1472         bluetooth_device_address_t device_address; /**< the remote address */
1473 } bt_hdp_disconnected_t;
1474
1475 /**
1476  * Stucture to HDP data indication
1477  */
1478 typedef struct {
1479         unsigned int channel_id;         /**< the channel id */
1480         const char *buffer;      /**< the RX data buffer */
1481         unsigned int size;       /**< the RX data size */
1482 } bt_hdp_data_ind_t;
1483
1484 /**
1485  * Stucture to OPP client transfer information
1486  */
1487 typedef struct {
1488         char *device_addr;
1489         char *filename;
1490         unsigned long size;
1491         int percentage;
1492 } bt_opc_transfer_info_t;
1493
1494 /* TODO: MAP client structures, see above */
1495 /**
1496  * Stucture to Map filter fields
1497  */
1498 typedef struct {
1499         char **fields;
1500         int size;
1501 } bt_map_list_filter_fields_info_t;
1502
1503 /* Obex Server transfer type */
1504 #define TRANSFER_PUT "PUT"
1505 #define TRANSFER_GET "GET"
1506 /**
1507  * Stucture to OPP/FTP Server authorize information
1508  */
1509 typedef struct {
1510         char *filename;
1511         int length;
1512         char *address;
1513         char *name;
1514 } bt_obex_server_authorize_into_t;
1515
1516 /**
1517  * Server type
1518  */
1519 typedef enum {
1520         OPP_SERVER = 0x0,
1521         FTP_SERVER
1522 } bt_obex_server_type_t;
1523
1524 /**
1525  * Stucture to OPP/FTP server transfer information
1526  */
1527 typedef struct {
1528         char *filename;
1529         char *device_name;
1530         char *file_path;
1531         char *type;
1532         int transfer_id;
1533         unsigned long file_size;
1534         int percentage;
1535         bt_obex_server_type_t server_type;
1536         char *address;
1537         unsigned char *contact_auth_info;
1538 } bt_obex_server_transfer_info_t;
1539
1540 /**
1541  * Stucture to OPP/FTP server connection/disconnection information
1542  */
1543 typedef struct {
1544         char *address;
1545         char *device_name;
1546         int transfer_id;
1547 } bt_obex_server_connection_info_t;
1548
1549
1550 /**
1551  * Stucture to OOB data
1552  */
1553
1554 typedef struct {
1555         unsigned char hash[BLUETOOTH_OOB_DATA_LENGTH];
1556         unsigned char randomizer[BLUETOOTH_OOB_DATA_LENGTH];
1557         unsigned int hash_len;
1558         unsigned int randomizer_len;
1559
1560         unsigned char hash256[BLUETOOTH_OOB_DATA_LENGTH];
1561         unsigned char randomizer256[BLUETOOTH_OOB_DATA_LENGTH];
1562         unsigned int hash256_len;
1563         unsigned int randomizer256_len;
1564
1565         unsigned char eir[BLUETOOTH_LE_OOB_DATA_LENGTH];
1566         unsigned int eir_len;
1567 } bt_oob_data_t;
1568
1569 /**
1570  * Structure to GATT attribute handle data
1571  */
1572
1573 typedef struct {
1574         int count;
1575         char **handle;
1576 #ifdef TIZEN_GATT_CLIENT
1577         char uuids[BLUETOOTH_MAX_SERVICES_FOR_DEVICE][BLUETOOTH_UUID_STRING_MAX];
1578         int inst_id[BLUETOOTH_MAX_SERVICES_FOR_DEVICE];
1579 #endif
1580 } bt_gatt_handle_info_t;
1581
1582 #ifdef TIZEN_GATT_CLIENT
1583 /**
1584  * Structure to a most basic GATT attribute handle data
1585  */
1586 typedef struct {
1587         int instance_id;
1588         unsigned char uuid[16];
1589         char address[BLUETOOTH_ADDRESS_STRING_LENGTH];
1590 } bt_gatt_handle_property_t;
1591 #endif
1592
1593 /**
1594  * Structure to GATT Remote service data
1595  */
1596
1597 typedef struct {
1598         char *uuid;
1599         char *handle;
1600         gboolean primary;
1601         bt_gatt_handle_info_t include_handles;
1602         bt_gatt_handle_info_t char_handle;
1603 #ifdef TIZEN_GATT_CLIENT
1604         bt_gatt_handle_property_t prop; /* Added Service UUID, instance_id & associated remote device  */
1605 #endif
1606 } bt_gatt_service_property_t;
1607
1608 /**
1609  * Structure to GATT Remote characteristic data
1610  */
1611
1612 typedef struct {
1613         char *service_handle;
1614         bt_gatt_handle_info_t handle_info;
1615 } bt_gatt_discovered_char_t;
1616
1617 /**
1618  * Structure to format of GATT Characteristic Value
1619  */
1620
1621 typedef struct {
1622         unsigned char format;
1623         unsigned char exponent;
1624         unsigned short unit;
1625         unsigned char name_space;
1626         unsigned short description;
1627 } bt_gatt_char_format_t;
1628
1629 /**
1630  * Structure to GATT Characteristic property
1631  */
1632
1633 typedef struct {
1634         char *handle;
1635         char *uuid;
1636         char *name;
1637         char *description;
1638         bt_gatt_char_format_t format;
1639         unsigned char *val;
1640         unsigned int val_len;
1641         unsigned int permission;
1642         char *representation;
1643         bt_gatt_handle_info_t char_desc_handle;
1644 #ifdef TIZEN_GATT_CLIENT
1645         bt_gatt_handle_property_t prop;      /* Added Char UUID, instance_id */
1646         bt_gatt_handle_property_t svc_prop;  /* Added Service UUID, instance_id */
1647         char value[BLUETOOTH_GATT_ATT_DATA_LENGTH_MAX]; /* Added */
1648         char address[BLUETOOTH_ADDRESS_STRING_LENGTH];         /* Added */
1649 #endif
1650 } bt_gatt_char_property_t;
1651
1652 /**
1653  * Structure to GATT Characteristic descriptor property
1654  */
1655
1656 typedef struct {
1657         char *handle;
1658         char *uuid;
1659         unsigned char *val;
1660         unsigned int val_len;
1661 #ifdef TIZEN_GATT_CLIENT
1662         bt_gatt_handle_property_t prop;      /* Added Descriptor UUID, instance_id */
1663         bt_gatt_handle_property_t char_prop; /* Added Char UUID, instance_id */
1664         bt_gatt_handle_property_t svc_prop;  /* Added Service UUID, instance_id */
1665         char value[BLUETOOTH_GATT_ATT_DATA_LENGTH_MAX];/* Added */
1666         char address[BLUETOOTH_ADDRESS_STRING_LENGTH];          /* Added */
1667 #endif
1668 } bt_gatt_char_descriptor_property_t;
1669
1670 /**
1671  * Structure to GATT Characteristic value
1672  */
1673
1674 typedef struct {
1675         char *char_handle;
1676         guint8 *char_value;
1677         guint32 val_len;
1678 } bt_gatt_char_value_t;
1679
1680 typedef struct {
1681         unsigned char UUID[16];
1682         char address[18];
1683         char *val;
1684         int len;
1685 } bt_gatt_notify_req_t ;
1686
1687 /**
1688  * Structure to GATT Read Request
1689  */
1690 typedef struct {
1691         char *att_handle;
1692         char *service_handle;
1693         char *address;
1694         guint16 offset;
1695         guint req_id;
1696 } bt_gatt_read_req_t;
1697
1698 /**
1699  * Structure to GATT Value change
1700  */
1701 typedef struct {
1702         char *att_handle;
1703         char *service_handle;
1704         char *address;
1705         guint req_id;
1706         gboolean response_needed;
1707         guint16 offset;
1708         guint8 *att_value;
1709         guint32 val_len;
1710 } bt_gatt_value_change_t;
1711
1712 typedef struct {
1713         bluetooth_device_address_t device_addr;
1714         char *svc_path;
1715         bluetooth_gatt_service_change_type_t change_type;
1716 } bt_gatt_service_change_t;
1717
1718 /**
1719  * Structure to GATT characteristc Notification change
1720  */
1721 typedef struct {
1722         char *att_handle;
1723         char *service_handle;
1724         gboolean att_notify;
1725 } bt_gatt_char_notify_change_t;
1726
1727 /**
1728  * Structure to Indication confirmation
1729  */
1730 typedef struct {
1731         char *att_handle;
1732         char *service_handle;
1733         char *address;
1734         gboolean complete;
1735 } bt_gatt_indicate_confirm_t;
1736
1737 /**
1738  * Structure for GATT response data
1739  */
1740 typedef struct {
1741         char *handle;
1742         guint8 *value;
1743         guint32 len;
1744         gpointer user_data;
1745 } bt_gatt_resp_data_t;
1746
1747 /**
1748  * Structure to RSSI Signal Strength Alert
1749  */
1750
1751 typedef struct {
1752         char *address;
1753         int link_type;
1754         int alert_type;
1755         int rssi_dbm;
1756 } bt_rssi_alert_t;
1757
1758 /**
1759  * Structure to RSSI Signal Strength
1760  */
1761
1762 typedef struct {
1763         char *address;
1764         int link_type;
1765         int rssi_dbm;
1766 } bt_raw_rssi_t;
1767
1768 /**
1769  * Structure for RSSI Enabled or Disabled
1770  */
1771
1772 typedef struct {
1773         char *address;
1774         int link_type;
1775         gboolean rssi_enabled;
1776 } bt_rssi_enabled_t;
1777
1778 /**
1779  * Structure for RSSI Threshold
1780  */
1781
1782 typedef struct {
1783         int low_threshold;
1784         int in_range_threshold;
1785         int high_threshold;
1786 } bt_rssi_threshold_t;
1787
1788
1789 /**
1790  * Structure for Suppoted Profiles and Trusted Profiles
1791  */
1792 typedef struct {
1793         char *address;
1794         int profile;
1795         gboolean supported;
1796         gboolean trusted;
1797 } bt_supported_profile_trusted_t;
1798
1799 /**
1800  * Structure for PBAP Folder Parameters
1801  */
1802 typedef struct {
1803         unsigned char addressbook;
1804         unsigned char folder_type;
1805 } bt_pbap_folder_t;
1806
1807 /**
1808  * Structure for PBAP Pull application Parameters
1809  */
1810 typedef struct {
1811         unsigned char format;
1812         unsigned char order;
1813         unsigned short offset;
1814         unsigned short maxlist;
1815         long long unsigned fields;
1816 } bt_pbap_pull_parameters_t;
1817
1818 /**
1819  * Structure for PBAP List application Parameters
1820  */
1821 typedef struct {
1822         unsigned char order;
1823         unsigned short offset;
1824         unsigned short maxlist;
1825 } bt_pbap_list_parameters_t;
1826
1827 /**
1828  * Structure for PBAP Pull vCard application Parameters
1829  */
1830 typedef struct {
1831         unsigned char format;
1832         long long unsigned fields;
1833         int index;
1834 } bt_pbap_pull_vcard_parameters_t;
1835
1836 /**
1837  * Structure for PBAP Search application Parameters
1838  */
1839 typedef struct {
1840         unsigned char order;
1841         unsigned short offset;
1842         unsigned short maxlist;
1843         unsigned char search_attribute;
1844         char search_value[BLUETOOTH_PBAP_MAX_SEARCH_VALUE_LENGTH];
1845 } bt_pbap_search_parameters_t;
1846
1847 /**
1848  * Structure for PBAP Connection Status
1849  */
1850 typedef struct {
1851         bluetooth_device_address_t btaddr;
1852         int connected;
1853 } bt_pbap_connected_t;
1854
1855 /**
1856  * Structure for PBAP Phonebook Size
1857  */
1858 typedef struct {
1859         bluetooth_device_address_t btaddr;
1860         int size;
1861 } bt_pbap_phonebook_size_t;
1862
1863 /**
1864  * Structure for PBAP Phonebook Pull
1865  */
1866 typedef struct {
1867         bluetooth_device_address_t btaddr;
1868         char *vcf_file;
1869         int success;
1870 } bt_pbap_phonebook_pull_t;
1871
1872 /**
1873  * Structure for PBAP vCard List
1874  */
1875 typedef struct {
1876         bluetooth_device_address_t btaddr;
1877         char **vcards;
1878         int length;
1879         int success;
1880 } bt_pbap_vcard_list_t;
1881
1882 /**
1883  * Structure for PBAP vCard Pull
1884  */
1885 typedef struct {
1886         bluetooth_device_address_t btaddr;
1887         char *vcf_file;
1888         int success;
1889 } bt_pbap_vcard_pull_t;
1890
1891 /**
1892  * Structure for PBAP Phonebook search List
1893  */
1894 typedef struct {
1895         bluetooth_device_address_t btaddr;
1896         char **vcards;
1897         int length;
1898         int success;
1899 } bt_pbap_phonebook_search_list_t;
1900
1901 /**
1902  * Stucture to HF Call status information
1903  */
1904
1905 typedef struct {
1906         char *number; /*Phone Number */
1907         int direction; /*Direction :Incoming(1), Outgoing(0)*/
1908         int status; /* Call Status :Active(0), Held(1), Waiting(5), Dailing(2)*/
1909         int mpart; /*Multiparty/conf call: Yes(1), No(0) */
1910         int idx; /*Call index/ID */
1911 } bt_hf_call_status_info_t;
1912
1913 typedef struct {
1914         GList *list;
1915         int count;
1916 } bt_hf_call_list_s;
1917
1918 /**
1919  * Profile types
1920  */
1921 typedef enum {
1922         TRUSTED_PROFILE_PBAP = 1,
1923         TRUSTED_PROFILE_MAP,
1924         TRUSTED_PROFILE_SAP,
1925         TRUSTED_PROFILE_HFP_HF,
1926         TRUSTED_PROFILE_A2DP,
1927         TRUSTED_PROFILE_ALL = 0xFFFFFFFF,
1928 } bluetooth_trusted_profile_t;
1929
1930 /**
1931  * Structure for LE data length change params
1932  */
1933 typedef struct {
1934         bluetooth_device_address_t device_address;
1935         guint16 max_tx_octets;
1936         guint16 max_tx_time;
1937         guint16 max_rx_octets;
1938         guint16 max_rx_time;
1939 } bt_le_data_length_params_t;
1940
1941 /**
1942  * Structure for proximity property change params
1943  */
1944 typedef struct {
1945         bluetooth_device_address_t device_address;
1946         int role;
1947         int service_type;
1948         int alert_lvl;
1949 } bt_pxp_property_changed_params_t;
1950
1951  /**
1952  * @brief DPM BT allowance state
1953  * @see
1954  */
1955 typedef enum {
1956         BLUETOOTH_DPM_ERROR      = -1,   /**< bluetooth allowance error */
1957         BLUETOOTH_DPM_BT_ALLOWED,                /**< bluetooth allowance allowed */
1958         BLUETOOTH_DPM_HANDSFREE_ONLY,  /**< bluetooth allowance handsfree only */
1959         BLUETOOTH_DPM_BT_RESTRICTED,  /**< bluetooth allowance restricted */
1960 } bt_dpm_allow_t;
1961
1962  /**
1963  * @brief DPM API result
1964  * @see
1965  */
1966 typedef enum {
1967         BLUETOOTH_DPM_RESULT_SERVICE_NOT_ENABLED = -5,  /**< DPM API result service not enabled. */
1968         BLUETOOTH_DPM_RESULT_ACCESS_DENIED = -4,                        /**< DPM API result access denied. */
1969         BLUETOOTH_DPM_RESULT_INVALID_PARAM = -3,                        /**< DPM API result invalid parameter. */
1970         BLUETOOTH_DPM_RESULT_NOT_SUPPORTED = -2,                        /**< DPM API result not supported. */
1971         BLUETOOTH_DPM_RESULT_FAIL        = -1,                          /**< DPM API result fail. */
1972         BLUETOOTH_DPM_RESULT_SUCCESS     = 0,                           /**< DPM API result success. */
1973 } bt_dpm_result_t;
1974
1975 /**
1976  * @brief DPM Policy status
1977  * @see
1978  */
1979 typedef enum {
1980         BLUETOOTH_DPM_STATUS_ERROR      = -1,
1981
1982         BLUETOOTH_DPM_ALLOWED           = 0,    /**< DPM Policy status allowed. */
1983         BLUETOOTH_DPM_RESTRICTED                = 1,    /**< DPM Policy status restricted. */
1984
1985         BLUETOOTH_DPM_ENABLE                    = 1,    /**< DPM Policy status enabled. */
1986         BLUETOOTH_DPM_DISABLE   = 0,    /**< DPM Policy status disabled. */
1987
1988         BLUETOOTH_DPM_FALSE                     = 0,    /**< DPM Policy status false. */
1989         BLUETOOTH_DPM_TRUE                      = 1,    /**< DPM Policy status true. */
1990 } bt_dpm_status_t;
1991
1992 typedef enum {
1993         /* policy-group : BLUETOOTH */
1994         BLUETOOTH_DPM_POLICY_ALLOW,
1995         BLUETOOTH_DPM_POLICY_DEVICE_RESTRICTION,
1996         BLUETOOTH_DPM_POLICY_UUID_RESTRICTION,
1997         BLUETOOTH_DPM_POLICY_DEVICES_WHITELIST,
1998         BLUETOOTH_DPM_POLICY_DEVICES_BLACKLIST,
1999         BLUETOOTH_DPM_POLICY_UUIDS_WHITELIST,
2000         BLUETOOTH_DPM_POLICY_UUIDS_BLACKLIST,
2001         BLUETOOTH_DPM_POLICY_ALLOW_OUTGOING_CALL,
2002         BLUETOOTH_DPM_POLICY_PAIRING_STATE,
2003         BLUETOOTH_DPM_POLICY_DESKTOP_CONNECTIVITY_STATE,
2004         BLUETOOTH_DPM_POLICY_DISCOVERABLE_STATE,
2005         BLUETOOTH_DPM_POLICY_LIMITED_DISCOVERABLE_STATE,
2006         BLUETOOTH_DPM_POLICY_DATA_TRANSFER_STATE,
2007         BLUETOOTH_DPM_POLICY_END,
2008 } bt_dpm_policy_cmd_t;
2009
2010
2011 struct bt_dpm_policy {
2012         union {
2013                 int value;
2014                 GSList *list;
2015         };
2016 };
2017 typedef struct bt_dpm_policy bt_dpm_policy_t;
2018
2019 typedef enum {
2020         BLUETOOTH_DPM_POLICY_A2DP_PROFILE_STATE,
2021         BLUETOOTH_DPM_POLICY_AVRCP_PROFILE_STATE,
2022         BLUETOOTH_DPM_POLICY_BPP_PROFILE_STATE,
2023         BLUETOOTH_DPM_POLICY_DUN_PROFILE_STATE,
2024         BLUETOOTH_DPM_POLICY_FTP_PROFILE_STATE,
2025         BLUETOOTH_DPM_POLICY_HFP_PROFILE_STATE,
2026         BLUETOOTH_DPM_POLICY_HSP_PROFILE_STATE,
2027         BLUETOOTH_DPM_POLICY_PBAP_PROFILE_STATE,
2028         BLUETOOTH_DPM_POLICY_SAP_PROFILE_STATE,
2029         BLUETOOTH_DPM_POLICY_SPP_PROFILE_STATE,
2030         BLUETOOTH_DPM_PROFILE_NONE,
2031 } bt_dpm_profile_t;
2032
2033 struct bt_dpm_profile_val {
2034                 int value; /* tells whether the profile is enabled or disabled */
2035 };
2036 typedef struct dpm_profile_val dpm_profile_state_t;
2037
2038 /**
2039  * Structure to DPM device list
2040  */
2041 typedef struct {
2042         int count;
2043         bluetooth_device_address_t addresses[BLUETOOTH_MAX_DPM_LIST];
2044 } bt_dpm_device_list_t;
2045
2046 /**
2047  * Structure to DPM uuid list
2048  */
2049 typedef struct {
2050         int count;
2051         char uuids[BLUETOOTH_MAX_DPM_LIST][BLUETOOTH_UUID_STRING_MAX];
2052 } bt_dpm_uuids_list_t;
2053
2054 /**
2055  * Structure for IPSP Interface Info
2056  */
2057 typedef struct {
2058         bluetooth_device_address_t btaddr;
2059         char if_name[16];
2060 } bt_ipsp_connection_info_t;
2061
2062 typedef struct {
2063         char* session_path;
2064         char* remote_address;
2065 } bt_map_client_session_info_s;
2066
2067 typedef char* bt_map_client_message_object_t;
2068
2069 typedef struct {
2070         int16_t offset;
2071         int16_t max_count;
2072 } bt_map_client_list_folders_filter_t;
2073
2074 typedef struct {
2075         int16_t offset;
2076         int16_t max_count;
2077         int8_t subject_length;
2078         char *fields;
2079         char *types;
2080         char *period_begin;
2081         char *period_end;
2082         int is_read;
2083         char *recipient;
2084         char *sender;
2085         int is_priority;
2086 } bt_map_client_list_messages_filter_t;
2087
2088 typedef struct {
2089         bt_map_client_message_object_t message_object;
2090         char *folder;
2091         char *subject;
2092         char *timestamp;
2093         char *sender;
2094         char *sender_address;
2095         char *reply_to;
2096         char *recipient;
2097         char *recipient_address;
2098         char *type;
2099         int64_t size;
2100         int is_text;
2101         char *status;
2102         int64_t attachment_size;
2103         int is_priority;
2104         int is_read;
2105         int is_sent;
2106         int is_protected;
2107 } bt_map_client_message_item_t;
2108
2109 typedef struct {
2110         int is_transparent;
2111         int is_retry;
2112         char *charset;
2113 } bt_map_client_push_message_args_t;
2114
2115 typedef struct {
2116         char *folder;
2117         char *subject;
2118         char *timestamp;
2119         char *sender;
2120         char *sender_address;
2121         char *reply_to;
2122         char *recipient;
2123         char *recipient_address;
2124         char *type;
2125         int64_t size;
2126         char *status;
2127         int is_priority;
2128         int is_read;
2129         int is_deleted;
2130         int is_sent;
2131         int is_protected;
2132 } bt_map_client_message_t;
2133
2134 typedef struct {
2135         char **names; // holding %size null-terminated folder names
2136         int64_t size;
2137 } bt_map_client_folders_s;
2138
2139 typedef struct {
2140         bt_map_client_message_item_t *message_items;
2141         int64_t size;
2142 } bt_map_client_message_items_s;
2143
2144 typedef struct {
2145         const char* target_file;
2146         void* user_data;
2147 } bt_get_message_callback_data;
2148
2149 /**
2150  * Callback pointer type
2151  */
2152 typedef void (*bluetooth_cb_func_ptr) (int, bluetooth_event_param_t *, void *);
2153
2154 /**
2155  * @fn int bluetooth_register_callback(bluetooth_cb_func_ptr callback_ptr, void *user_data)
2156  * @brief Set the callback function pointer for bluetooth event
2157  *
2158  *
2159  * This API will register the callback function, when any response and event are received from
2160  * bluetooth framework. @n
2161  * this registered callback function will be get called with appropriate event and data structures.
2162  * This function is a synchronous call. An application developer can call
2163  * bluetooth_register_callback() function to register a callback function of bluetooth_cb_func_ptr
2164  * type. This registered function will receive events of bluetooth_event_type_t type along with
2165  * data any.
2166  *
2167  *
2168  * @param[in]   callback_ptr    A pointer to the callback function
2169  * @param[in]   user_data    A pointer to user data
2170  * @return      BLUETOOTH_ERROR_NONE - Success
2171  * @remark      None
2172  * @see         None
2173 @code
2174 void bt_event_callback(int event, bluetooth_event_param_t *param, void *user_data)
2175 {
2176         GMainLoop *main_loop = (GMainLoop*) user_data;
2177
2178         switch(event)
2179         {
2180                 // Code for each event
2181                 default:
2182                         g_main_loop_quit(main_loop);
2183                         break;
2184         }
2185 }
2186
2187 int main()
2188 {
2189         GMainLoop *main_loop = NULL;
2190         int ret = 0;
2191         g_type_init();
2192         main_loop = g_main_loop_new(NULL, FALSE);
2193         ret = bluetooth_register_callback(bt_event_callback, (void*)main_loop);
2194         if (ret >= BLUETOOTH_ERROR_NONE)
2195         {
2196                 // bluetooth_register_callback returned Success
2197         }
2198         else
2199         {
2200                 // bluetooth_register_callback returned failiure
2201         }
2202         g_main_loop_run(main_loop);
2203 }
2204 @endcode
2205  */
2206 int bluetooth_register_callback(bluetooth_cb_func_ptr callback_ptr, void *user_data);
2207
2208 /**
2209  * @fn int bluetooth_le_register_callback(bluetooth_cb_func_ptr callback_ptr, void *user_data)
2210  * @brief Set the callback function pointer for bluetooth le event
2211  *
2212  *
2213  * This API will register the callback function, when any response and event are received from
2214  * bluetooth framework. @n
2215  * this registered callback function will be get called with appropriate event and data structures.
2216  * This function is a synchronous call. An application developer can call
2217  * bluetooth_le_register_callback() function to register a callback function of bluetooth_cb_func_ptr
2218  * type. This registered function will receive events of bluetooth_event_type_t type along with
2219  * data any.
2220  *
2221  *
2222  * @param[in]   callback_ptr    A pointer to the callback function
2223  * @param[in]   user_data    A pointer to user data
2224  * @return      BLUETOOTH_ERROR_NONE - Success
2225  * @remark      None
2226  * @see         None
2227  * */
2228 int bluetooth_le_register_callback(bluetooth_cb_func_ptr callback_ptr, void *user_data);
2229
2230 /**
2231  * @fn int bluetooth_le_unregister_callback(void)
2232  * @brief Set the callback function pointer for bluetooth le event
2233  *
2234  *
2235  * This API will register the callback function, when any response and event are received from
2236  * bluetooth framework. @n
2237  * this registered callback function will be get called with appropriate event and data structures.
2238  * This function is a synchronous call. An application developer can call
2239  * bluetooth_le_register_callback() function to register a callback function of bluetooth_cb_func_ptr
2240  * type. This registered function will receive events of bluetooth_event_type_t type along with
2241  * data any.
2242  *
2243  *
2244  * @param[in]   none
2245  * @return      BLUETOOTH_ERROR_NONE - Success
2246  * @remark      None
2247  * @see         None
2248  * */
2249 int bluetooth_le_unregister_callback(void);
2250
2251 /**
2252  * @fn int bluetooth_deregister_callback(bluetooth_cb_func_ptr callback_ptr)
2253  * @brief Set the callback function pointer for bluetooth event
2254  *
2255  *
2256  * This API will register the callback function, when any response and event are received from
2257  * bluetooth framework. @n
2258  * this registered callback function will be get called with appropriate event and data structures.
2259  * This function is a synchronous call. An application developer can call
2260  * bluetooth_register_callback() function to register a callback function of bluetooth_cb_func_ptr
2261  * type. This registered function will receive events of bluetooth_event_type_t type along with
2262  * data any.
2263  *
2264  *
2265  * @param[in]   none
2266  * @return      BLUETOOTH_ERROR_NONE - Success
2267  * @remark      None
2268  * @see         None
2269 @code
2270 void bt_event_callback(int event, bluetooth_event_param_t *param, void *user_data)
2271 {
2272         GMainLoop *main_loop = (GMainLoop*) user_data;
2273
2274         switch(event)
2275         {
2276                 // Code for each event
2277                 default:
2278                         g_main_loop_quit(main_loop);
2279                         break;
2280         }
2281 }
2282
2283 int main()
2284 {
2285         GMainLoop *main_loop = NULL;
2286         int ret = 0;
2287         g_type_init();
2288         main_loop = g_main_loop_new(NULL, FALSE);
2289         ret = bluetooth_register_callback(bt_event_callback, (void*)main_loop);
2290         if (ret >= BLUETOOTH_ERROR_NONE)
2291         {
2292                 // bluetooth_register_callback returned Success
2293         }
2294         else
2295         {
2296                 // bluetooth_register_callback returned failiure
2297         }
2298         ret = bluetooth_deregister_callback(void);
2299         g_main_loop_run(main_loop);
2300 }
2301 @endcode
2302  */
2303 int bluetooth_unregister_callback(void);
2304
2305 /**
2306  * @fn int bluetooth_enable_adapter(void)
2307  * @brief Enable the Bluetooth H/W
2308  *
2309  *
2310  * This API can be used to activate Bluetooth. It initializes Bluetooth protocol stack for use and
2311  * send request to bluetooth chip for activation.
2312  * This function is typically called at startup or when Bluetooth services are required.  This
2313  * function must be called before calling any other API of Bluetooth operations.
2314  *
2315  * Before performing any operations like Device discover, service search etc.., the adapter must be
2316  * enabled.
2317  *
2318  * This function is a asynchronous call.
2319  * If the call is success then the application will receive BLUETOOTH_EVENT_ENABLED event
2320  * through registered callback function with appropriate result code
2321  *                      BLUETOOTH_CHANGE_STATUS_TIMEOUT - Timeout has happen \n
2322  *                      BLUETOOTH_ERROR_NONE - Success \n
2323  *
2324  * If the adpter is not enabled with in 30 seconds then BLUETOOTH_EVENT_ENABLED with result code
2325  * BLUETOOTH_CHANGE_STATUS_TIMEOUT will come
2326  *
2327  * @return      BLUETOOTH_ERROR_NONE - Success\n
2328  *              BLUETOOTH_ERROR_DEVICE_ALREADY_ENABLED - Adapter already enabled\n
2329  *              BLUETOOTH_ERROR_ACCESS_DENIED - Enabling adapter is not allowed by MDM policy\n
2330  *              BLUETOOTH_ERROR_IN_PROGRESS - Adapter is activating or deactivating\n
2331  * @exception   BLUETOOTH_ERROR_INTERNAL - Dbus proxy call is fail
2332  * @remark      None
2333  * @see         bluetooth_check_adapter, bluetooth_disable_adapter
2334 @code
2335 void bt_event_callback(int event, bluetooth_event_param_t *param)
2336 {
2337         switch(event)
2338         {
2339                 case BLUETOOTH_EVENT_ENABLED:
2340                         if (param->result == BLUETOOTH_ERROR_NONE)
2341                         {
2342                                 // Successfully Enabled
2343                         }
2344                         else
2345                         {
2346                                 // Failed
2347                         }
2348                         break;
2349         }
2350 }
2351
2352 ...
2353
2354 int ret = 0;
2355 ret = bluetooth_enable_adapter();
2356
2357 @endcode
2358  */
2359 int bluetooth_enable_adapter(void);
2360
2361 /**
2362  * @fn int bluetooth_disable_adapter(void)
2363  * @brief Disable the Bluetooth H/W
2364  *
2365  *
2366  * This function disables Bluetooth protocol stack and hardware. This function is called when
2367  * Bluetooth is no longer used. It will internally free all resources and power off the RF radio.
2368  *
2369  * Bluetooth adapter should be disabled to switch off Bluetooth chip (and thereby saving power).
2370  * bluetooth_disable_adapter() API will do that job for you. After switching off Bluetooth,
2371  * BLUETOOTH_EVENT_DISABLED will be sent by SDK to application for confirmation with appropriate
2372  * error code.
2373  * The various error codes are BLUETOOTH_ERROR_NONE for success and BLUETOOTH_ERROR_INTERNAL for
2374  * internal error.
2375  *
2376  * This function is a asynchronous call.
2377  * If this call is success then the applications will receive BLUETOOTH_EVENT_DISABLED event
2378  * through registered callback function.
2379  *
2380  *
2381  * @return      BLUETOOTH_ERROR_NONE - Success\n
2382  *              BLUETOOTH_ERROR_IN_PROGRESS - Adapter is activating or deactivating\n
2383  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Bluetooth adapter is not enabled\n
2384  * @exception   BLUETOOTH_ERROR_INTERNAL - Dbus proxy call is fail
2385  * @remark      None
2386  * @see         bluetooth_check_adapter, bluetooth_enable_adapter
2387 @code
2388 void bt_event_callback(int event, bluetooth_event_param_t *param)
2389 {
2390         switch(event)
2391         {
2392                 case BLUETOOTH_EVENT_DISABLED:
2393                         if (param->result == BLUETOOTH_ERROR_NONE)
2394                         {
2395                                 // Successfully disabled
2396                         }
2397                         else
2398                         {
2399                                 // Failed
2400                         }
2401                         break;
2402         }
2403 }
2404
2405 ...
2406
2407 int ret = 0;
2408 ret = bluetooth_disable_adapter();
2409 @endcode
2410  */
2411 int bluetooth_disable_adapter(void);
2412 int bluetooth_read_battery_data(bt_battery_data *latest);
2413 int bluetooth_set_battery_monitor_state(bool state);
2414 int bluetooth_get_battery_monitor_state(void);
2415 int bluetooth_recover_adapter(void);
2416 int bluetooth_check_adapter_le(void);
2417 int bluetooth_enable_adapter_le(void);
2418
2419 int bluetooth_disable_adapter_le(void);
2420 int bluetooth_get_uuid_name(const char *uuid, char **name);
2421
2422 /**
2423  * @fn int bluetooth_reset_adapter(void)
2424  * @brief Reset the Bluetooth H/W and values
2425  *
2426  *
2427  * This function resets Bluetooth protocol stack and hardware. This function is called when
2428  * an user want to initialize Bluetooth environment.
2429  *
2430  * The various error codes are BLUETOOTH_ERROR_NONE for success and BLUETOOTH_ERROR_INTERNAL for
2431  * internal error.
2432  *
2433  * This function is a synchronous call.
2434  *
2435  * @return      BLUETOOTH_ERROR_NONE - Success\n
2436  * @exception   BLUETOOTH_ERROR_INTERNAL - Dbus proxy call is fail
2437  * @remark      None
2438  * @see         bluetooth_check_adapter, bluetooth_enable_adapter
2439 @code
2440 ...
2441
2442 int ret = 0;
2443 ret = bluetooth_reset_adapter();
2444 @endcode
2445  */
2446 int bluetooth_reset_adapter(void);
2447
2448 /**
2449  * @fn int bluetooth_is_supported(void)
2450  * @brief Check if the bluetooth is supported or not by the current target
2451  *
2452  * This API checks whether the bluetooth is supported or not.
2453  * This API only run by root permission.
2454  *
2455  * This function is a synchronous call.
2456  *
2457  * @return      0 - if bluetooth is not supported\n
2458  *              1 - if bluetooth is supported\n
2459  *              BLUETOOTH_ERROR_INTERNAL - Error in API internal
2460  * @remark      None
2461 @code
2462
2463 int ret = 0;
2464 ret = bluetooth_is_supported();
2465 @endcode
2466  */
2467 int bluetooth_is_supported(void);
2468
2469
2470 /**
2471  * @fn int bluetooth_check_adapter(void)
2472  * @brief Check the current status of the Bluetooth adapter
2473  *
2474  *
2475  * This API checks whether the Bluetooth adapter is enabled or not. Before performing any operations
2476  * the bluetooth adapter should be enabled. This API helps to find out the current state of the
2477  * bluetooth adapter.
2478  * This API get the adapter internal data structure and check current adapter status.
2479  *
2480  * This function is a synchronous call.
2481  *
2482  *
2483  * @return      BLUETOOTH_ADAPTER_DISABLED - if bluetooth adapter is disabled\n
2484  *              BLUETOOTH_ADAPTER_ENABLED - if bluetooth adapter is enabled\n
2485  * @remark      None
2486  * @see         bluetooth_enable_adapter, bluetooth_disable_adapter
2487 @code
2488
2489 int ret = 0;
2490 ret = bluetooth_check_adapter();
2491 @endcode
2492  */
2493 int bluetooth_check_adapter(void);
2494
2495 /**
2496  * @fn int bluetooth_get_local_address(bluetooth_device_address_t *local_address)
2497  * @brief Get the local adapter bluetooth address
2498  *
2499  *
2500  * This API is used, get the device address of the local bluetooth adapter. Before calling this API,
2501  * the adapter should be enabled.
2502  * In its output parameter, you can receive bluetooth_device_address_t type of pointer which will
2503  * contain Bluetooth address.
2504  * Since its inconvenient for user to remember the address, Bluetooth provides a method to have a
2505  * friendly name for each device.
2506  * There is no event callback for this API.
2507  *
2508  * This function is a synchronous call.
2509  *
2510  *
2511  * @return      BLUETOOTH_ERROR_NONE - Succeess \n
2512  *              BLUETOOTH_ERROR_INVALID_PARAM -  Invalid parameter (NULL buffer) \n
2513  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED -  Adapter is disabled \n
2514  * @param[out]  local_address   a device address of local bluetooth adapter
2515  * @remark      None
2516  * @see         None
2517 @code
2518
2519 bluetooth_device_address_t local_address={0,};
2520 int ret = 0;
2521
2522 ret = bluetooth_get_local_address(&local_address);
2523 @endcode
2524  */
2525 int bluetooth_get_local_address(bluetooth_device_address_t *local_address);
2526
2527 /**
2528  * @fn int bluetooth_get_local_version(bluetooth_version_t *version)
2529  * @brief Get the hci version
2530  *
2531  *
2532  * This function is used to get the bluetooth hci version
2533  * Before calling this API make sure that the adapter is enabled.
2534  *
2535  * This function is a synchronous call.
2536  *
2537  *
2538  * @return      BLUETOOTH_ERROR_NONE - Success \n
2539  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
2540  * @param[out]  timeout   remain visibility timeout value
2541  * @remark      None
2542  @code
2543 bluetooth_version_t *version;
2544  int ret = 0;
2545  ret = bluetooth_get_local_version (&version);
2546  @endcode
2547  */
2548 int bluetooth_get_local_version(bluetooth_version_t *version);
2549
2550 /**
2551  * @fn int bluetooth_get_local_name(bluetooth_device_name_t* local_name)
2552  * @brief Get the local device name
2553  *
2554  *
2555  * This function is used, get the local device name. Since its difficult to remember the Adapter
2556  * address, the friendly name can be assigned to the adapter and we can get it using this API. This
2557  * friendly name is retrived by the remote device and displaying.
2558  * Before calling this API, the adapter should be enabled. There is no event callback for this API.
2559  *
2560  * This function is a synchronous call.
2561  *
2562  *
2563  * @return      BLUETOOTH_ERROR_NONE - Success \n
2564  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter (NULL buffer)\n
2565  * @param[out]  local_name      a local device name
2566  * @remark      None
2567  * @see         None
2568 @code
2569 bluetooth_device_name_t local_name={0,}
2570 int ret = 0;
2571 ret = bluetooth_get_local_name (&local_name);
2572 @endcode
2573  */
2574 int bluetooth_get_local_name(bluetooth_device_name_t *local_name);
2575
2576 /**
2577  * @fn int bluetooth_set_local_name(const bluetooth_device_name_t *local_name)
2578  * @brief Set the local device name
2579  *
2580  *
2581  * This function is used to set the local device name. This is a human friendly name whose
2582  * length can be BLUETOOTH_DEVICE_NAME_LENGTH_MAX maximum
2583  *
2584  * This function is a synchronous call.
2585  *
2586  * @param[in]   local_name   bluetooth device name to set local device
2587  *
2588  * @return      BLUETOOTH_ERROR_NONE - Success \n
2589  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2590  *              BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2591  *              BLUETOOTH_ERROR_INVALID_DATA - Device address provided is incorrect \n
2592  *              BLUETOOTH_ERROR_NO_RESOURCES - Pre-allocated memory error \n
2593  *              BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2594  *
2595  * @remark      None
2596
2597 @code
2598 bluetooth_device_name_t local_name={0,}
2599 int ret = 0;
2600 ret = bluetooth_set_local_name (&local_name);
2601 @endcode
2602  */
2603 int bluetooth_set_local_name(const bluetooth_device_name_t *local_name);
2604
2605
2606 /**
2607  * @fn int bluetooth_is_service_used(const char *service_uuid, gboolean *used)
2608  * @brief Check if the uuid is used or not
2609  *
2610  * This function is used to check if the uuid is used or not.
2611  *
2612  * This function is a synchronous call.
2613  *
2614  * @param[in]   service_uuid   service uuid (UUID 128 bit as string)
2615  * @param[out] used  if the uuid is used or not
2616  *
2617  * @return      BLUETOOTH_ERROR_NONE - Success \n
2618  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2619  *              BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2620  *              BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2621  *
2622  * @remark      None
2623  *
2624 @code
2625 gboolean used = FALSE;
2626 const char *uuid ="00001101-0000-1000-8000-00805F9B34FB";
2627 ret = bluetooth_is_service_used(uuid, &used);
2628 @endcode
2629  */
2630 int bluetooth_is_service_used(const char *service_uuid, gboolean *used);
2631
2632 /**
2633  * @fn int bluetooth_is_device_connected(const bluetooth_device_address_t *device_address, bluetooth_service_type_t type, gboolean *is_connected)
2634  * @brief Check if the device is connected to the specific service
2635  *
2636  * This function is used to check if if the device is connected to the specific service.
2637  *
2638  * This function is a synchronous call.
2639  *
2640  * @param[in]   local_address   a device address of remote bluetooth device
2641  * @param[in]   type the service type
2642  * @param[out] is_connected  if the device is connected or not
2643  *
2644  * @return      BLUETOOTH_ERROR_NONE - Success \n
2645  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2646  *              BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2647  *              BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2648  *
2649  * @remark      None
2650  *
2651 @code
2652 gboolean is_connected = FALSE;
2653 bluetooth_device_address_t device_address={{0x00,0x0D,0xFD,0x24,0x5E,0xFF}};
2654 ret = bluetooth_is_device_connected(&device_address, BLUETOOTH_HSP_SERVICE, &used);
2655 @endcode
2656  */
2657 int bluetooth_is_device_connected(const bluetooth_device_address_t *device_address,
2658                                 bluetooth_service_type_t type,
2659                                 gboolean *is_connected);
2660
2661 /**
2662  * @fn int bluetooth_get_connected_link_type(const bluetooth_device_address_t *device_address, bluetooth_connected_link_t *connected_link)
2663  * @brief Gets device's connected link type
2664  *
2665  * This function is used to get device's connected link type
2666  *
2667  * This function is a synchronous call.
2668  *
2669  * @param[in]   device_address  a device address of remote bluetooth device
2670  * @param[out]  connected_link  a device's connected link type
2671  *
2672  * @return      BLUETOOTH_ERROR_NONE - Success \n
2673  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2674  *              BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2675  *              BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2676  *
2677  * @remark      None
2678  *
2679 @code
2680 bluetooth_connected_link_t *connected_link = BLUETOOTH_CONNECTED_LINK_NONE;
2681 bluetooth_device_address_t device_address={{0x00,0x0D,0xFD,0x24,0x5E,0xFF}};
2682 ret = bluetooth_get_connected_link(&device_address, &connected_link);
2683 @endcode
2684  */
2685 int bluetooth_get_connected_link_type(const bluetooth_device_address_t *device_address,
2686                                 bluetooth_connected_link_t *connected_link);
2687
2688 /**
2689  * @fn int bluetooth_set_profile_trusted(const bluetooth_device_address_t *device_address, int profile, int trust)
2690  * @brief Sets a profile trusted for a device
2691  *
2692  * This function is used to Set a profile as trusted for a device
2693  *
2694  * This function is a synchronous call.
2695  *
2696  * @param[in]   device_address  a device address of remote bluetooth device
2697  * @param[in]   profile profile which is to be set as trusted[0-PBAP, 1-MAP, 2-SAP]
2698  * @param[in]   trust   to set as trusted or untrusted[1-trusted 0-untrusted]
2699  *
2700  * @return      BLUETOOTH_ERROR_NONE - Success \n
2701  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2702  *              BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2703  *              BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2704  *
2705  * @remark      None
2706  */
2707 int bluetooth_set_profile_trusted(
2708                 const bluetooth_device_address_t *device_address,
2709                 int profile, int trust);
2710
2711 /**
2712  * @fn int bluetooth_get_profile_trusted(const bluetooth_device_address_t *device_address, int profile, int *trust)
2713  * @brief Gets a profile is trusted for a device
2714  *
2715  * This function is used to Get a profile is trusted or not for a device
2716  *
2717  * This function is a synchronous call.
2718  *
2719  * @param[in]   device_address  a device address of remote bluetooth device
2720  * @param[in]   profile profile whose trust status is needed[0-PBAP, 1-MAP, 2-SAP]
2721  * @param[out]  trust   profile is set as trusted or untrusted[1-trusted 0-untrusted]
2722  *
2723  * @return      BLUETOOTH_ERROR_NONE - Success \n
2724  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2725  *              BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2726  *              BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2727  *
2728  * @remark      None
2729  */
2730 int bluetooth_get_profile_trusted(
2731                 const bluetooth_device_address_t *device_address,
2732                 int profile, int *trust);
2733
2734 /**
2735  * @fn int bluetooth_get_discoverable_mode(bluetooth_discoverable_mode_t *discoverable_mode_ptr)
2736  * @brief Get the visibility mode
2737  *
2738  *
2739  * This function is used to get the discoverable mode (Visibility option). Depending upon the
2740  * visibity mode, the property of the device is determined whether it can be discoverable, non
2741  * discoverable, connectable etc. Before calling this API make sure that the adapter is enabled.
2742  *
2743  * This function is a synchronous call.
2744  *
2745  *
2746  * @return      BLUETOOTH_ERROR_NONE - Success \n
2747  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2748  *              BLUETOOTH_ERROR_INVALID_DATA - Invalid data \n
2749  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2750  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
2751  * @param[out]  discoverable_mode   current bluetooth discoverable mode
2752  * @remark      None
2753  * @see         bluetooth_set_discoverable_mode
2754  @code
2755  bluetooth_discoverable_mode_t discoverable_mode_ptr;
2756  int ret = 0;
2757  ret = bluetooth_get_discoverable_mode (&discoverable_mode_ptr);
2758  @endcode
2759  */
2760 int bluetooth_get_discoverable_mode(bluetooth_discoverable_mode_t *discoverable_mode_ptr);
2761
2762 /**
2763  * @fn int bluetooth_set_discoverable_mode(bluetooth_discoverable_mode_t discoverable_mode,
2764  *                                              int timeout)
2765  * @brief Set the visibility mode
2766  *
2767  *
2768  * This function is used to set the discoverable mode (Visibility option).
2769  *
2770  * Many times user may want to keep his device discoverable so that when peer device is performing
2771  * device search, he/she can find user's device. Application programmer can keep the mode as
2772  * BLUETOOTH_DISCOVERABLE_MODE_GENERAL_DISCOVERABLE or
2773  * BLUETOOTH_DISCOVERABLE_MODE_TIME_LIMITED_DISCOVERABLE for the same purpose. However, all these
2774  * modes cause bluetooth adapter to consume more battery. Hence developer should generally
2775  * keep discoverable mode as BLUETOOTH_DISCOVERABLE_MODE_CONNECTABLE.
2776  *
2777  * This function is a synchronous call.
2778  *
2779  * @return      BLUETOOTH_ERROR_NONE - Success \n
2780  *              BLUETOOTH_ERROR_NOT_SUPPORT - Requested mode is not supported \n
2781  *
2782  * @param[in]  discoverable_mode   the bluetooth discoverable mode to set
2783  * @param[in]  timeout   discoverable time in only limited discoverable mode (second), default: 0
2784  * @remark      None
2785  * @see         bluetooth_get_discoverable_mode
2786
2787 @code
2788
2789 bluetooth_discoverable_mode_t mode;
2790 int ret = 0;
2791 mode= BLUETOOTH_DISCOVERABLE_MODE_TIME_LIMITED_DISCOVERABLE;
2792 ret = bluetooth_set_discoverable_mode (mode, 180);
2793
2794 @endcode
2795  */
2796 int bluetooth_set_discoverable_mode(bluetooth_discoverable_mode_t discoverable_mode,
2797                                             int timeout);
2798
2799
2800 /**
2801  * @fn int bluetooth_get_timeout_value(int *timeout)
2802  * @brief Get the visibility timeout value
2803  *
2804  *
2805  * This function is used to get the visibility timeout
2806  * Before calling this API make sure that the adapter is enabled.
2807  *
2808  * This function is a synchronous call.
2809  *
2810  *
2811  * @return      BLUETOOTH_ERROR_NONE - Success \n
2812  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2813  *              BLUETOOTH_ERROR_INVALID_DATA - Invalid data \n
2814  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2815  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
2816  * @param[out]  timeout   remain visibility timeout value
2817  * @remark      None
2818  * @see         bluetooth_set_discoverable_mode
2819  @code
2820  int timeout;
2821  int ret = 0;
2822  ret = bluetooth_get_timeout_value (&timeout);
2823  @endcode
2824  */
2825 int bluetooth_get_timeout_value(int *timeout);
2826
2827
2828 /**
2829  * @fn int bluetooth_start_discovery(unsigned short max_response, unsigned short discovery_duration,
2830  *                                      unsigned int  classOfDeviceMask)
2831  * @brief Start the generic device discovery which finds both the BR/EDR and LE devices.
2832  *
2833  * To connect connect to peer bluetooth device, you will need to know its bluetooth address and its
2834  * name. You can search for Bluetooth devices in vicinity by bluetooth_start_discovery() API. It
2835  * first performs an inquiry and try to find both the BREDR and LE devices. For each device found
2836  * from the inquiry it gets the remote name of the device. Bluetooth device address and name are
2837  * given to Application via BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND event. In param_data of
2838  * bluetooth_event_param_t, you will receive a pointer to a structure of bluetooth_device_info_t type.
2839  * You will receive device address, device name, device class, rssi (received signal strength indicator).
2840  * please see bluetooth_device_info_t for more details.
2841  *
2842  *
2843  * This API provides searching options like max responses, discovery duration in seconds and class
2844  * of device mask to filter device search. some times there may be too many bluetooth devices in
2845  * vicinity of your device.in such scenario, application can request to reduce number of responces
2846  * (BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND event) with help of max_response parameter. However if you
2847  * pass zero, bluetooth adapter will not restrict number of responses. you can also specify duration
2848  * of the seach in discovery_duration. bluetooth adapter will automatically stop device search after
2849  * application defined time. please note that discovery_duration should be mentioned in seconds.
2850  * Also note that search will end after 180 seconds automatically if you pass 0 in discovery
2851  * duration.
2852  *
2853  * Sometimes user may want to search for a particular kind of device. for ex, mobile or pc. in such
2854  * case, you can use classOfDeviceMask parameter. please see bluetooth_device_service_class_t,
2855  * bluetooth_device_major_class_t and bluetooth_device_minor_class_t enums
2856  *
2857  * This function is a asynchronous call.
2858  * If the call is success then the application will receive BLUETOOTH_EVENT_DISCOVERY_STARTED event
2859  * through registered callback function.
2860  *
2861  * The discovery is responded by an BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND event for each device it
2862  * found and a BLUETOOTH_EVENT_REMOTE_DEVICE_NAME_UPDATED event for its name updation.
2863  *
2864  * The completion or cancellation of the discovery is indicated by an
2865  * BLUETOOTH_EVENT_DISCOVERY_FINISHED event.
2866  *
2867  * The device discovery can be cancelled by calling bluetooth_stop_discovery().
2868  *
2869  *
2870  * @return      BLUETOOTH_ERROR_NONE - Success \n
2871  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Bluetooth adapter is not enabled \n
2872  *              BLUETOOTH_ERROR_DEVICE_BUSY - Bluetooth adapter is busy doing some operation \n
2873  *              BLUETOOTH_ERROR_INTERNAL - System error like heap full has occured or bluetooth
2874                                                 agent is not running \n
2875  *
2876  * @param[in] max_response              define the maximum response of the number of founded devices
2877                                         (0 means unlimited)
2878  * @param[in] discovery_duration        define bluetooth discovery duration (0 means 180s )
2879  * @param[in] classOfDeviceMask         define classes of the device mask which user wants
2880                                         (refer to class of device)
2881  * @remark      None
2882  * @see         bluetooth_start_custom_discovery(), bluetooth_cancel_discovery, bluetooth_device_info_t
2883
2884 @code
2885 void bt_event_callback(int event, bluetooth_event_param_t *param)
2886 {
2887         switch(event)
2888         {
2889                 case BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND:
2890                 {
2891                         bluetooth_device_info_t *device_info = NULL;
2892                         printf("BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND, result [0x%04x]",
2893                                         param->result);
2894                         device_info  = (bluetooth_device_info_t *)param->param_data;
2895                         memcpy(&searched_device, &device_info->device_address,
2896                                                 sizeof(bluetooth_device_address_t));
2897                         printf("dev [%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X]",
2898                                 device_info->device_address.addr[0],
2899                                 device_info->device_address.addr[1],
2900                                 device_info->device_address.addr[2],
2901                                 device_info->device_address.addr[3],
2902                                 device_info->device_address.addr[4],
2903                                 device_info->device_address.addr[5]);
2904                         break;
2905                 }
2906                 case BLUETOOTH_EVENT_REMOTE_DEVICE_NAME_UPDATED:
2907                 {
2908                         bluetooth_device_info_t *device_info = NULL;
2909                         printf("BLUETOOTH_EVENT_REMOTE_DEVICE_NAME_UPDATED, result [0x%04x]",
2910                                                                                 param->result);
2911                         device_info  = (bluetooth_device_info_t *)param->param_data;
2912                         memcpy(&searched_device, &device_info->device_address,
2913                                                                 sizeof(bluetooth_device_address_t));
2914                         printf("dev [%s] [%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X]",
2915                                                         device_info->device_name.name,
2916                                                         device_info->device_address.addr[0],
2917                                                         device_info->device_address.addr[1],
2918                                                         device_info->device_address.addr[2],
2919                                                         device_info->device_address.addr[3],
2920                                                         device_info->device_address.addr[4],
2921                                                         device_info->device_address.addr[5]);
2922                         break;
2923                 }
2924
2925                 case BLUETOOTH_EVENT_DISCOVERY_FINISHED:
2926                         printf("BLUETOOTH_EVENT_DISCOVERY_FINISHED, result[0x%04x]", param->result);
2927                         break;
2928         }
2929 }
2930
2931 unsigned short max_response;
2932 unsigned short discovery_duration;
2933 unsigned classOfDeviceMask;
2934 int ret = 0;
2935
2936 max_response =0;
2937 discovery_duration =0;
2938 classOfDeviceMask =0;
2939
2940 ret = bluetooth_start_discovery(max_response,discovery_duration,classOfDeviceMask);
2941
2942 @endcode
2943  *
2944  */
2945 int bluetooth_start_discovery(unsigned short max_response,
2946                                       unsigned short discovery_duration,
2947                                       unsigned int classOfDeviceMask);
2948
2949 /**
2950  * @fn int bluetooth_start_custom_discovery(bt_discovery_role_type_t role
2951  *                                      unsigned short max_response,
2952  *                                      unsigned short discovery_duration,
2953  *                                      unsigned int  classOfDeviceMask)
2954  * @brief Start the custom device discovery with specific type such as BR/EDR, LE, LE+BR/EDR etc.
2955  *
2956  * Sometimes user may want to search for a particular kind of device. for ex, LE only or BR/EDR only.
2957  * In such case, you can use type parameter. This API is similar to that of bluetooth_start_discovery().
2958  * Please see bluetooth_start_discovery() for other parameters description.
2959  *
2960  * This function is a asynchronous call.
2961  * If the call is success then the application will receive BLUETOOTH_EVENT_DISCOVERY_STARTED event
2962  * through registered callback function.
2963  *
2964  * The discovery is responded by an BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND event for each device it
2965  * found and a BLUETOOTH_EVENT_REMOTE_DEVICE_NAME_UPDATED event for its name updation.
2966  *
2967  * The completion or cancellation of the discovery is indicated by an
2968  * BLUETOOTH_EVENT_DISCOVERY_FINISHED event.
2969  *
2970  * The device discovery can be cancelled by calling bluetooth_stop_discovery().
2971  *
2972  *
2973  * @return      BLUETOOTH_ERROR_NONE - Success \n
2974  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Bluetooth adapter is not enabled \n
2975  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
2976  *              BLUETOOTH_ERROR_IN_PROGRESS - Bluetooth adapter is busy with another discovery \n
2977  *              BLUETOOTH_ERROR_INTERNAL - System error like heap full has occured or bluetooth
2978                                                 agent is not running \n
2979  *
2980  * @param[in] role              define the role type of devices to be discovered. See enum bt_discovery_role_type_t.
2981                                         (DISCOVERY_ROLE_BREDR means BREDR only, DISCOVERY_ROLE_LE mean Low Energy only,
2982                                         DISCOVERY_ROLE_LE_BREDR means LE & BREDR - same as bluetooth_start_discovery())
2983  * @param[in] max_response              define the maximum response of the number of founded devices
2984                                         (0 means unlimited)
2985  * @param[in] discovery_duration        define bluetooth discovery duration (0 means 180s )
2986  * @param[in] classOfDeviceMask         define classes of the device mask which user wants
2987                                         (refer to class of device)
2988  * @remark      None
2989  * @see         bluetooth_start_discovery(), bluetooth_cancel_discovery, bluetooth_device_info_t
2990
2991 @code
2992 unsigned short type;
2993 unsigned short max_response;
2994 unsigned short discovery_duration;
2995 unsigned classOfDeviceMask;
2996 int ret = 0;
2997
2998 type = 1;
2999 max_response =0;
3000 discovery_duration =0;
3001 classOfDeviceMask =0;
3002
3003 ret = bluetooth_start_custom_discovery(type, max_response, discovery_duration, classOfDeviceMask);
3004
3005 @endcode
3006  *
3007  */
3008 int bluetooth_start_custom_discovery(bt_discovery_role_type_t role,
3009                                                 unsigned short max_response,
3010                                                 unsigned short discovery_duration,
3011                                                 unsigned int classOfDeviceMask);
3012
3013 /**
3014  * @fn int bluetooth_cancel_discovery (void)
3015  * @brief Cancel the on-going device discovery operation
3016  *
3017  *
3018  * This function stops the on-going device discovery operation. This API has to be called after the
3019  * bluetooth_start_discovery API and before the BLUETOOTH_EVENT_DISCOVERY_FINISHED event comes of
3020  * the bluetooth_start_discovery API
3021  *
3022  * Normally the device discovery takes a more time (~10.24 seconds) to get all the devices in its
3023  * vicinity and it recevies as BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND event. This API helps us to
3024  * cancel the discover request once the user received the device to which he wish to connect.
3025  *
3026  * This function is a asynchronous call.
3027  * If the call is success to cancel discovey then the application will receive
3028  * BLUETOOTH_EVENT_DISCOVERY_FINISHED event through registered callback function
3029  * with an error code BLUETOOTH_ERROR_CANCEL. In the case of failure the error code will be
3030  * BLUETOOTH_ERROR_NONE
3031  *
3032  *
3033  * @return      BLUETOOTH_ERROR_NONE - Success \n
3034  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3035  *              BLUETOOTH_ERROR_NOT_IN_OPERATION - No Discovery operation in progess to cancel \n
3036  *              BLUETOOTH_ERROR_ACCESS_DENIED - Currently in discovery but it is requested from
3037                                                 other application \n
3038  *              BLUETOOTH_ERROR_INTERNAL - Internel IPC error \n
3039  * @remark      None
3040  * @see         bluetooth_start_discovery
3041 @code
3042 void bt_event_callback(int event, bluetooth_event_param_t *param)
3043 {
3044         switch(event)
3045         {
3046                 case BLUETOOTH_EVENT_DISCOVERY_FINISHED:
3047                         TC_PRT("BLUETOOTH_EVENT_DISCOVERY_FINISHED, result[0x%04x]", param->result);
3048                         break;
3049         }
3050 }
3051
3052 ..
3053
3054 int ret = 0;
3055
3056 ret = bluetooth_cancel_discovery();
3057 @endcode
3058  */
3059 int bluetooth_cancel_discovery(void);
3060
3061 /**
3062  * @fn int bluetooth_start_le_discovery(void)
3063  * @brief Start the generic device discovery which finds the LE devices.
3064  *
3065  * To connect connect to peer bluetooth device, you will need to know its bluetooth address and its
3066  * name. You can search for Bluetooth devices in vicinity by bluetooth_start_le_discovery() API.
3067  * It try to find LE devices. Bluetooth device address and name are
3068  * given to Application via BLUETOOTH_EVENT_REMOTE_LE_DEVICE_FOUND event. In param_data of
3069  * bluetooth_event_param_t, you will receive a pointer to a structure of bluetooth_device_info_t type.
3070  * You will receive device address, device name, device class, rssi (received signal strength indicator).
3071  * please see bluetooth_device_info_t for more details.
3072  *
3073  * This function is a asynchronous call.
3074  * If the call is success then the application will receive BLUETOOTH_EVENT_LE_DISCOVERY_STARTED event
3075  * through registered callback function.
3076  *
3077  * The discovery is responded by an BLUETOOTH_EVENT_REMOTE_LE_DEVICE_FOUND event for each device it
3078  * found.
3079  *
3080  * The completion or cancellation of the discovery is indicated by an
3081  * BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED event.
3082  *
3083  * The device discovery can be cancelled by calling bluetooth_stop_le_discovery().
3084  *
3085  *
3086  * @return      BLUETOOTH_ERROR_NONE - Success \n
3087  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Bluetooth adapter is not enabled \n
3088  *              BLUETOOTH_ERROR_DEVICE_BUSY - Bluetooth adapter is busy doing some operation \n
3089  *              BLUETOOTH_ERROR_INTERNAL - System error like heap full has occured or bluetooth
3090                                                 agent is not running \n
3091  *
3092  * @remark      None
3093  * @see         bluetooth_stop_le_discovery, bluetooth_device_info_t
3094
3095 @code
3096 void bt_event_callback(int event, bluetooth_event_param_t *param)
3097 {
3098         switch(event)
3099         {
3100                 case BLUETOOTH_EVENT_REMOTE_LE_DEVICE_FOUND:
3101                 {
3102                         bluetooth_device_info_t *device_info = NULL;
3103                         printf("BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND, result [0x%04x]",
3104                                         param->result);
3105                         device_info  = (bluetooth_device_info_t *)param->param_data;
3106                         memcpy(&searched_device, &device_info->device_address,
3107                                                 sizeof(bluetooth_device_address_t));
3108                         printf("dev [%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X]",
3109                                 device_info->device_address.addr[0],
3110                                 device_info->device_address.addr[1],
3111                                 device_info->device_address.addr[2],
3112                                 device_info->device_address.addr[3],
3113                                 device_info->device_address.addr[4],
3114                                 device_info->device_address.addr[5]);
3115                         break;
3116                 }
3117
3118                 case BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED:
3119                         printf("BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED, result[0x%04x]", param->result);
3120                         break;
3121         }
3122 }
3123
3124 int ret = 0;
3125 ret = bluetooth_start_discovery();
3126
3127 @endcode
3128  *
3129  */
3130 int bluetooth_start_le_discovery(void);
3131
3132 /**
3133  * @fn int bluetooth_stop_le_discovery (void)
3134  * @brief Cancel the on-going device LE discovery operation
3135  *
3136  *
3137  * This function stops the on-going device discovery operation. This API has to be called after the
3138  * bluetooth_start_le_discovery API and before the BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED event comes of
3139  * the bluetooth_start_le_discovery API
3140  *
3141  *
3142  * This function is a asynchronous call.
3143  * If the call is success to cancel discovey then the application will receive
3144  * BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED event through registered callback function
3145  * with an error code BLUETOOTH_ERROR_CANCEL. In the case of failure the error code will be
3146  * BLUETOOTH_ERROR_NONE
3147  *
3148  *
3149  * @return      BLUETOOTH_ERROR_NONE - Success \n
3150  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3151  *              BLUETOOTH_ERROR_NOT_IN_OPERATION - No Discovery operation in progess to cancel \n
3152  *              BLUETOOTH_ERROR_ACCESS_DENIED - Currently in discovery but it is requested from
3153                                                 other application \n
3154  *              BLUETOOTH_ERROR_INTERNAL - Internel IPC error \n
3155  * @remark      None
3156  * @see         bluetooth_start_discovery
3157 @code
3158 void bt_event_callback(int event, bluetooth_event_param_t *param)
3159 {
3160         switch(event)
3161         {
3162                 case BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED:
3163                         TC_PRT("BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED, result[0x%04x]", param->result);
3164                         break;
3165         }
3166 }
3167
3168 ..
3169
3170 int ret = 0;
3171
3172 ret = bluetooth_stop_le_discovery();
3173 @endcode
3174  */
3175 int bluetooth_stop_le_discovery(void);
3176
3177 /**
3178  * @fn int bluetooth_is_discovering(void)
3179  * @brief Check for the device discovery is in-progress or not.
3180  *
3181  * This API is used to check the current status of the Discovery operation.If discovery is in\
3182  * progress normally other operations are not allowed.
3183  * If a device discovery is in progress, we have to either cancel the discovery operation or wait
3184  * for the BLUETOOTH_EVENT_DISCOVERY_FINISHED
3185  * event before performing other operations. This API is used to get for the current discovery
3186  * operation status and using bluetooth_cancel_discovery()
3187  * we can cancell the ongoing discovery process.
3188  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
3189  * this API.
3190  *
3191  * This function checks whether the device discovery is started or not.
3192  *
3193  * This function is a synchronous call.
3194  *
3195  *
3196  * @return      BLUETOOTH_ERROR_NONE - Discovery is not in progress \n
3197  *              BLUETOOTH_ERROR_NONE+1 - Discovery in progress \n
3198  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3199  *
3200  * @remark      None
3201  * @see         bluetooth_start_discovery, bluetooth_cancel_discovery
3202
3203 @code
3204 int ret = 0;
3205 ret = bluetooth_is_discovering ();
3206 @endcode
3207  */
3208 int bluetooth_is_discovering(void);
3209
3210 /**
3211  * @fn int bluetooth_is_le_discovering(void)
3212  * @brief Check for the device LE discovery is in-progress or not.
3213  *
3214  * This API is used to check the current status of the LE Discovery operation.If discovery is in\
3215  * progress normally other operations are not allowed.
3216  * If a device discovery is in progress, we have to either cancel the discovery operation or wait
3217  * for the BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED
3218  * event before performing other operations. This API is used to get for the current discovery
3219  * operation status and using bluetooth_stop_le_discovery()
3220  * we can cancell the ongoing LE discovery process.
3221  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
3222  * this API.
3223  *
3224  * This function checks whether the device  LE discovery is started or not.
3225  *
3226  * This function is a synchronous call.
3227  *
3228  *
3229  * @return      BLUETOOTH_ERROR_NONE - Discovery is not in progress \n
3230  *              BLUETOOTH_ERROR_NONE+1 - Discovery in progress \n
3231  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3232  *
3233  * @remark      None
3234  * @see         bluetooth_start_le_discovery, bluetooth_stop_le_discovery
3235
3236 @code
3237 int ret = 0;
3238 ret = bluetooth_is_le_discovering ();
3239 @endcode
3240  */
3241 int bluetooth_is_le_discovering(void);
3242
3243 /**
3244  * @fn int bluetooth_is_le_scanning(void)
3245  * @brief Check for the device LE scan is in-progress or not.
3246  *
3247  * This API is used to check the current status of the LE Scan operation.If discovery is in\
3248  * progress normally other operations are not allowed.
3249  *
3250  * This function checks whether the device  LE Scan is started or not.
3251  *
3252  * This function is a synchronous call.
3253  *
3254  * @return   TRUE  - LE Scan in progress \n
3255  *              FALSE - LE Scan is not in progress \n
3256  *
3257  * @remark      None
3258
3259 @code
3260 gboolean is_le_scanning = 0;
3261 is_le_scanning = bluetooth_is_le_scanning ();
3262 @endcode
3263  */
3264 gboolean bluetooth_is_le_scanning(void);
3265
3266 int  bluetooth_is_scan_filter_supported(gboolean *is_supported);
3267
3268 /**
3269  * @fn int bluetooth_force_hcidump(int timeout)
3270  * @brief Enable /disable force-hcidump
3271  *
3272  * This function control force-hcidump.
3273  *
3274  * This function is a synchronous call.
3275  *
3276  * @return      BLUETOOTH_ERROR_NONE - Success \n
3277  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3278  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
3279  *
3280  * @param[in]   start  To enable or disable force-hcidump[TRUE / FALSE]
3281  *
3282  *
3283  * @remark      None
3284  */
3285 int bluetooth_force_hcidump(int timeout);
3286
3287 /**
3288  * @fn int bluetooth_register_scan_filter(bluetooth_le_scan_filter_t *filter)
3289  * @brief Register scan filter.
3290  *
3291  * This function registers the scan filter.
3292  *
3293  * This function is a synchronous call.
3294  *
3295  * @return      BLUETOOTH_ERROR_NONE - Success \n
3296  *
3297  * @param[in]   filter   scan filter to register
3298  *
3299  * @remark      None
3300  */
3301 int bluetooth_register_scan_filter(bluetooth_le_scan_filter_t *filter);
3302
3303 /**
3304  * @fn int bluetooth_enable_rssi(const bluetooth_device_address_t *remote_address,
3305                 int link_type, bt_rssi_threshold_t rssi_threshold)
3306  * @brief Enable RSSI monitoring
3307  *
3308  * This function enables RSSI monitoring and sets threshold for a connection
3309  *
3310  * @return      BLUETOOTH_ERROR_NONE - Success \n
3311  *
3312  * @remark      None
3313  * @see bluetooth_get_rssi_strength
3314  */
3315 int bluetooth_enable_rssi(const bluetooth_device_address_t *remote_address,
3316                 int link_type, bt_rssi_threshold_t *rssi_threshold);
3317
3318 /**
3319  * @fn int bluetooth_get_rssi_strength(const bluetooth_device_address_t *remote_address, int link_type)
3320  * @brief Gets Raw RSSI signal Strength
3321  *
3322  * This function gives the Raw RSSI signal strength for a connection.
3323  *
3324  * @return      BLUETOOTH_ERROR_NONE - Success \n
3325  *
3326  * @remark      None
3327  * @see bluetooth_enable_rssi
3328  */
3329 int bluetooth_get_rssi_strength(const bluetooth_device_address_t *remote_address, int link_type);
3330
3331 int bluetooth_set_connectable(gboolean is_connectable);
3332
3333 int bluetooth_is_connectable(gboolean *is_connectable);
3334
3335 int bluetooth_disconnect_device(const bluetooth_device_address_t *device_address);
3336
3337 /**
3338  * @fn int bluetooth_bond_device(const bluetooth_device_address_t *device_address)
3339  * @brief Initiate a bonding process
3340  *
3341  *
3342  * This function initiates a bonding procedure with a peer device.  The bonding procedure
3343  * enables authentication and optionally encryption on the Bluetooth link.
3344  *
3345  * Bonding is applied to the discovered device to which we need a secure connection. We cannot
3346  * inititate the bonding request to the devices already in the paired list.
3347  *
3348  * Usually we call this API after the device discovery.
3349  * This function is a asynchronous call.
3350  *
3351  * Response will be received through BLUETOOTH_EVENT_BONDING_FINISHED event. It can any of the below
3352  * mentioed result code
3353  * BLUETOOTH_ERROR_PARING_FAILED - Pairing faied \n
3354  * BLUETOOTH_ERROR_ACCESS_DENIED - Authetication rejected \n
3355  * BLUETOOTH_ERROR_CANCEL_BY_USER - Cancelled by the user \n
3356  * BLUETOOTH_ERROR_PARING_FAILED - Pairing failed \n
3357  * BLUETOOTH_ERROR_TIMEOUT - Timeout has haapened \n
3358  *
3359  * If the remote user is not responding with in a specific time(60 seconds), then a timeout happens
3360  * and BLUETOOTH_EVENT_BONDING_FINISHED callback event is called with and BLUETOOTH_ERROR_TIMEOUT
3361  * result code
3362  *
3363  * The bonding operation can be cancelled by calling bluetooth_cancel_bonding().
3364  *
3365  *
3366  * @return      BLUETOOTH_ERROR_NONE - Success \n
3367  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3368  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3369  *              BLUETOOTH_ERROR_DEVICE_BUSY - Adapter is busy or Discovery is in Progress \n
3370  *              BLUETOOTH_ERROR_INVALID_DATA - Invalid BD address \n
3371  * @exception   None
3372  * @param[in]   device_address   This indicates an address of the device with which the pairing
3373  *                                      should be initiated
3374  * @remark      None
3375  * @see         bluetooth_cancel_bonding
3376  @code
3377 void bt_event_callback(int event, bluetooth_event_param_t *param)
3378 {
3379         switch(event)
3380         {
3381                 case BLUETOOTH_EVENT_BONDING_FINISHED:
3382                 {
3383                         TC_PRT("BLUETOOTH_EVENT_BONDING_FINISHED, result [0x%04x]", param->result);
3384                         if (param->result >= BLUETOOTH_ERROR_NONE)
3385                         {
3386                                 bluetooth_device_info_t *device_info = NULL;
3387                                 device_info  = (bluetooth_device_info_t *)param->param_data;
3388                                 printf("dev [%s] [%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X]
3389                                                         mjr[%#x] min[%#x] srv[%#x]",
3390                                                         device_info->device_name.name,
3391                                                         device_info->device_address.addr[0],
3392                                                         device_info->device_address.addr[1],
3393                                                         device_info->device_address.addr[2],
3394                                                         device_info->device_address.addr[3],
3395                                                         device_info->device_address.addr[4],
3396                                                         device_info->device_address.addr[5],
3397                                                         device_info->device_class.major_class,
3398                                                         device_info->device_class.minor_class,
3399                                                         device_info->device_class.service_class);
3400                         }
3401                         else
3402                         {
3403                                 //bonding failed
3404                         }
3405                         break;
3406                 }
3407         }
3408 }
3409
3410 ...
3411
3412 int ret = 0;
3413 bluetooth_device_address_t device_address={{0}};
3414
3415 ret = bluetooth_bond_device(&device_address);
3416
3417 @endcode
3418  */
3419 int bluetooth_bond_device(const bluetooth_device_address_t *device_address);
3420
3421 /**
3422  * @fn int bluetooth_bond_device_by_type(const bluetooth_device_address_t *device_address,
3423  *                              bluetooth_conn_type_t conn_type)
3424  * @brief Initiate a bonding process
3425  *
3426  *
3427  * This function initiates a bonding procedure with a peer device on the basis of connection type (BLE or BREDR).
3428  * The bonding procedure enables authentication and optionally encryption on the Bluetooth link.
3429  *
3430  * Bonding is applied to the discovered device to which we need a secure connection. We cannot
3431  * inititate the bonding request to the devices already in the paired list.
3432  *
3433  * Usually we call this API after the device discovery.
3434  * This function is a asynchronous call.
3435  *
3436  * Response will be received through BLUETOOTH_EVENT_BONDING_FINISHED event. It can any of the below
3437  * mentioed result code
3438  * BLUETOOTH_ERROR_PARING_FAILED - Pairing faied \n
3439  * BLUETOOTH_ERROR_ACCESS_DENIED - Authetication rejected \n
3440  * BLUETOOTH_ERROR_CANCEL_BY_USER - Cancelled by the user \n
3441  * BLUETOOTH_ERROR_PARING_FAILED - Pairing failed \n
3442  * BLUETOOTH_ERROR_TIMEOUT - Timeout has haapened \n
3443  *
3444  * If the remote user is not responding with in a specific time(60 seconds), then a timeout happens
3445  * and BLUETOOTH_EVENT_BONDING_FINISHED callback event is called with and BLUETOOTH_ERROR_TIMEOUT
3446  * result code
3447  *
3448  * The bonding operation can be cancelled by calling bluetooth_cancel_bonding().
3449  *
3450  *
3451  * @return BLUETOOTH_ERROR_NONE - Success \n
3452  *             BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3453  *             BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3454  *             BLUETOOTH_ERROR_DEVICE_BUSY - Adapter is busy or Discovery is in Progress \n
3455  *             BLUETOOTH_ERROR_INVALID_DATA - Invalid BD address \n
3456  * @exception None
3457  * @param[in] device_address This indicates an address of the device with which pairing
3458  *                                        should be initiated
3459  * @param[in] conn_type This Indicates the connection type to be used for pairing in case of
3460  *                                 dual mode devices
3461  * @remark None
3462  * @see bluetooth_cancel_bonding
3463  */
3464 int bluetooth_bond_device_by_type(const bluetooth_device_address_t *device_address,
3465                                 bluetooth_conn_type_t conn_type);
3466
3467 /**
3468  * @fn int bluetooth_cancel_bonding(void)
3469  * @brief Cancel the on-going bonding process
3470  *
3471  * This API is called to cancel the on-going bonding procedure. It should be called before the
3472  * BLUETOOTH_EVENT_BONDING_FINISHED event comes.
3473  * This API is useful when the remote device is not responding to the bond request or we wish to
3474  * cancel the bonding request. In this case we need not wait for the timeout to happen.
3475  *
3476  * This function is a synchronous call.
3477  *
3478  * @return      BLUETOOTH_ERROR_NONE - Success \n
3479  *              BLUETOOTH_ERROR_NOT_IN_OPERATION - No bonding request in progress \n
3480  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3481  * @exception   None
3482  * @remark      None
3483  * @see         bluetooth_bond_device
3484 @code
3485 ...
3486
3487 int ret = 0;
3488
3489 ret = bluetooth_cancel_bonding();
3490 @endcode
3491  */
3492 int bluetooth_cancel_bonding(void);
3493
3494 /**
3495  * @fn int bluetooth_unbond_device(const bluetooth_device_address_t *device_address)
3496  * @brief Remove bonding
3497  *
3498  *
3499  * To communicate with remote device over bluetooth link, user should bond with peer device.
3500  * After bonding is over, peer device is added to list of bonded devices. bluetooth_unbond_device()
3501  * API is used to remove peer device from the list. Please note that after removing the device
3502  * from bonded device list, you cannot communication with peer device until bonding happens again.
3503  *
3504  * User can call this function by passing bluetooth device address of any bonded device. Please note
3505  * that after successful return of this function, any bluetooth application running on your device
3506  * will not be able to communicate with unbonded device until bond operation happens again using
3507  * bluetooth_bond_device()
3508  *
3509  *
3510  * This function is a asynchronous call. The request to remove the specified device from the bonded
3511  * list is responded by an BLUETOOTH_EVENT_BONDED_DEVICE_REMOVED event. if the operation is success,
3512  * you will receive BLUETOOTH_ERROR_NONE. BLUETOOTH_ERROR_NOT_PAIRED may be received in result code
3513  * in case if there is a problem in locating given bluetooth device address in bonded devices list
3514  *
3515  *
3516  *
3517  * @return      BLUETOOTH_ERROR_NONE - Success \n
3518  *              BLUETOOTH_ERROR_INVALID_PARAM - Device address is not valid \n
3519  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Bluetooth adapter is not enabled \n
3520  *              BLUETOOTH_ERROR_DEVICE_BUSY     - Bluetooth adapter is busy doing some operation \n
3521  *              BLUETOOTH_ERROR_INVALID_DATA - Device address provided is incorrect \n
3522  *              BLUETOOTH_ERROR_INTERNAL - System error like heap full has occured or bluetooth
3523  *                                              agent is not running \n
3524  *              BLUETOOTH_ERROR_NOT_PAIRED - Device address mentioned in the argument is not a
3525  *                                              bonded device \n
3526  *
3527  * @param[in]   device_address   This indicates an address of the device to remove bonding
3528  *
3529  * @remark      None
3530  *
3531  * @see         bluetooth_bond_device, bluetooth_cancel_bonding
3532  *
3533 @code
3534 void bt_event_callback(int event, bluetooth_event_param_t *param)
3535 {
3536         switch(event) {
3537                 case BLUETOOTH_EVENT_BONDED_DEVICE_REMOVED: {
3538                         bluetooth_device_address_t *dev_addr = NULL;
3539
3540                         if (param->result == BLUETOOTH_ERROR_NONE) {
3541                                 dev_addr = (bluetooth_device_address_t *)param->param_data;
3542                                 //Unbound scuccess
3543                                 printf("%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n",
3544                                         dev_addr->addr[0], dev_addr->addr[1]
3545                                         dev_addr->addr[2], dev_addr->addr[3]
3546                                         dev_addr->addr[4], dev_addr->addr[5]
3547                         } else {
3548                                 //unbound failure
3549                         }
3550                 }
3551         }
3552 }
3553
3554 ...
3555
3556 int ret = 0;
3557 bluetooth_device_address_t *device_address;
3558
3559 // copy valid device address in device_address
3560
3561 ret = bluetooth_unbond_device(device_address);
3562 @endcode
3563  */
3564 int bluetooth_unbond_device(const bluetooth_device_address_t *device_address);
3565
3566 /**
3567  * @fn int bluetooth_get_bonded_device_list(GPtrArray **dev_list)
3568  * @brief Get bonded(paired) device list
3569  *
3570  *
3571  * This API gets all bonded device list.
3572  * The devices in the bonded device list further can be used to perform the authorization by calling
3573  * bluetooth_authorize_device API.
3574  *
3575  * This function is a synchronous call.
3576  * Information for bonded devices can be obtained when result code is BLUETOOTH_ERROR_NONE. If not,
3577  * there is no valid information in the dev_list.
3578  * The len field in the dev_list represents the number of bonded devices. The data structure for
3579  * bonded device information is bluetooth_device_info_t.
3580  *
3581  *
3582  * @return      BLUETOOTH_ERROR_NONE - Success \n
3583  *              BLUETOOTH_ERROR_NOT_SUPPORT - Opreation not supported \n
3584  * @remark      None
3585  * @see         bluetooth_bond_device, bluetooth_unbond_device, bluetooth_authorize_device
3586  @code
3587 void bt_get_bonded_devices(void)
3588 {
3589 ...
3590         int i;
3591         GPtrArray *devinfo = NULL;
3592         bluetooth_device_info_t *ptr;
3593
3594         // allocate the g_pointer_array
3595         devinfo = g_ptr_array_new();
3596
3597         ret = bluetooth_get_bonded_device_list(&devinfo);
3598         if (ret != BLUETOOTH_ERROR_NONE)
3599         {
3600                 printf("bluetooth_get_bonded_device_list failed with [%d]",ret);
3601         }
3602         else
3603         {
3604                 printf("g pointer arrary count : [%d]", devinfo->len);
3605                 for (i=0; i<devinfo->len; i++)
3606                 {
3607                         ptr = g_ptr_array_index(devinfo, i);
3608                         if (ptr != NULL)
3609                         {
3610                                 printf("Name [%s]\n", ptr->device_name.name);
3611                                 printf("Major Class [%d]\n", ptr->device_class.major_class);
3612                                 printf("Minor Class [%d]\n", ptr->device_class.minor_class);
3613                                 printf("Service Class [%d]\n", ptr->device_class.service_class);
3614                                 printf("%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n",
3615                                                                 ptr->device_address.addr[0],
3616                                 ptr->device_address.addr[1], ptr->device_address.addr[2],
3617                                                                 ptr->device_address.addr[3],
3618                                 ptr->device_address.addr[4], ptr->device_address.addr[5]);
3619
3620                                 // handle
3621                                 ...
3622                         }
3623                 }
3624         }
3625         // free g_pointer_array
3626         g_ptr_array_free(devinfo, TRUE);
3627 }
3628
3629 @endcode
3630  */
3631 int bluetooth_get_bonded_device_list(GPtrArray **dev_list);
3632
3633 int bluetooth_get_profile_connected_device_list(
3634                 const char *profile_uuid, GPtrArray **addr_list);
3635
3636 /**
3637  * @fn int bluetooth_get_bonded_device(const bluetooth_device_address_t *device_address,
3638  *                                      bluetooth_device_info_t *dev_info)
3639  * @brief Get a bonded(paired) device
3640  *
3641  *
3642  * This API gets a bonded device.
3643  *
3644  * This function is a synchronous call.
3645  * Information for bonded devices can be obtained when result code is BLUETOOTH_ERROR_NONE. If not,
3646  * there is no valid information in the dev_info.
3647  * The data structure for bonded device information is bluetooth_device_info_t.
3648  *
3649  *
3650  * @return      BLUETOOTH_ERROR_NONE - Success \n
3651  *              BLUETOOTH_ERROR_NOT_SUPPORT - Opreation not supported \n
3652  * @remark      None
3653  * @see         bluetooth_bond_device, bluetooth_unbond_device, bluetooth_authorize_device
3654  @code
3655 void bt_get_bonded_device(void)
3656 {
3657 ...
3658         int i;
3659         bluetooth_device_info_t devinfo = {0};
3660         bluetooth_device_address_t device_address={{0x00,0x1C,0x43,0x2B,0x1A,0xE5}};
3661
3662         ret = bluetooth_get_bonded_device(&device_address, &devinfo);
3663         if (ret != BLUETOOTH_ERROR_NONE)
3664         {
3665                 printf("bluetooth_get_bonded_device failed with [%d]",ret);
3666         }
3667         else
3668         {
3669                 printf("Name [%s]\n", devinfo.device_name.name);
3670                 printf("Major Class [%d]\n", devinfo.device_class.major_class);
3671                 printf("Minor Class [%d]\n", devinfo.device_class.minor_class);
3672                 printf("Service Class [%d]\n", devinfo.device_class.service_class);
3673                 printf("%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n", devinfo.device_address.addr[0],
3674                 devinfo.device_address.addr[1], devinfo.device_address.addr[2],
3675                 devinfo.device_address.addr[3], devinfo.device_address.addr[4],
3676                 devinfo.device_address.addr[5]);
3677
3678                 // handle
3679                 ...
3680         }
3681 }
3682
3683 @endcode
3684  */
3685 int bluetooth_get_bonded_device(const bluetooth_device_address_t *device_address,
3686                                         bluetooth_device_info_t *dev_info);
3687
3688 /**
3689  * @fn int bluetooth_get_is_alias_set(const bluetooth_device_address_t *device_address,
3690  *                                      gboolean *is_alias_set)
3691  * @brief Get is_alias_set property of device
3692  *
3693  * This API gets is_alias_set property of a bonded device.
3694  *
3695  * This function is a synchronous call.
3696  * Information for is_alias_set property can be obtained only when result code is BLUETOOTH_ERROR_NONE.
3697  * If not,there is no valid information in the is_alias_set.
3698  *
3699  * @return      BLUETOOTH_ERROR_NONE - Success \n
3700  *                      BLUETOOTH_ERROR_NOT_SUPPORT - Opreation not supported \n
3701  * @remark None
3702  @code
3703         int ret = 0;
3704         gboolean alias_set;
3705         bluetooth_device_address_t device_address = {{0x00,0x1C,0x43,0x2B,0x1A,0xE5}};
3706
3707         ret = bluetooth_get_is_alias_set(&device_address, &alias_set);
3708  @endcode
3709  */
3710 int bluetooth_get_is_alias_set(const bluetooth_device_address_t *device_address,
3711                                 gboolean *is_alias_set);
3712
3713 /**
3714  * @fn int bluetooth_set_alias(const bluetooth_device_address_t *device_address, const char *alias)
3715  * @brief set alias for bonded device
3716  *
3717  *
3718  * This function set alias for bonded device.
3719  *
3720  * This function is a synchronous call.
3721  *
3722  *
3723  * @return      BLUETOOTH_ERROR_NONE - Success \n
3724  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3725  * @param[in]   device_address   This indicates an address of the remote device
3726  * @param[in]   alias                   This indicates an alias to set
3727  * @remark      None
3728  * @see         None
3729 @code
3730 int ret = 0;
3731 ret = bluetooth_set_alias(&remote_address);
3732 @endcode
3733  */
3734 int bluetooth_set_alias(const bluetooth_device_address_t *device_address,
3735                                 const char *alias);
3736
3737 /**
3738  * @fn int bluetooth_get_remote_device(const bluetooth_device_address_t *device_address)
3739  * @brief Get remote deivice
3740  *
3741  *
3742  * This function gets specific remote device.
3743  *
3744  * This function is a asynchronous call.
3745  * This API is responded by an BLUETOOTH_EVENT_REMOTE_DEVICE_READ event.
3746  *
3747  *
3748  * @return      BLUETOOTH_ERROR_NONE - Success \n
3749  *              BLUETOOTH_ERROR_NOT_SUPPORT - Operation not supported \n
3750  * @param[in]   device_address   This indicates an address of the remote device
3751  * @remark      None
3752  * @see         None
3753 @code
3754 int ret = 0;
3755 ret = bluetooth_get_remote_device(&remote_address);
3756 @endcode
3757  */
3758 int bluetooth_get_remote_device(const bluetooth_device_address_t *device_address);
3759
3760 /**
3761  * @fn int bluetooth_authorize_device(const bluetooth_device_address_t *device_address,
3762  *                                      gboolean authorized)
3763  * @brief Authorize/Unauthorize a bonded device
3764  *
3765  *
3766  * This function authorizes/unauthorize a bonded device. It decides the device to connect
3767  * with/without user confirmation.
3768  *
3769  * If we select a paired device and make it authorized by calling this API with the authorized
3770  * parameter to TRUE, then it will not ask for the user conformation before connecting. Similarly
3771  * if we unauthorize the paired device by calling this API with the authorized parameter to FALSE,
3772  * then it will ask for the user conformation before the connection.
3773  *
3774  * This API supposed to be called on the paired devices. Which means we have to use this API only
3775  * after successful pairing.
3776  *
3777  * This function is a asynchronous call.
3778  * Response will be received through BLUETOOTH_EVENT_DEVICE_AUTHORIZED event.
3779  *
3780  * @return      BLUETOOTH_ERROR_NONE - Success \n
3781  * @exception   BLUETOOTH_ERROR_INTERNAL - Cannot get the interal DBUS proxy \n
3782  * @param[in]   device_address   This indicates an address of the device to authorize \n
3783  * @param[in]   authorized      TRUE : authorize FALSE: unauthorize
3784  * @remark      None
3785  * @see         bluetooth_get_bonded_device_list
3786 @code
3787 void bt_event_callback(int event, bluetooth_event_param_t *param)
3788 {
3789         switch(event)
3790         {
3791                 case BLUETOOTH_EVENT_DEVICE_AUTHORIZED :
3792                 {
3793                         if (param->result == BLUETOOTH_ERROR_NONE)
3794                         {
3795                                 //Device authorized
3796                         }
3797                         //device authorization failed failure
3798                 }
3799         }
3800 }
3801
3802 ...
3803
3804 int ret = 0;
3805 bluetooth_device_address_t device_address={{0}};
3806 gboolean authorized;
3807
3808 authorized =TRUE;
3809
3810 ret = bluetooth_authorize_device(&device_address,authorized);
3811 @endcode
3812  */
3813 int bluetooth_authorize_device(const bluetooth_device_address_t *device_address,
3814                                        gboolean authorized);
3815
3816 int bluetooth_set_pin_code(const bluetooth_device_address_t *device_address,
3817                                 const bluetooth_device_pin_code_t *pin_code);
3818
3819 int bluetooth_unset_pin_code(const bluetooth_device_address_t *device_address);
3820
3821 /**
3822  * @fn int bluetooth_passkey_reply(char *passkey, gboolean reply)
3823  *
3824  * @brief Receives Legacy Passkey\pin with following authentication response types
3825  *
3826  * @param[in]   passkey : This is the PIN or PASSKEY string required for remote device authentication
3827  * @param[in]   reply    TRUE : Accept AUthentication FALSE: Cancels authentication
3828  *
3829  */
3830 int bluetooth_passkey_reply(char *passkey, gboolean reply);
3831
3832 /**
3833  * @fn int bluetooth_passkey_confirmation_reply(gboolean reply);
3834  *
3835  * @brief This API sends user confirmation reply to the local adapter.
3836  *
3837  * @param[in] reply TRUE : Accept AUthentication FALSE: Cancels authentication
3838  *
3839  */
3840 int bluetooth_passkey_confirmation_reply(gboolean reply);
3841
3842 /**
3843  * @fn int bluetooth_search_service(const bluetooth_device_address_t *device_address)
3844  * @brief Get all services supported by remote device
3845  *
3846  *
3847  * This API call initiates the search for the services supported by the specified device. Normally
3848  * the service search will take a couple of seconds to get it completed. Before calling this API
3849  * make sure that the Adapter is enabled. We have to give the device address of the remote device to
3850  * perform the service search. We can get the device address by doing a device discovery operation.
3851  *
3852  *
3853  * This function is a asynchronous call.
3854  * The service search request is responded by BLUETOOTH_EVENT_SERVICE_SEARCHED event.
3855  *
3856  * There is a timeout associated with the service search. The default time out is 40 seconds. If the
3857  * remove device did not respond with in the time out period the BLUETOOTH_EVENT_SERVICE_SEARCHED
3858  * event is generated with appropriate result code.
3859  *
3860  * @return      BLUETOOTH_ERROR_NONE - Success \n
3861  *              BLUETOOTH_ERROR_SERVICE_SEARCH_ERROR - Service search error (NULL device address) \n
3862  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
3863  * @param[in]   device_address   This indicates an address of the device
3864  *                               whose services need to be found
3865  * @remark      None
3866  * @see         bluetooth_cancel_service_search
3867  */
3868 int bluetooth_search_service(const bluetooth_device_address_t *device_address);
3869
3870 /**
3871  * @fn int bluetooth_cancel_service_search(void)
3872  * @brief Cancel the ongoing service search operation
3873  *
3874  *
3875  * This function cancel the ongoing service search operation. This API is usually calling after the
3876  * bluetooth_search_service API.
3877  * Normally service search will take a more time (> 5 seconds) to complete. This API will be called
3878  * if the user wish to cancel the Ongoing service search operation.
3879  *
3880  * This API should be called just after the bluetooth_search_service API and before the
3881  * BLUETOOTH_EVENT_SERVICE_SEARCHED event
3882  *
3883  * This function is a synchronous call.
3884  *
3885  * @return      BLUETOOTH_ERROR_NONE - Success \n
3886  *              BLUETOOTH_ERROR_CANCEL - Error in service search cancel operation \n
3887  *              BLUETOOTH_ERROR_NOT_PAIRED - Not paired device \n
3888  *              BLUETOOTH_ERROR_NOT_IN_OPERATION - Searching service is not in operation \n
3889  *
3890  * @remark      None
3891  * @see         bluetooth_search_service
3892 @code
3893 ...
3894
3895 int ret = 0;
3896 ret = bluetooth_cancel_service_search();
3897 @endcode
3898 */
3899 int bluetooth_cancel_service_search(void);
3900
3901 /**
3902  * @fn int bluetooth_rfcomm_create_socket(const char *uuid)
3903  * @brief Register rfcomm socket with a specific uuid
3904  *
3905  *
3906  * This API register rfcomm socket with the given UUID. The return value of this API is the socket
3907  * descriptor of the server.
3908  * This is the first API which is called to create the server. Once we created the server socket,
3909  * we will listen on that return socket.
3910  * So a bluetooth_rfcomm_listen_and_accept should follow this API call. This is a synchronous call.
3911  *
3912  *
3913  * @return  socket FD on Success \n
3914  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3915  *              BLUETOOTH_ERROR_INTERNAL - Internal error\n
3916  *              BLUETOOTH_ERROR_MAX_CONNECTION - Maximum connection reached\n
3917  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3918  * @param[in]   UUID (128 bits)
3919  *
3920  * @remark      None
3921  * @see       bluetooth_rfcomm_listen_and_accept, bluetooth_rfcomm_remove_socket
3922  *
3923  @code
3924
3925   const char *rfcomm_test_uuid="00001101-0000-1000-8000-00805F9B34FB";
3926   fd  = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
3927
3928  @endcode
3929  */
3930 int bluetooth_rfcomm_create_socket(const char *uuid);
3931
3932 /**
3933  * @fn int bluetooth_rfcomm_create_socket_ex(const char *uuid, const char *bus_name, const char *path)
3934  * @brief Register rfcomm socket with a specific uuid
3935  *
3936  *
3937  * This API register rfcomm socket with the given UUID. The return value of this API is the socket
3938  * descriptor of the server.
3939  * This is the first API which is called to create the server. Once we created the server socket,
3940  * we will listen on that return socket.
3941  * So a bluetooth_rfcomm_listen_and_accept_ex should follow this API call. This is a synchronous call.
3942  *
3943  *
3944  * @return  socket FD on Success \n
3945  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3946  *              BLUETOOTH_ERROR_INTERNAL - Internal error\n
3947  *              BLUETOOTH_ERROR_MAX_CONNECTION - Maximum connection reached\n
3948  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3949  * @param[in]   UUID (128 bits)
3950  * @param[in]   bus_name (const char)
3951  * @param[in]   path (const char)
3952  *
3953  * @remark      None
3954  * @see       bluetooth_rfcomm_listen_and_accept_ex, bluetooth_rfcomm_remove_socket
3955  *
3956  @code
3957
3958   const char *rfcomm_test_uuid="00001101-0000-1000-8000-00805F9B34FB";
3959   fd  = bluetooth_rfcomm_create_socket_ex(rfcomm_test_uuid, bus_name, path);
3960
3961  @endcode
3962  */
3963 int bluetooth_rfcomm_create_socket_ex(const char *uuid, const char *bus_name, const char *path);
3964
3965 /**
3966  * @fn int bluetooth_rfcomm_remove_socket(int socket_fd, const char *uuid)
3967  * @brief De-register the rfcomm socket
3968  *
3969  *
3970  * This API deregister rfcomm socket with the given socket fd and  UUID. If the remote device is
3971  * already connected then we will receive the BLUETOOTH_EVENT_RFCOMM_DISCONNECTED with socket
3972  * descriptor else no event will come. We will call this API only after the
3973  * bluetooth_rfcomm_listen_and_accept.
3974  * This is a synchronous call.
3975  *
3976  * @return   BLUETOOTH_ERROR_NONE - Success \n
3977  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3978  *               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
3979  *               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3980  * @param[in]  int socket_fd
3981  *
3982  * @remark      None
3983  * @see       bluetooth_rfcomm_create_socket, bluetooth_rfcomm_listen_and_accept
3984  *
3985  @code
3986  void bt_event_callback(int event, bluetooth_event_param_t *param)
3987  {
3988         switch(event)
3989         {
3990                 case BLUETOOTH_EVENT_RFCOMM_DISCONNECTED:
3991                 {
3992                         bluetooth_rfcomm_connection_t *discon_ind =
3993                                         (bluetooth_rfcomm_connection_t *)param->param_data;
3994
3995                         printf("\nDisconnected from FD %d",  discon_ind->socket_fd);
3996                 }
3997         }
3998  }
3999
4000  ...
4001
4002  int ret = 0;
4003  fd  = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
4004  ret = bluetooth_rfcomm_listen_and_accept(fd, 1);
4005  ....
4006  ret = bluetooth_rfcomm_remove_socket(fd);
4007  @endcode
4008  */
4009 int bluetooth_rfcomm_remove_socket(int socket_fd);
4010
4011 /**
4012  * @fn int bluetooth_rfcomm_remove_socket(const char *uuid)
4013  * @brief De-register the rfcomm socket
4014  *
4015  *
4016  * This API deregister rfcomm socket with the given socket UUID. If the remote device is
4017  * already connected then we will receive the BLUETOOTH_EVENT_RFCOMM_DISCONNECTED with socket
4018  * descriptor else no event will come. We will call this API only after the
4019  * bluetooth_rfcomm_listen_and_accept_ex.
4020  * This is a synchronous call.
4021  *
4022  * @return   BLUETOOTH_ERROR_NONE - Success \n
4023  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4024  *               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
4025  *               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4026  * @param[in]   UUID (128 bits)
4027  *
4028  * @remark      None
4029  * @see       bluetooth_rfcomm_create_socket_ex, bluetooth_rfcomm_listen_and_accept_ex
4030  *
4031  @code
4032  void bt_event_callback(int event, bluetooth_event_param_t *param)
4033  {
4034         switch(event)
4035         {
4036                 case BLUETOOTH_EVENT_RFCOMM_DISCONNECTED:
4037                 {
4038                         bluetooth_rfcomm_connection_t *discon_ind =
4039                                         (bluetooth_rfcomm_connection_t *)param->param_data;
4040
4041                         printf("\nDisconnected from FD %d",  discon_ind->socket_fd);
4042                 }
4043         }
4044  }
4045
4046  ...
4047
4048  int ret = 0;
4049  fd  = bluetooth_rfcomm_create_socket_ex(rfcomm_test_uuid, path, bus_name);
4050  ret = bluetooth_rfcomm_listen_and_accept_ex(rfcomm_test_uuid, 1, bus_name, path);
4051  ....
4052  ret = bluetooth_rfcomm_remove_socket_ex(rfcomm_test_uuid);
4053  @endcode
4054  */
4055 int bluetooth_rfcomm_remove_socket_ex(const char *uuid);
4056
4057 /**
4058  * @fn int bluetooth_rfcomm_server_disconnect(int socket_fd)
4059  * @brief Disconnect rfcomm connection
4060  *
4061  *
4062  * Disconnect a specific(device node fd)  RFCOMM connection. This is a Synchronous call and there
4063  * is no cabbback events for this API. We have to provice the valid client fd to disconnect from the
4064  * remote server.
4065  *
4066  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4067  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4068  *              BLUETOOTH_ERROR_NOT_CONNECTED - Not connected \n
4069  * @param[in]  int socket_fd the sending socket fd
4070  *
4071  * @remark      None
4072  *
4073  @code
4074
4075   ret = bluetooth_rfcomm_server_disconnect(g_ret_fd);
4076   if (ret < 0)
4077         printf("Disconnection failed");
4078   else
4079   printf("Disconnection Success");
4080
4081  @endcode
4082  */
4083 int bluetooth_rfcomm_server_disconnect(int socket_fd);
4084
4085 /**
4086  * @fn int bluetooth_rfcomm_listen_and_accept(int socket_fd,int max_pending_connection)
4087  * @brief Rfcomm socket listen
4088  *
4089  *
4090  * This API make rfcomm socket listen and accept with socket. We will call this API immediatly
4091  * after the bluetooth_rfcomm_create_socket API.
4092  * This API listen for the incomming connection and once it receives a connection, it will give
4093  * BLUETOOTH_EVENT_RFCOMM_CONNECTED
4094  * event to the application. This is an Asynchronous API call.
4095  *
4096  *
4097  * @return  BLUETOOTH_ERROR_NONE - Success \n
4098  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4099  *              BLUETOOTH_ERROR_CONNECTION_ERROR - Listen failed \n
4100
4101  * @param[in]  int socket_fd
4102  * @param[in]  max pending connection.
4103  *
4104  * @remark      None
4105  * @see       bluetooth_rfcomm_create_socket
4106  *
4107   @code
4108   void bt_event_callback(int event, bluetooth_event_param_t* param)
4109  {
4110         switch(event)
4111         {
4112                 case BLUETOOTH_EVENT_RFCOMM_CONNECTED:
4113                 {
4114                         bluetooth_rfcomm_connection_t *conn_ind =
4115                                                 (bluetooth_rfcomm_connection_t *)param->param_data;
4116
4117                         printf("\nConnected from FD %d",  conn_ind->socket_fd);
4118                 }
4119         }
4120  }
4121
4122  ...
4123
4124  int ret = 0;
4125  fd  = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
4126  ret = bluetooth_rfcomm_listen_and_accept(fd, 1);
4127
4128  @endcode
4129  */
4130 int bluetooth_rfcomm_listen_and_accept(int socket_fd, int max_pending_connection);
4131
4132 /**
4133  * @fn int bluetooth_rfcomm_listen_and_accept_ex(const char *uuid, int max_pending_connection, const char *bus_name, const char *path)
4134  * @brief Rfcomm socket listen
4135  *
4136  *
4137  * This API make rfcomm socket listen and accept with socket. We will call this API immediatly
4138  * after the bluetooth_rfcomm_create_socket API.
4139  * This API listen for the incomming connection and once it receives a connection, it will give
4140  * BLUETOOTH_EVENT_RFCOMM_CONNECTED
4141  * event to the application. This is an Asynchronous API call.
4142  *
4143  *
4144  * @return  BLUETOOTH_ERROR_NONE - Success \n
4145  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4146  *              BLUETOOTH_ERROR_CONNECTION_ERROR - Listen failed \n
4147
4148  * @param[in]  int socket_fd
4149  * @param[in]  max pending connection.
4150  * @param[in]  name
4151  * @param[in]  path
4152  *
4153  * @remark      None
4154  * @see       bluetooth_rfcomm_create_socket_ex
4155  *
4156   @code
4157   void bt_event_callback(int event, bluetooth_event_param_t* param)
4158  {
4159         switch(event)
4160         {
4161                 case BLUETOOTH_EVENT_RFCOMM_CONNECTED:
4162                 {
4163                         bluetooth_rfcomm_connection_t *conn_ind =
4164                                                 (bluetooth_rfcomm_connection_t *)param->param_data;
4165
4166                         printf("\nConnected from FD %d",  conn_ind->socket_fd);
4167                 }
4168         }
4169  }
4170
4171  ...
4172
4173  int ret = 0;
4174  fd  = bluetooth_rfcomm_create_socket_ex(rfcomm_test_uuid);
4175  ret = bluetooth_rfcomm_listen_and_accept_ex(rfcomm_test_uuid, 1, bus_name, path);
4176
4177  @endcode
4178  */
4179
4180 int bluetooth_rfcomm_listen_and_accept_ex(const char *uuid, int max_pending_connection, const char *bus_name, const char *path);
4181
4182 /**
4183  * @fn int bluetooth_rfcomm_listen(int socket_fd,int max_pending_connection)
4184  * @brief Rfcomm socket listen
4185  *
4186  *
4187  * This API make rfcomm socket listen and accept with socket. We will call this API immediatly
4188  * after the bluetooth_rfcomm_create_socket API.
4189  * This API listen for the incomming connection and once it receives a connection, it will give
4190  * BLUETOOTH_EVENT_RFCOMM_AUTHORIZE
4191  * event to the application. This is an Asynchronous API call.
4192  *
4193  *
4194  * @return  BLUETOOTH_ERROR_NONE - Success \n
4195  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4196  *              BLUETOOTH_ERROR_CONNECTION_ERROR - Listen failed \n
4197
4198  * @param[in]  int socket_fd
4199  * @param[in]  max pending connection.
4200  *
4201  * @remark      None
4202  * @see       bluetooth_rfcomm_create_socket
4203  *
4204   @code
4205   void bt_event_callback(int event, bluetooth_event_param_t* param)
4206  {
4207         switch(event)
4208         {
4209                 case BLUETOOTH_EVENT_RFCOMM_AUTHORIZE:
4210                 {
4211                         char *name = (char *)param->param_data;
4212
4213                         printf("\nConnected from %s",  name);
4214
4215                         bluetooth_rfcomm_accept_connection();
4216                 }
4217         }
4218  }
4219
4220  ...
4221
4222  int ret = 0;
4223  fd  = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
4224  ret = bluetooth_rfcomm_listen(fd, 1);
4225
4226  @endcode
4227  */
4228 int bluetooth_rfcomm_listen(int socket_fd, int max_pending_connection);
4229
4230 /**
4231  * @fn int bluetooth_rfcomm_accept_connection()
4232  * @brief Accepts the authorization request indicated by the event
4233   * BLUETOOTH_EVENT_RFCOMM_AUTHORIZE.
4234  *
4235  * This function is a synchronous call.
4236  *
4237  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4238  *              BLUETOOTH_ERROR_INTERNAL - Internal error \n
4239  *
4240  * @param[in]  the socket fd of the server
4241  * @param[out]  the socket fd of the client
4242  *
4243  * @exception   None
4244  * @remark       None
4245  * @see bluetooth_rfcomm_reject_connection
4246  */
4247 int bluetooth_rfcomm_accept_connection(int server_fd);
4248
4249 /**
4250  * @fn int bluetooth_rfcomm_reject_connection()
4251  * @brief Rejects the authorization request indicated by the event
4252   * BLUETOOTH_EVENT_RFCOMM_AUTHORIZE.
4253  *
4254  * This function is a synchronous call.
4255  *
4256  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4257  *              BLUETOOTH_ERROR_INTERNAL - Internal error \n
4258  *
4259  * @param[in]  the socket fd of the server
4260  *
4261  * @exception   None
4262  * @remark       None
4263  * @see bluetooth_rfcomm_accept_connection
4264  */
4265 int bluetooth_rfcomm_reject_connection(int server_fd);
4266
4267 /**
4268  * @fn gboolean bluetooth_rfcomm_is_server_uuid_available(const char *uuid)
4269  * @brief Informs whether rfcomm server uuid is available or not.
4270  *
4271  * This function is a synchronous call.
4272  *
4273  * @return   TRUE  - RFCOMM uuid is available \n
4274  *              FALSE - RFCOMM uuid is not available \n
4275  *
4276  * @param[in]  uuid UUID string
4277  *
4278  * @exception   None
4279  *
4280  * @remark       None
4281  */
4282 gboolean bluetooth_rfcomm_is_server_uuid_available(const char *uuid);
4283
4284 /**
4285  * @fn int bluetooth_rfcomm_connect(const bluetooth_device_address_t  *remote_bt_address,
4286  *                                                                      const char *remote_uuid)
4287  * @brief Connect to the remote device rfcomm *
4288  *
4289  * Connect to a specific RFCOMM based service on a remote device UUID. This is a Async call. Once
4290  * the connection is successful callback BLUETOOTH_EVENT_RFCOMM_CONNECTED events is generated,
4291  * which contains the socket_fd, device role (RFCOMM_ROLE_SERVER/RFCOMM_ROLE_CLIENT), device addess
4292  * etc. The socket_fd can be further used to send the data. It better to do a sevice search before
4293  * initiating a connection.
4294  *
4295  * @return  BLUETOOTH_ERROR_NONE  - Success \n
4296  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4297  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4298  *              BLUETOOTH_ERROR_CONNECTION_BUSY - Connection in progress \n
4299  *              BLUETOOTH_ERROR_INTERNAL - Internal Error\n
4300  * @param[in]  bluetooth_device_address_t remote bt_address
4301  * @param[in]  char remote uuid
4302  * @remark      None
4303  * @see         bluetooth_rfcomm_disconnect, bluetooth_rfcomm_write, bluetooth_search_service
4304  *
4305  @code
4306
4307  void bt_event_callback(int event, bluetooth_event_param_t *param)
4308  {
4309         switch(event)
4310         {
4311                 case BLUETOOTH_EVENT_SERVICE_SEARCHED:
4312                 {
4313                         if (param->result >= BLUETOOTH_ERROR_NONE)
4314                         {
4315                                 bt_sdp_info_t *bt_sdp_info=param->param_data;
4316
4317                                 printf("Dev add = %2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n",
4318                                         bt_sdp_info->device_addr.addr[0],
4319                                         bt_sdp_info->device_addr.addr[1],
4320                                         bt_sdp_info->device_addr.addr[2],
4321                                         bt_sdp_info->device_addr.addr[3],
4322                                         bt_sdp_info->device_addr.addr[4],
4323                                         bt_sdp_info->device_addr.addr[5]);
4324
4325                                         printf("Supported service list:\n");
4326                                         for(i=0; i<bt_sdp_info->service_index; i++)
4327                                                 printf("[%#x]\n",
4328                                                         bt_sdp_info->service_list_array[i]);
4329
4330                                 //Alternate method
4331                                 //ret = bluetooth_rfcomm_connect(bt_sdp_info->device_addr,
4332                                                                                 //rfcomm_test_uuid);
4333                         }
4334                         break;
4335                 }
4336                 case BLUETOOTH_EVENT_RFCOMM_CONNECTED:
4337                 {
4338                         bluetooth_rfcomm_connection_t *conn_ind =
4339                                                 (bluetooth_rfcomm_connection_t *)param->param_data;
4340
4341                         printf("\nConnected from FD %d, Role = %s",  conn_ind->socket_fd,
4342                                                 (conn_ind->device_role == RFCOMM_ROLE_SERVER) ?
4343                                                                         "SERVER" : "CLIENT");
4344                 }
4345         }
4346  }
4347
4348   bluetooth_device_address_t remote_address = {{0},};
4349   remote_address.addr[0] = 0x0; remote_address.addr[1] = 0x0A; remote_address.addr[2] = 0x3A;
4350   remote_address.addr[3]= 0x54; remote_address.addr[4] = 0x19;  remote_address.addr[5]= 0x36;
4351   ret = bluetooth_search_service(&remote_address);
4352  if (ret < 0)
4353         printf("Seach failed, Reason = %d", ret);
4354   else
4355          printf("Search Success, Ret = %d", ret);
4356
4357   ret = bluetooth_rfcomm_connect(&remote_address, rfcomm_test_uuid);
4358   if (ret < 0)
4359         printf("Connection failed, Reason = %d", ret);
4360   else
4361          printf("Connection Success, Ret = %d", ret);
4362
4363   @endcode
4364   */
4365 int bluetooth_rfcomm_connect(const bluetooth_device_address_t *remote_bt_address,
4366                                      const char *remote_uuid);
4367
4368 /**
4369  * @fn int bluetooth_rfcomm_disconnect(int socket_fd)
4370  * @brief Disconnect rfcomm connection
4371  *
4372  *
4373  * Disconnect a specific(device node fd)  RFCOMM connection. This is a Synchronous call and there
4374  * is no cabbback events for this API. We have to provice the valid client fd to disconnect from the
4375  * remote server.
4376  *
4377  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4378  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4379  *              BLUETOOTH_ERROR_NOT_CONNECTED - Not connected \n
4380  * @param[in]  char remote bt_address
4381  *
4382  * @remark      None
4383  * @see         bluetooth_rfcomm_connect
4384  *
4385  @code
4386
4387   ret = bluetooth_rfcomm_disconnect(g_ret_fd);
4388   if (ret < 0)
4389         printf("Disconnection failed");
4390   else
4391   printf("Disconnection Success");
4392
4393  @endcode
4394  */
4395
4396 int bluetooth_rfcomm_disconnect(int socket_fd);
4397
4398 /**
4399  * @fn int bluetooth_rfcomm_write (int fd, const char *buff, int length)
4400  * @brief Write to rfcomm connection
4401  *
4402  *
4403  * This API is used to send the data over the rfcomm connection. This is a synchronous API. The same
4404  * API is used to send the data for server and the client.
4405  *
4406  * @return  BLUETOOTH_ERROR_NONE  - Success \n
4407  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4408  *              BLUETOOTH_ERROR_NOT_IN_OPERATION - The Fd is currently not in operation\n
4409  * @param[in]  int fd
4410  * @param[in]  const char *buff  Data buffer to send
4411  * @param[in]  int length Length of the data
4412  *
4413  * @remark      None
4414  * @see         bluetooth_rfcomm_connect
4415  *
4416   @code
4417   char *buff = "Test data 123456789"
4418   ret =  bluetooth_rfcomm_write(g_ret_fd, buff, 15);
4419   if (ret < 0)
4420         printf("Send failed");
4421   else
4422    printf("Send success");
4423
4424  @endcode
4425  */
4426 int bluetooth_rfcomm_write(int fd, const char *buf, int length);
4427
4428 /**
4429  * @fn gboolean bluetooth_rfcomm_is_client_connected(void)
4430  * @brief Informs whether rfcomm client is connected.
4431  *
4432  * This function is a synchronous call.
4433  *
4434  * @return   TRUE  - RFCOMM client is connected \n
4435  *              FALSE - RFCOMM client is not connected \n
4436  *
4437  * @exception   None
4438  *
4439  * @remark       None
4440  */
4441 gboolean bluetooth_rfcomm_is_client_connected(void);
4442 int bluetooth_rfcomm_client_is_connected(const bluetooth_device_address_t *device_address, gboolean *connected);
4443 int bluetooth_rfcomm_server_is_connected(const bluetooth_device_address_t *device_address, gboolean *connected);
4444
4445 /**
4446  * @fn int bluetooth_network_activate_server(void)
4447  * @brief Activate the NAP (Network Access Point) service
4448  *
4449  * This function is a asynchronous call.
4450  * The activate server request is responded by BLUETOOTH_EVENT_NETWORK_SERVER_ACTIVATED event.
4451  *
4452  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4453  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4454  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4455  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4456  *
4457  * @remark      None
4458   * @see        bluetooth_network_deactivate_server
4459  *
4460  */
4461 int bluetooth_network_activate_server(void);
4462
4463 /**
4464  * @fn int bluetooth_network_deactivate_server(void)
4465  * @brief Deactivate the NAP (Network Access Point) service
4466  *
4467  * This function is a asynchronous call.
4468  * The deactivate server request is responded by BLUETOOTH_EVENT_NETWORK_SERVER_DEACTIVATED event.
4469  *
4470  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4471  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4472  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4473  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4474  *
4475  * @remark      None
4476  * @see         bluetooth_network_activate_server
4477  *
4478  */
4479 int bluetooth_network_deactivate_server(void);
4480
4481 /**
4482  * @fn int bluetooth_network_connect(const bluetooth_device_address_t *device_address,
4483  *                                      bluetooth_network_role_t role,
4484  *                                      char  custom_uuid)
4485  * @brief Connect the network server in the peer
4486  *
4487  * This function is a asynchronous call.
4488  * The network connect request is responded by BLUETOOTH_EVENT_NETWORK_CONNECTED event.
4489  *
4490  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4491  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4492  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4493  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4494  *
4495  * @exception   None
4496  * @param[in]  device_address   This indicates an address of the device with which the pairing
4497  *                              should be initiated
4498  * @param[in]  role   The role to connect. PANU / GN / NAP / CUSTOM. If use the CUSTOM value,
4499  *                      need to use the third parameter.
4500  * @param[in]  custom_uuid   If use the CUSTOM value in second parameter, use this parameter to
4501  *                              connect. UUID string
4502  * @remark      None
4503  * @see         bluetooth_network_disconnect
4504  */
4505 int bluetooth_network_connect(const bluetooth_device_address_t *device_address,
4506                                       bluetooth_network_role_t role, char *custom_uuid);
4507
4508 /**
4509  * @fn int bluetooth_network_disconnect(const bluetooth_device_address_t *device_address,
4510  *                                                      bluetooth_network_role_t role,
4511  *                                                        char *custom_uuid)
4512  * @brief Connect the network server in the peer
4513  *
4514  * This function is a asynchronous call.
4515  * The network disconnect request is responded by BLUETOOTH_EVENT_NETWORK_CONNECTED event.
4516  *
4517  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4518  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4519  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4520  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4521  *
4522  * @exception   None
4523  * @param[in]   device_address   This indicates an address of the device with which the pairing
4524  *                                      should be initiated
4525  * @remark       None
4526  * @see         bluetooth_network_connect
4527  */
4528 int bluetooth_network_disconnect(const bluetooth_device_address_t *device_address);
4529
4530 /**
4531  * @fn int bluetooth_network_server_disconnect(const bluetooth_device_address_t *device_address)
4532  * @brief Disconnect the device from the network
4533  *
4534  * This function is an asynchronous call.
4535  * The network server disconnect request is responded by
4536  * BLUETOOTH_EVENT_NETWORK_SERVER_DISCONNECTED event.
4537  *
4538  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4539  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4540  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4541  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4542  *
4543  * @exception   None
4544  * @param[in]   device_address   This indicates an address of the connected client device
4545  * @remark       None
4546  * @see         bluetooth_network_activate_server
4547  */
4548 int bluetooth_network_server_disconnect(const bluetooth_device_address_t *device_address);
4549
4550 /*HDP - API's*/
4551
4552 /**
4553  * @fn int bluetooth_hdp_activate(unsigned short  data_type,
4554  *                                      bt_hdp_role_type_t role,
4555  *                                      bt_hdp_qos_type_t channel_type,
4556  *                                      char **app_handle)
4557  * @brief Activate the HDP service for a particular data type
4558  *
4559  * This function is a synchronous call.
4560  *
4561  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4562  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4563  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4564  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4565  *
4566  * @exception   None
4567  * @param[in]  data_type   The data type against corresponding service
4568  * @param[in]  role   The role of HDP. HDP_ROLE_SOURCE/HDP_ROLE_SINK.
4569  * @param[in]  channel_type   The QOS type for the channel.
4570  *                              HDP_QOS_RELIABLE/HDP_QOS_STREAMING/HDP_QOS_ANY.
4571  *                              For role = HDP_ROLE_SINK, the channel_type
4572  *                              should be HDP_QOS_ANY.
4573  * @param[out]  app_handle    The application handler against corresponding service
4574  * @remark       None
4575  * @see bluetooth_hdp_deactivate
4576  */
4577 int bluetooth_hdp_activate(unsigned short  data_type,
4578                                 bt_hdp_role_type_t role,
4579                                 bt_hdp_qos_type_t channel_type,
4580                                 char **app_handle);
4581 /**
4582  * @fn int bluetooth_hdp_deactivate(const char *app_handle)
4583  * @brief Deactivate the HDP service for a particular service using the handler
4584  *
4585  * This function is a synchronous call.
4586  *
4587  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4588  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4589  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4590  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4591  *
4592  * @exception   None
4593  * @param[in]  app_handle   The application handler against corresponding service
4594  * @remark       None
4595  * @see bluetooth_hdp_deactivate
4596  */
4597 int bluetooth_hdp_deactivate(const char *app_handle);
4598
4599 /**
4600  * @fn int bluetooth_hdp_send_data(unsigned int channel_id,
4601  *                                      const char *buffer, unsigned int size)
4602  * @brief Send data to the remote HDP device
4603  *
4604  * This function is a synchronous call.
4605  *
4606  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4607  *             BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4608  *             BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4609  *             BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4610  *             BLUETOOTH_ERROR_NOT_IN_OPERATION - FD is invalid  \n
4611  *
4612  * @exception   None
4613  * @param[in]  channel_id   The channel id for the connection.
4614  * @param[in]  buffer   The pdu buffer.
4615  * @param[in]  size   Size of the buffer.
4616  * @remark       None
4617  * @see bluetooth_hdp_connect
4618  */
4619 int bluetooth_hdp_send_data(unsigned int channel_id,
4620                                 const char *buffer, unsigned int size);
4621 /**
4622  * @fn int bluetooth_hdp_connect(const char *app_handle,
4623  *                              bt_hdp_qos_type_t channel_type,
4624  *                              const bluetooth_device_address_t *device_address)
4625  * @brief Connect to the remote device(Mainly used by source)
4626  *
4627  * This function is a asynchronous call.
4628  * The HDP activate is responded by BLUETOOTH_EVENT_HDP_CONNECTED event.
4629  *
4630  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4631  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4632  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4633  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4634  *              BLUETOOTH_ERROR_MEMORY_ALLOCATION -Memory allocation failed \n
4635  *
4636  * @exception   None
4637  * @param[in]  app_handle   The application handler against corresponding service
4638  * @param[in]  channel_type   The QOS type for the channel.
4639  *                              HDP_QOS_RELIABLE/HDP_QOS_STREAMING.
4640  * @param[in]  device_address   The remote device Bd address.
4641  *
4642  * @remark       None
4643  * @see bluetooth_hdp_disconnect
4644  */
4645 int bluetooth_hdp_connect(const char *app_handle,
4646                         bt_hdp_qos_type_t channel_type,
4647                         const bluetooth_device_address_t *device_address);
4648 /**
4649  * @fn int bluetooth_hdp_disconnect(unsigned int channel_id,
4650  *                      const bluetooth_device_address_t *device_address)
4651  * @brief Disconnect from the remote device(Mainly used by source)
4652  *
4653  * This function is a asynchronous call.
4654  * The HDP activate is responded by BLUETOOTH_EVENT_HDP_DISCONNECTED event.
4655  *
4656  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4657  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4658  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4659  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4660   *              BLUETOOTH_ERROR_MEMORY_ALLOCATION -Memory allocation failed \n
4661  *
4662  * @exception   None
4663  * @param[in]  channel_id    The channel id for the connection.
4664  * @param[in]  device_address   The remote device Bd address.
4665  *
4666  * @remark       None
4667  * @see bluetooth_hdp_connect
4668  */
4669 int bluetooth_hdp_disconnect(unsigned int channel_id,
4670                         const bluetooth_device_address_t  *device_address);
4671
4672
4673 /**
4674  * @fn int bluetooth_opc_init(void)
4675  * @brief Initialize OPP client.
4676  *
4677  * This function is a synchronous call.
4678  * No event corresponding to this api
4679  *
4680  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4681  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4682  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4683  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4684   *             BLUETOOTH_ERROR_ACCESS_DENIED -Memory allocation failed \n
4685  *
4686  * @exception   None
4687  *
4688  * @remark       None
4689  * @see bluetooth_opc_deinit
4690  */
4691 int bluetooth_opc_init(void);
4692
4693 /**
4694  * @fn int bluetooth_opc_deinit(void)
4695  * @brief Deinitialize OPP client.
4696  *
4697  * This function is a synchronous call.
4698  * No event corresponding to this api
4699  *
4700  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4701  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4702  *              BLUETOOTH_ERROR_ACCESS_DENIED -Memory allocation failed \n
4703  *
4704  * @exception   None
4705  *
4706  * @remark       None
4707  * @see bluetooth_opc_init
4708  */
4709
4710 int bluetooth_opc_deinit(void);
4711
4712 /**
4713  * @fn int bluetooth_opc_push_files(bluetooth_device_address_t *remote_address,
4714                                         char **file_name_array)
4715  * @brief Send multiple files to a remote device.
4716  *
4717  * This function is a asynchronous call.
4718  * This api  is responded by BLUETOOTH_EVENT_OPC_CONNECTED event.
4719  *
4720  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4721  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4722  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4723  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4724  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4725  *              BLUETOOTH_ERROR_IN_PROGRESS -Already one push in progress \n
4726  *              BLUETOOTH_ERROR_ACCESS_DENIED - Not allowed by MDM policy \n
4727  *
4728  * @exception   None
4729  * @param[in]  device_address   The remote device Bd address.
4730  * @param[in]  file_name_array  Array of filepaths to be sent.
4731  *
4732  * @remark       None
4733  * @see bluetooth_opc_cancel_push
4734  */
4735
4736 int bluetooth_opc_push_files(bluetooth_device_address_t *remote_address,
4737                                 char **file_name_array);
4738
4739 /**
4740  * @fn int bluetooth_opc_cancel_push(void)
4741  * @brief Cancels the ongoing file push.
4742  *
4743  * This function is a asynchronous call.
4744  * This api is responded with either BLUETOOTH_EVENT_OPC_CONNECTED or
4745  * BLUETOOTH_EVENT_OPC_TRANSFER_COMPLETED event.
4746  *
4747  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4748  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4749  *              BLUETOOTH_ERROR_ACCESS_DENIED - No push in progress \n
4750  *
4751  * @exception   None
4752  *
4753  * @remark       None
4754  * @see bluetooth_opc_push_files
4755  */
4756
4757 int bluetooth_opc_cancel_push(void);
4758
4759 /**
4760  * @fn gboolean bluetooth_opc_session_is_exist(void)
4761  * @brief Informs whether opc session exists or not.
4762  *
4763  * This function is a synchronous call.
4764  *
4765  * @return   TRUE  - OPC session exists \n
4766  *              FALSE - OPC session does not exist \n
4767  *
4768  * @exception   None
4769  *
4770  * @remark       None
4771  * @see None
4772  */
4773
4774 gboolean bluetooth_opc_session_is_exist(void);
4775
4776 /**
4777  * @fn int bluetooth_opc_is_sending(gboolean *is_sending)
4778  * @brief Informs whether opc session exists or not.
4779  *
4780  * This function is a synchronous call.
4781  *
4782  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4783  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4784  *               BLUETOOTH_ERROR_INTERNAL \n
4785  *
4786  * @exception   None
4787  * @param[out] is_sending The sending status: (@c TRUE = in sending , @c  false = not in sending)
4788  *
4789  * @remark       None
4790  * @see            None
4791  */
4792 int bluetooth_opc_is_sending(gboolean *is_sending);
4793
4794 /**
4795  * @fn int bluetooth_opp_get_transfer_progress(bluetooth_opp_transfer_type_t transfer_type,
4796                 int transfer_id, unsigned char *progress)
4797  * @brief Gets the percentage progress for ongoing transfers.
4798  *
4799  * This function is a synchronous call.
4800  *
4801  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4802  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4803  *               BLUETOOTH_ERROR_NOT_FOUND - Not found \n
4804  *
4805  * @exception   None
4806  * @param[in] transfer_type     Transfer Type: (@c BLUETOOTH_TRANSFER_INBOUND = receiving , @c  BLUETOOTH_TRANSFER_OUTBOUND = sending)
4807  * @param[in] transfer_id       Transfer ID
4808  * @param[out] progress         Percentage Progress
4809  * @remark       None
4810  * @see            None
4811  */
4812 int bluetooth_opp_get_transfer_progress(bluetooth_opp_transfer_type_t transfer_type,
4813                 int transfer_id, unsigned char *progress);
4814
4815 /**
4816  * @fn int bluetooth_obex_server_init(const char *dst_path)
4817  * @brief Initialize OPP and FTP server.
4818  *
4819  * This function is a synchronous call.
4820  * No event corresponding to this api
4821  *
4822  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4823  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4824  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4825  *              BLUETOOTH_ERROR_AGENT_ALREADY_EXIST - Obex agent already registered \n
4826  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4827  *
4828  * @exception   None
4829  * @param[in]  dst_path   OPS destination file path.
4830  * @remark       None
4831  * @see bluetooth_obex_server_deinit
4832  */
4833 int bluetooth_obex_server_init(const char *dst_path);
4834
4835
4836 /**
4837  * @fn int bluetooth_obex_server_deinit(void)
4838  * @brief Deinitialize OPP and FTP server.
4839  *
4840  * This function is a synchronous call.
4841  * No event corresponding to this api
4842  *
4843  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4844  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4845  *              BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4846  *
4847  * @exception   None
4848  *
4849  * @remark       None
4850  * @see bluetooth_obex_server_init
4851  */
4852 int bluetooth_obex_server_deinit(void);
4853
4854
4855 /**
4856  * @fn gboolean bluetooth_obex_server_is_activated(void)
4857  * @brief Informs whether obex server is activated or not.
4858  *
4859  * This function is a synchronous call.
4860  *
4861  * @return   TRUE  - OBEX server is activated \n
4862  *              FALSE - OBEX server is not activated \n
4863  *
4864  * @exception   None
4865  *
4866  * @remark       None
4867  */
4868
4869 gboolean bluetooth_obex_server_is_activated(void);
4870
4871
4872 /**
4873  * @fn int bluetooth_obex_server_init_without_agent(const char *dst_path)
4874  * @brief Initialize OPP and FTP server without the conneciton authorization of the agent
4875  *
4876  * This function is a synchronous call.
4877  * No event corresponding to this api
4878  *
4879  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4880  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4881  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4882  *              BLUETOOTH_ERROR_AGENT_ALREADY_EXIST - Obex agent already registered \n
4883  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4884  *
4885  *
4886  * @exception   None
4887  * @param[in]  dst_path   OPS destination file path.
4888  * @remark       None
4889  * @see bluetooth_obex_server_deinit_without_agent
4890  */
4891 int bluetooth_obex_server_init_without_agent(const char *dst_path);
4892
4893
4894 /**
4895  * @fn int bluetooth_obex_server_deinit_without_agent(void)
4896  * @brief Deinitialize OPP and FTP server without the conneciton authorization of the agent
4897  *
4898  * This function is a synchronous call.
4899  * No event corresponding to this api
4900  *
4901  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4902  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4903  *              BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4904  *
4905  * @exception   None
4906  *
4907  * @remark       None
4908  * @see bluetooth_obex_server_init_without_agent
4909  */
4910 int bluetooth_obex_server_deinit_without_agent(void);
4911
4912
4913 /**
4914  * @fn int bluetooth_obex_server_accept_connection(void)
4915  * @brief Accepts the authorization request indicated by the event
4916   * BLUETOOTH_EVENT_OBEX_SERVER_CONNECTION_AUTHORIZE.
4917  *
4918  * This function is a synchronous call.
4919  *
4920  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4921  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4922  *              BLUETOOTH_ERROR_INTERNAL - Internal error \n
4923  *
4924  * @exception   None
4925  * @remark       None
4926  * @see bluetooth_obex_server_reject_authorize
4927  */
4928 int bluetooth_obex_server_accept_connection(void);
4929
4930
4931 /**
4932  * @fn int bluetooth_obex_server_reject_connection(void)
4933  * @brief Rejects the authorization request indicated by the event
4934   * BLUETOOTH_EVENT_OBEX_SERVER_CONNECTION_AUTHORIZE.
4935  *
4936  * This function is a synchronous call.
4937  *
4938  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4939  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4940  *              BLUETOOTH_ERROR_INTERNAL - Internal error \n
4941  *
4942  * @exception   None
4943  * @remark       None
4944  * @see bluetooth_obex_server_reject_authorize
4945  */
4946 int bluetooth_obex_server_reject_connection(void);
4947
4948
4949 /**
4950  * @fn int bluetooth_obex_server_accept_authorize(const char *filename)
4951  * @brief Accepts the authorization request indicated by the event
4952   * BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_AUTHORIZE.
4953  *
4954  * This function is a asynchronous call.
4955  * This api will be responded with the event BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_STARTED.
4956  *
4957  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4958  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4959  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4960  *              BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4961  *
4962  * @exception   None
4963  * @param[in]  filename   Authorized filename.
4964
4965  * @remark       None
4966  * @see bluetooth_obex_server_reject_authorize
4967  */
4968
4969 int bluetooth_obex_server_accept_authorize(const char *filename);
4970
4971 /**
4972  * @fn int bluetooth_obex_server_reject_authorize(void)
4973  * @brief Reject the authorization request indicated by the event
4974   * BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_AUTHORIZE.
4975  *
4976  * This function is a asynchronous call.
4977  * No event for this api..
4978  *
4979  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4980  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4981  *              BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4982  *
4983  * @exception   None
4984
4985  * @remark       None
4986  * @see bluetooth_obex_server_accept_authorize
4987  */
4988
4989 int bluetooth_obex_server_reject_authorize(void);
4990
4991 /**
4992  * @fn int bluetooth_obex_server_set_destination_path(const char *dst_path)
4993  * @brief Set the OPS destination file path..
4994  *
4995  * This function is a asynchronous call.
4996  * No event for this api..
4997  *
4998  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4999  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
5000  *              BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
5001  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid Param \n
5002  *
5003  * @exception   None
5004  * @param[in]  dst_path   OPS destination file path.
5005
5006  * @remark       None
5007  * @see None
5008  */
5009
5010 int bluetooth_obex_server_set_destination_path(const char *dst_path);
5011
5012 /**
5013  * @fn int bluetooth_obex_server_set_root(const char *root)
5014  * @brief Set the FTS root folder..
5015  *
5016  * This function is a asynchronous call.
5017  * No event for this api..
5018  *
5019  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5020  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
5021  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
5022  *              BLUETOOTH_ERROR_ACCESS_DENIED - Operation not allowed \n
5023  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
5024  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5025  *
5026  * @exception  None
5027  * @param[in]   root   FTS root folder.
5028
5029  * @remark       None
5030  * @see None
5031  */
5032
5033 int bluetooth_obex_server_set_root(const char *root);
5034
5035 /**
5036  * @fn int bluetooth_obex_server_cancel_transfer(int transfer_id)
5037  * @brief Cancel the transfer on server
5038  *
5039  * This function is an asynchronous call.
5040  * If the function call that cancels transfer is successful, the application would receive
5041  * BLUETOOTH_EVENT_TRANSFER_COMPLETED event through registered callback
5042  * function with an error code BLUETOOTH_ERROR_CANCEL. In the case of failure
5043  * the error code will be BLUETOOTH_ERROR_NONE
5044  *
5045  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5046  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
5047  *               BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
5048  *               BLUETOOTH_ERROR_INTERNAL - internal error (proxy does not exist) \n
5049  *               BLUETOOTH_ERROR_NOT_FOUND - The transfer is not found \n
5050  *
5051  * @exception None
5052  * @param[in] transfer_id transfer ID
5053
5054  * @remark       None
5055  * @see None
5056  */
5057 int bluetooth_obex_server_cancel_transfer(int transfer_id);
5058
5059
5060 /**
5061  * @fn int bluetooth_obex_server_cancel_all_transfers(void)
5062  * @brief Cancel the transfer on server
5063  *
5064  * This function is an asynchronous call.
5065  * If the function call that cancels transfer is successful, the application would receive
5066  * BLUETOOTH_EVENT_TRANSFER_COMPLETED event through registered callback
5067  * function with an error code BLUETOOTH_ERROR_CANCEL. In the case of failure
5068  * the error code will be BLUETOOTH_ERROR_NONE
5069  *
5070  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5071  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
5072  *               BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
5073  *               BLUETOOTH_ERROR_INTERNAL - internal error (proxy does not exist) \n
5074  *               BLUETOOTH_ERROR_NOT_FOUND - The transfer is not found \n
5075  *
5076  * @exception None
5077  *
5078  * @remark       None
5079  * @see None
5080  */
5081 int bluetooth_obex_server_cancel_all_transfers(void);
5082
5083
5084 /**
5085  * @fn int bluetooth_obex_server_is_receiving(gboolean *is_receiving)
5086  * @brief Informs whether obex server is receiving or not.
5087  *
5088  * This function is a synchronous call.
5089  *
5090  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5091  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
5092  *               BLUETOOTH_ERROR_INTERNAL \n
5093  *
5094  * @exception   None
5095  * @param[out] is_receiving The receiving status: (@c TRUE = in receiving , @c  false = not in receiving)
5096  *
5097  * @remark       None
5098  * @see None
5099  */
5100 int bluetooth_obex_server_is_receiving(gboolean *is_receiving);
5101
5102
5103 /**
5104  * @fn int bluetooth_map_client_init(void)
5105  * @brief Initialize MAP client.
5106  *
5107  * This function is a synchronous call.
5108  * No event corresponding to this api
5109  *
5110  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5111  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
5112  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5113  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
5114  *              BLUETOOTH_ERROR_ACCESS_DENIED -Memory allocation failed \n
5115  *
5116  * @exception None
5117  *
5118  * @remark None
5119  * @see bluetooth_map_client_deinit
5120  */
5121 int bluetooth_map_client_init(void);
5122
5123 int bluetooth_map_client_deinit(void);
5124
5125 int bluetooth_map_client_create_session(bt_map_client_session_info_s *session);
5126
5127 int bluetooth_map_client_destroy_session(bt_map_client_session_info_s *session);
5128
5129 int bluetooth_map_client_set_folder(bt_map_client_session_info_s *session, const char *name);
5130
5131 int bluetooth_map_client_list_folders(bt_map_client_session_info_s *session,
5132                         bt_map_client_list_folders_filter_t *filter);
5133
5134 /**
5135  * @fn int bluetooth_map_client_list_filter_fields(bt_map_session_info_s* session)
5136  * @brief Return all available fields that can be used in Fields filter.
5137  *
5138  * This function is a asynchronous call.
5139  *
5140  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5141  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
5142  *              BLUETOOTH_ERROR_INTERNAL - Update inbox failed \n
5143  *
5144  * @exception   None
5145  * @param[in]  session   Information about session.
5146  * @remark       None
5147  */
5148 int bluetooth_map_client_list_filter_fields(bt_map_client_session_info_s *session);
5149
5150 int bluetooth_map_client_list_messages(bt_map_client_session_info_s *session,
5151                         const char *folder,
5152                         bt_map_client_list_messages_filter_t *filter);
5153
5154 int bluetooth_map_client_update_inbox(bt_map_client_session_info_s *session);
5155
5156 int bluetooth_map_client_push_message(bt_map_client_session_info_s *session,
5157                         const char *source_file,
5158                         const char *folder,
5159                         bt_map_client_push_message_args_t *args);
5160
5161 int bluetooth_map_client_get_message(bt_map_client_session_info_s *session,
5162                         const bt_map_client_message_object_t message_object,
5163                         const char *target_file,
5164                         bool attachment);
5165
5166
5167 /**
5168  * @fn int bluetooth_oob_read_local_data(bt_oob_data_t *local_oob_data)
5169  * @brief Read the local Hash and Randmizer.
5170  *
5171  * This function is a synchronous call.
5172  *
5173  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5174  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5175  *
5176  * @exception  None
5177  * @param[in]  None.
5178  * @param[out] local_oob_data - Pointer to the local OOB data
5179  *
5180  * @remark       None
5181  * @see None
5182  */
5183
5184 int bluetooth_oob_read_local_data(bt_oob_data_t *local_oob_data);
5185
5186
5187 /**
5188  * @fn int bluetooth_oob_add_remote_data(
5189  *                      const bluetooth_device_address_t *remote_device_address,
5190  *                      bluetooth_bdaddr_type_e address_type,
5191  *                      bt_oob_data_t *oob_data)
5192  * @brief Add/updated the remote device  Hash and Randmizer.
5193  *
5194  * This function is a synchronous call.
5195  * No event for this api..
5196  *
5197  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5198  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5199  *
5200  * @exception   None
5201  * @param[in] remote_device_address - Remote device address
5202   *           address_type - bdaddr type
5203  *            remote_oob_data - Ponter to Hash and Randomizer oob data structure
5204  *
5205  * @remark      None
5206  * @see         None
5207  */
5208
5209 int bluetooth_oob_add_remote_data(
5210                    const bluetooth_device_address_t *remote_device_address,
5211                    bluetooth_bdaddr_type_e address_type,
5212                    bt_oob_data_t *remote_oob_data);
5213
5214
5215 /**
5216  * @fn int bluetooth_oob_remove_remote_data(
5217  *                      const bluetooth_device_address_t *remote_device_address)
5218  * @brief Delete the Hash and Randomizer w.r.t the remote device address.
5219  *
5220  * This function is a synchronous call.
5221  * No event for this api..
5222  *
5223  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5224  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5225  *
5226  * @exception  None
5227  * @param[in] remote_device_address - Remote device address
5228  *
5229  * @remark       None
5230  * @see None
5231  */
5232
5233 int bluetooth_oob_remove_remote_data(
5234                         const bluetooth_device_address_t *remote_device_address);
5235
5236
5237 /**
5238  * @fn int bluetooth_le_oob_read_local_data(bt_oob_data_t *local_oob_data)
5239  * @brief Read the local Hash and Randmizer.
5240  *
5241  * This function is a synchronous call.
5242  *
5243  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5244  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5245  *
5246  * @exception  None
5247  * @param[in]  None.
5248  * @param[out] local_oob_data - Pointer to the local OOB data
5249  *
5250  * @remark       None
5251  * @see None
5252  */
5253 int bluetooth_le_oob_read_local_data(bt_oob_data_t *local_oob_data);
5254
5255 /**
5256  * @fn int bluetooth_le_oob_add_remote_data(
5257  *                      const bluetooth_device_address_t *remote_device_address,
5258  *                      bluetooth_bdaddr_type_e address_type,
5259  *                      bt_oob_data_t *oob_data)
5260  * @brief Add/updated the remote device  Hash and Randmizer.
5261  *
5262  * This function is a synchronous call.
5263  * No event for this api..
5264  *
5265  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5266  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5267  *
5268  * @exception   None
5269  * @param[in] remote_device_address - Remote device address
5270   *           address_type - bdaddr type
5271  *            remote_oob_data - Ponter to Hash and Randomizer oob data structure
5272  *
5273  * @remark      None
5274  * @see         None
5275  */
5276 int bluetooth_le_oob_add_remote_data(
5277                         const bluetooth_device_address_t *remote_device_address,
5278                         bluetooth_bdaddr_type_e address_type,
5279                         bt_oob_data_t *remote_oob_data);
5280
5281 /**
5282  * @fn int bluetooth_gatt_get_primary_services(const bluetooth_device_address_t *address,
5283  *                                              bt_gatt_handle_info_t *prim_svc);
5284  *
5285  * @brief Gets the GATT based primary services handle supported by remote device
5286  *
5287  * This function is a synchronous call.
5288  * The output parameter needs to be freed by calling bluetooth_gatt_free_primary_services()
5289  *
5290  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5291  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5292  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5293  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5294  *
5295  * @exception    None
5296  * @param[in]    address - Remote device address
5297  * @param[out] prim_svc - Structure containing remote service count and handle list.
5298  *
5299  * @remark      None
5300  * @see         bluetooth_gatt_free_primary_services()
5301  */
5302 int bluetooth_gatt_get_primary_services(const bluetooth_device_address_t *address,
5303                                                 bt_gatt_handle_info_t *prim_svc);
5304
5305 /**
5306  * @fn int bluetooth_gatt_discover_service_characteristics(const char *service_handle)
5307  *
5308  * @brief Discovers the characteristics of GATT based service of remote device
5309  *
5310  * This function is an asynchronous call.
5311  * This API is responded with BLUETOOTH_EVENT_GATT_SVC_CHAR_DISCOVERED
5312  *
5313  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5314  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5315  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5316  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5317  *
5318  * @exception   None
5319  * @param[in]   service_handle - Handle for remote service.
5320  *
5321  * @remark      None
5322  * @see         None
5323  */
5324 int bluetooth_gatt_discover_service_characteristics(const char *service_handle);
5325
5326 int bluetooth_gatt_set_service_change_watcher(
5327                 const bluetooth_device_address_t *address, gboolean enable);
5328
5329 /**
5330  * @fn int bluetooth_gatt_get_service_property(const char *service_handle,
5331  *                                              bt_gatt_service_property_t *service);
5332  *
5333  * @brief Gets the properties of GATT based service of remote device
5334  *
5335  * This function is a synchronous call.
5336  * The output parameter needs to be freed by calling bluetooth_gatt_free_primary_services()
5337  *
5338  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5339  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5340  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5341  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5342  *
5343  * @exception   None
5344  * @param[in]   service_handle - Handle for remote service.
5345  * @param[out]  service - Structure containing remote service property.
5346  *
5347  * @remark      None
5348  * @see         bluetooth_gatt_free_service_property()
5349  */
5350 int bluetooth_gatt_get_service_property(const char *service_handle,
5351                                                 bt_gatt_service_property_t *service);
5352
5353 /**
5354  * @fn int bluetooth_gatt_watch_characteristics(const char *service_handle, const char *svc_name)
5355  *
5356  * @brief Register to GATT based service to receive value change notification/indication.
5357  *
5358  * This function is a synchronous call.
5359  * No event for this api.
5360  *
5361  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5362  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5363  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5364  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5365  *
5366  * @exception   None
5367  * @param[in]   service_handle - Handle for remote service.
5368  * @param[in]   service_name - Friednly name of service uuid.
5369  *
5370  * @remark      None
5371  * @see None
5372  */
5373 int bluetooth_gatt_watch_characteristics(const char *service_handle, const char *svc_name);
5374
5375 /**
5376  * @fn int bluetooth_gatt_unwatch_characteristics(const char *service_handle)
5377  *
5378  * @brief Unregister GATT based service to receive value change notification/indication.
5379  *
5380  * This function is a synchronous call.
5381  * No event for this api.
5382  *
5383  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5384  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5385  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5386  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5387  *
5388  * @exception   None
5389  * @param[in]   service_handle - Handle for remote service.
5390  *
5391  * @remark      None
5392  * @see         None
5393  */
5394 int bluetooth_gatt_unwatch_characteristics(const char *service_handle);
5395
5396 /**
5397  * @fn int bluetooth_gatt_get_characteristics_property(const char *char_handle,
5398  *                                              bt_gatt_char_property_t *characteristic);
5399  *
5400  * @brief Provides characteristic value along with properties.
5401  *
5402  * This function is a synchronous call.
5403  * The output parameter needs to be freed by calling bluetooth_gatt_free_char_property()
5404  *
5405  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5406  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5407  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5408  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5409  *
5410  * @exception   None
5411  * @param[in]   char_handle - Handle for Characteristic property.
5412  * @param[out] characteristic - Structure containing remote characteristic property.
5413  *
5414  * @remark      None
5415  * @see         bluetooth_gatt_free_char_property()
5416  */
5417 int bluetooth_gatt_get_characteristics_property(const char *char_handle,
5418                                                 bt_gatt_char_property_t *characteristic);
5419
5420 /**
5421  * @fn int bluetooth_gatt_get_char_descriptor_property(const char *char_handle,
5422  *                                              bt_gatt_char_property_t *characteristic);
5423  *
5424  * @brief Provides characteristic descriptor value along with its UUID.
5425  *
5426  * This function is a synchronous call.
5427  * The output parameter needs to be freed by calling bluetooth_gatt_free_desc_property()
5428  *
5429  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5430  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5431  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5432  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5433  *
5434  * @exception   None
5435  * @param[in]   desc_handle - Handle for Characteristic descriptor.
5436  * @param[out] descriptor - Structure containing remote characteristic descriptor property.
5437  *
5438  * @remark      None
5439  * @see         bluetooth_gatt_free_desc_property()
5440  */
5441 int bluetooth_gatt_get_char_descriptor_property(const char *desc_handle,
5442                                                 bt_gatt_char_descriptor_property_t *descriptor);
5443
5444
5445 /**
5446  * @fn int bluetooth_gatt_set_characteristics_value(const char *char_handle,
5447  *                                              const guint8 *value, int length)
5448  *
5449  * @brief Set characteristic value.
5450  *
5451  * This function is a synchronous call.
5452  *
5453  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5454  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5455  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5456  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5457  *
5458  * @exception   None
5459  * @param[in]   char_handle - Handle for Characteristic property.
5460  * @param[in]   value - New value to set for characteristic property.
5461  * @param[in]   length - Length of the value to be set.
5462  *
5463  * @remark      None
5464  * @see         None
5465  */
5466 int bluetooth_gatt_set_characteristics_value(const char *char_handle,
5467                                                 const guint8 *value, int length);
5468
5469 /**
5470  * @fn int bluetooth_gatt_set_characteristics_value_by_type(const char *char_handle,
5471  *                              const guint8 *value, int length, guint8 write_type)
5472  *
5473  * @brief Set characteristic value by write type.
5474  *
5475  * This function is a synchronous call if write type is "write without resonse"
5476  * and it is an asynchronous call if write type is "write with response"
5477  *
5478  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5479  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5480  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5481  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5482  *
5483  * @exception   None
5484  * @param[in]   char_handle - Handle for Characteristic property.
5485  * @param[in]   value - New value to set for characteristic property.
5486  * @param[in]   length - Length of the value to be set.
5487  * @param[in]   write_type - Type of write.
5488  *
5489  * @remark      None
5490  * @see         None
5491  */
5492 int bluetooth_gatt_set_characteristics_value_by_type(const char *char_handle,
5493                                         const guint8 *value, int length,
5494                                         guint8 write_type, gpointer app_data);
5495
5496
5497 /**
5498  * @fn int bluetooth_gatt_set_characteristics_value_request(const char *char_handle,
5499  *                                              const guint8 *value, int length)
5500  *
5501  * @brief Set characteristic value request.
5502  *
5503  * This function is an asynchronous call.
5504  *
5505  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5506  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5507  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5508  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5509  *
5510  * @exception   None
5511  * @param[in]   char_handle - Handle for Characteristic property.
5512  * @param[in]   value - New value to set for characteristic property.
5513  * @param[in]   length - Length of the value to be set.
5514   *
5515  * @remark      None
5516  * @see         None
5517  */
5518 int bluetooth_gatt_set_characteristics_value_request(const char *char_handle,
5519                                                 const guint8 *value, int length);
5520
5521 /**
5522  * @fn int bluetooth_gatt_read_characteristic_value(const char *char_handle)
5523  *
5524  * @brief Read characteristic value.
5525  *
5526  * This function is a asynchronous call.
5527  *
5528  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5529  *             BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5530  *             BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5531  *             BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5532  *
5533  * @exception  None
5534  * @param[in]  char_handle - Handle for Characteristic property.
5535  *
5536  * @remark     None
5537  * @see        None
5538  */
5539 int bluetooth_gatt_read_characteristic_value(const char *char_handle, gpointer app_data);
5540
5541 /**
5542  * @fn int bluetooth_gatt_get_service_from_uuid(bluetooth_device_address_t *address,
5543  *                                      const char *service_uuid,
5544  *                                      bt_gatt_service_property_t *service)
5545  *
5546  * @brief Gets the service property from a device based on a particular uuid
5547  *
5548  * This function is a synchronous call.
5549  *
5550  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5551  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5552  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5553  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5554  *
5555  * @exception   None
5556  * @param[in]   address - BD address of the remote device
5557  * @param[in]   service_uuid - uuid of the service.
5558  * @param[out] service - Structure containing the service property.
5559  *
5560  * @remark      None
5561  * @see         None
5562  */
5563 int bluetooth_gatt_get_service_from_uuid(bluetooth_device_address_t *address,
5564                                         const char *service_uuid,
5565                                         bt_gatt_service_property_t *service);
5566
5567 /**
5568  * @fn int bluetooth_gatt_get_char_from_uuid(const char *service_handle,
5569  *                                                      const char *char_uuid)
5570  *
5571  * @brief Gets the characteristic property from a service based on a particular char uuid
5572  *
5573  * This function is an asynchronous call.
5574  * This API is responded with BLUETOOTH_EVENT_GATT_GET_CHAR_FROM_UUID
5575  *
5576  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5577  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5578  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5579  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5580  *
5581  * @exception   None
5582  * @param[in]   service_handle - Service handle.
5583  * @param[in]   uuid - Characteristic uuid.
5584  *
5585  * @remark      None
5586  * @see         None
5587  */
5588 int bluetooth_gatt_get_char_from_uuid(const char *service_handle,
5589                                                 const char *char_uuid);
5590
5591 /**
5592  * @fn int bluetooth_gatt_free_primary_services(bt_gatt_handle_info_t *prim_svc);
5593  *
5594  * @brief Releases the memory allocated by bluetooth_gatt_get_primary_services()
5595  *
5596  * This function is a synchronous call.
5597  * The input parameter is obtained by calling bluetooth_gatt_get_primary_services()
5598  *
5599  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5600  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5601  *
5602  * @exception   None
5603  * @param[in]   prim_svc - GATT handle info structure
5604  *
5605  * @remark      None
5606  * @see         bluetooth_gatt_get_primary_services()
5607  */
5608 int bluetooth_gatt_free_primary_services(bt_gatt_handle_info_t *prim_svc);
5609
5610 /**
5611  * @fn int bluetooth_gatt_free_service_property(bt_gatt_service_property_t *svc_pty);
5612  *
5613  * @brief  Releases the memory allocated by bluetooth_gatt_get_service_property()
5614  *
5615  * This function is a synchronous call.
5616  * The input parameter is obtained by calling bluetooth_gatt_get_service_property()
5617  *
5618  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5619  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5620  *
5621  * @exception   None
5622  * @param[in]   svc_pty - GATT service property structure.
5623  *
5624  * @remark      None
5625  * @see         bluetooth_gatt_get_service_property()
5626  */
5627 int bluetooth_gatt_free_service_property(bt_gatt_service_property_t *svc_pty);
5628
5629 /**
5630  * @fn int bluetooth_gatt_free_char_property(bt_gatt_char_property_t *char_pty);
5631  *
5632  * @brief Provides characteristic value along with properties.
5633  *
5634  * This function is a synchronous call.
5635  * The input parameter is obtained by calling bluetooth_gatt_get_characteristics_property()
5636  *
5637  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5638  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5639  *
5640  * @exception   None
5641  * @param[in]   char_pty - GATT characteristics property structure.
5642  *
5643  * @remark      None
5644  * @see         bluetooth_gatt_get_characteristics_property()
5645  */
5646 int bluetooth_gatt_free_char_property(bt_gatt_char_property_t *char_pty);
5647
5648 /**
5649  * @fn int bluetooth_gatt_free_desc_property(bt_gatt_char_descriptor_property_t *desc_pty);
5650  *
5651  * @brief Releases the memory allocated by bluetooth_gatt_get_char_descriptor_property()
5652  *
5653  * This function is a synchronous call.
5654  * The input parameter is obtained by calling bluetooth_gatt_get_char_descriptor_property()
5655  *
5656  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5657  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5658  *
5659  * @exception   None
5660  * @param[in]   desc_pty - GATT characteristics descriptor property structure.
5661  *
5662  * @remark      None
5663  * @see         bluetooth_gatt_get_char_descriptor_property()
5664  */
5665 int bluetooth_gatt_free_desc_property(bt_gatt_char_descriptor_property_t *desc_pty);
5666
5667 #ifdef TIZEN_GATT_CLIENT
5668 int bluetooth_connect_le(const bluetooth_device_address_t *device_address,
5669                                 gboolean auto_connect, int client_id);
5670 #else
5671 int bluetooth_connect_le(const bluetooth_device_address_t *device_address, gboolean auto_connect);
5672 #endif
5673
5674 #ifdef TIZEN_GATT_CLIENT
5675 int bluetooth_disconnect_le(const bluetooth_device_address_t *device_address,
5676                 int client_id);
5677 #else
5678 int bluetooth_disconnect_le(const bluetooth_device_address_t *device_address);
5679 #endif
5680
5681  /**
5682  * @fn int bluetooth_gatt_discover_characteristic_descriptor(const char *characteristic_handle);
5683  *
5684  * @brief Discovers the characteristic descriptor value of a characteristic within its definition, asynchronously
5685  *
5686  * The input parameter is obtained by calling bluetooth_gatt_get_characteristics_property()
5687  *
5688  * @return  BLUETOOTH_ERROR_NONE  - Success \n
5689  *                      BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5690  *
5691  * @exception   None
5692  * @param[in]   characteristic_handle - The characteristic handle for which characteristic descriptor has to be discovered.
5693  *
5694  * @remark      None
5695  */
5696 int bluetooth_gatt_discover_characteristic_descriptor(const char *characteristic_handle);
5697
5698 /**
5699  * @fn int bluetooth_gatt_read_descriptor_value(const char *desc_handle)
5700  *
5701  * @brief Read characteristic descriptor value.
5702  *
5703  * This function is a asynchronous call.
5704  *
5705  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5706  *             BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5707  *             BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5708  *             BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5709  *
5710  * @exception  None
5711  * @param[in]  desc_handle - Handle for Characteristic descriptor
5712  *
5713  * @remark     None
5714  * @see        None
5715  */
5716 int bluetooth_gatt_read_descriptor_value(const char *desc_handle, gpointer app_data);
5717
5718 /**
5719  * @fn int bluetooth_gatt_write_descriptor_value(const char *desc_handle,
5720  *                      const guint8 *value, int length);
5721  *
5722  * @brief Set characteristic descriptor value.
5723  *
5724  * This function is a asynchronous call.
5725  *
5726  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5727  *             BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5728  *             BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5729  *             BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5730  *
5731  * @exception  None
5732  * @param[in]  desc_handle - Handle for Characteristic descriptor
5733  * @param[in]  value - New value to set for characteristic descriptor
5734  * @param[in]  length - Length of the value to be set.
5735  *
5736  * @remark     None
5737  * @see        None
5738  */
5739 int bluetooth_gatt_write_descriptor_value(const char *desc_handle,
5740                         const guint8 *value, int length, gpointer app_data);
5741
5742 /* @fn int bluetooth_gatt_init(void)
5743 *
5744 * @brief Initializes the gatt service.
5745 *
5746 * This function is a synchronous call.
5747 * @return   BLUETOOTH_ERROR_NONE        - Success \n
5748 *       BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5749 *       BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5750 *       BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5751 *
5752 * @exception     None
5753 * @remark  Adapter should be enabled
5754 * @see  bluetooth_gatt_deinit()
5755 */
5756 int bluetooth_gatt_init(void);
5757
5758 /* @fn int bluetooth_gatt_init(void)
5759 *
5760 * @brief DeInitializes the gatt service.
5761 *
5762 * This function is a synchronous call.
5763 * @return   BLUETOOTH_ERROR_NONE        - Success \n
5764 *       BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5765 *       BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5766 *       BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5767 *
5768 * @exception     None
5769 * @remark  Adapter should be enabled
5770 * @see  bluetooth_gatt_init()
5771 */
5772 int bluetooth_gatt_deinit(void);
5773
5774 /* @fn int bluetooth_gatt_add_service(const char *svc_uuid,
5775                         unsigned char **svc_path)
5776 *
5777 * @brief Exports a new gatt service to the service interface.
5778 *
5779 * This function is a synchronous call.
5780 *
5781 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5782 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5783 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5784 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5785 *
5786 * @exception     None
5787 * @param[in]   svc_uuid  Gatt service uuid.
5788 * @param[out] svc_path  service object path of the exported service.
5789 * @remark  Adapter should be enabled
5790 * @see  bluetooth_gatt_init()
5791 */
5792 int bluetooth_gatt_add_service(const char *svc_uuid,
5793                         char **svc_path);
5794
5795 /* @fn int bluetooth_gatt_add_new_characteristic(
5796                         const char *svc_path, const char *char_uuid,
5797                         bt_gatt_permission_t permissions,
5798                         bt_gatt_characteristic_property_t properties,
5799                         int flags_length, char **char_path);;
5800 *
5801 * @brief Exports a new gatt characteristic to the characteristic interface.
5802 *
5803 * This function is a synchronous call.
5804 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5805 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5806 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5807 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5808 * @exception     None
5809 * @param[in]   svc_path service object path of the exported service.
5810 * @param[in]   char_uuid  Gatt service uuid.
5811 * @param[in]   properties       GATT characteristic properties.
5812 * @param[out] char_path characteristic object path of the exported characteristic.
5813 *
5814 * @remark  Adapter should be enabled
5815 * @see  bluetooth_gatt_add_service()
5816 */
5817 int bluetooth_gatt_add_new_characteristic(
5818                         const char *svc_path, const char *char_uuid,
5819                         bt_gatt_permission_t permissions,
5820                         bt_gatt_characteristic_property_t properties,
5821                         char **char_path);
5822
5823 /* @fn bluetooth_gatt_set_characteristic_value(
5824                         const char *characteristic, const char *char_value,
5825                         int value_length);
5826 *
5827 * @brief adds gatt charactertisic value to the given charactertistic path.
5828 *
5829 * This function is a synchronous call.
5830 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5831 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5832 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5833 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5834 * @exception     None
5835 * @param[in]   char_value Value of the GATT characteristic to be added.
5836 * @param[in]   value_length length of the chantacteristic value..
5837 * @param[out] characteristic characteristic object path..
5838 *
5839 * @remark  Adapter should be enabled
5840 * @see  bluetooth_gatt_add_service()
5841 */
5842 int bluetooth_gatt_set_characteristic_value(
5843                         const char *characteristic, const char *char_value,
5844                         int value_length);
5845
5846 /* @fn  int bluetooth_gatt_add_descriptor(
5847                         const char *char_path, const char *desc_uuid,
5848                         bt_gatt_permission_t permissions,
5849                         char **desc_path);
5850 *
5851 * @brief Exports a new gatt descriptor to the descriptor interface.
5852 *
5853 * This function is a synchronous call.
5854 *
5855 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5856 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5857 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5858 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5859 *
5860 * @exception    None
5861 * @param[in]    desc_uuid  Gatt descriptor uuid.
5862 * @param[in]    desc_value      GATT descriptor value.
5863 * @param[in]    value_length    Length of GATT descriptor value.
5864 * @param[in]    permissions     descriptor permissions.
5865 * @param[in]    properties      GATT descriptor properties.
5866 * @param[in]    char_path       characteristics object path of the exported character.
5867 *
5868 * @remark  Adapter should be enabled
5869 * @see  bluetooth_gatt_add_service()
5870 * @see  bluetooth_gatt_add_characteristics()
5871 */
5872 int bluetooth_gatt_add_descriptor(
5873                         const char *char_path, const char *desc_uuid,
5874                         bt_gatt_permission_t permissions,
5875                         char **desc_path);
5876
5877 /* @fn int bluetooth_gatt_set_descriptor_value(
5878                    const char *desc_path, const char *desc_value,
5879                    int value_length);
5880 *
5881 * @brief Adds value to the given descriptor handle.
5882 *
5883 * This function is a synchronous call.
5884 *
5885 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5886 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5887 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5888 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5889 *
5890 * @exception     None
5891 * @param[in]   desc_value       GATT descriptor value.
5892 * @param[in]   value_length     Length of GATT descriptor value.
5893 * @param[in]   desc_path descriptor path to which the value needs to be added.
5894 *
5895 * @remark  Adapter should be enabled
5896 * @see  bluetooth_gatt_add_service()
5897 * @see  bluetooth_gatt_add_characteristics()
5898 */
5899 int bluetooth_gatt_set_descriptor_value(
5900                    const char *desc_path, const char *desc_value,
5901                    int value_length);
5902
5903 /* @fn int bluetooth_gatt_get_service(const char *svc_uuid);
5904 *
5905 * @brief Reads the Service registered on manager interface.
5906 *
5907 * This function is a synchronous call.
5908 *
5909 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5910 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5911 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5912 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5913 *
5914 * @exception     None
5915 * @param[in]   svc_uuid  Gatt Service uuid.
5916 *
5917 * @remark  Adapter should be enabled and service should be registered.
5918 * @see  bluetooth_gatt_register_service()
5919 */
5920 int bluetooth_gatt_get_service(const char *svc_uuid);
5921
5922 /* @fn int bluetooth_gatt_register_service(const  char *svc_path)
5923 *
5924 * @brief Registers the given service path with the library.
5925 *
5926 * This function is a synchronous call.
5927 *
5928 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5929 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5930 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5931 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5932 *
5933 * @exception     None
5934 * @param[in] svc_path   service object path of the exported service.
5935 *
5936 * @remark  Adapter should be enabled
5937 * @see  bluetooth_gatt_add_service()
5938 * @see  bluetooth_gatt_add_characteristics()
5939 * @see  bluetooth_gatt_add_descriptor()
5940 * @see  bluetooth_gatt_register_application()
5941 */
5942 int bluetooth_gatt_register_service(const char *svc_path);
5943
5944 /* @fn int bluetooth_gatt_register_application(void)
5945 *
5946 * @brief Registers the application with the bluez gatt server.
5947 *
5948 * This function is a synchronous call.
5949 *
5950 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5951 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5952 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5953 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5954 *
5955 * @exception     None
5956 *
5957 * @remark  Adapter should be enabled
5958 * @see  bluetooth_gatt_init()
5959 * @see  bluetooth_gatt_add_service()
5960 * @see  bluetooth_gatt_add_characteristics()
5961 * @see  bluetooth_gatt_add_descriptor()
5962 * @see  bluetooth_gatt_register_service()
5963 */
5964 int bluetooth_gatt_register_application(void);
5965
5966 /* @fn int bluetooth_gatt_unregister_service(const  char *svc_path)
5967 *
5968 * @brief Removes(unregister) service from the bluez gatt server db.
5969 *
5970 * This function is a synchronous call.
5971 *
5972 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5973 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5974 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5975 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5976 *
5977 * @exception     None
5978 * @param[in] svc_path   service object path of the exported service.
5979 *
5980 * @remark  Adapter should be enabled
5981 * @see  bluetooth_gatt_add_service()
5982 * @see  bluetooth_gatt_add_characteristics()
5983 * @see  bluetooth_gatt_add_descriptor()
5984 * @see bluetooth_gatt_register_service()
5985 */
5986 int bluetooth_gatt_unregister_service(const char *svc_path);
5987
5988 /* @fn int bluetooth_gatt_unregister_application(void)
5989 *
5990 * @brief Removes(unregister) the application with the bluez gatt server,
5991 *        and deletes all the service registered.
5992 *
5993 * This function is a synchronous call.
5994 *
5995 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5996 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5997 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5998 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5999 *
6000 * @exception     None
6001 *
6002 * @remark  Adapter should be enabled
6003 * @see  bluetooth_gatt_init()
6004 * @see  bluetooth_gatt_add_service()
6005 * @see  bluetooth_gatt_add_characteristics()
6006 * @see  bluetooth_gatt_add_descriptor()
6007 * @see  bluetooth_gatt_register_service()
6008 * @see  bluetooth_gatt_unregister_service()
6009 */
6010 int bluetooth_gatt_unregister_application(void);
6011
6012 /* @fn int bluetooth_gatt_send_response(int request_id,
6013 *                               int offset, char *value, int value_length)
6014 *
6015 * @brief Updates the attribute value in local attribute list.
6016 *
6017 * This function is a synchronous call.
6018 *
6019 * @return       BLUETOOTH_ERROR_NONE    - Success \n
6020 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6021 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
6022 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
6023 *
6024 * @exception     None
6025 * @param[in] request_id The identification of a read request
6026 * @param[in] req_type The identification of  request type (TRUE for Read request and FALSE for write request)
6027 * @param[in] resp_state The identification of response state
6028 * @param[in] offset The offset from where a value is read
6029 * @param[in] value The value to be sent. It will be sent from @a offset.
6030 *               If it is NULL, a requested GATT handle's value will be sent from @a offset.
6031 * @param[in] value_length Value Length.
6032 *
6033 * @remark  Adapter should be enabled
6034 * @see  bluetooth_gatt_add_service()
6035 * @see  bluetooth_gatt_add_characteristics()
6036 * @see  bluetooth_gatt_add_descriptor()
6037 * @see bluetooth_gatt_register_service()
6038 */
6039 int bluetooth_gatt_send_response(int request_id, guint req_type,
6040                                 int resp_state, int offset, char *value, int value_length);
6041
6042 /* @fn bluetooth_gatt_server_set_notification(const char *char_path)
6043 *
6044 * @brief Sets the notification property for a characteristic.
6045 *
6046 * This function is a synchronous call.
6047 *
6048 * @return       BLUETOOTH_ERROR_NONE    - Success \n
6049 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6050 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
6051 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
6052 *
6053 * @exception     None
6054 * @param[in] char_path characteristic object path.
6055 * @param[in]   unicast_address remote device address. if set notification is sent to only one device.
6056 *
6057 * @remark  Adapter should be enabled
6058 * @see  bluetooth_gatt_update_characteristic()
6059 */
6060 int bluetooth_gatt_server_set_notification(const char *char_path,
6061                                 bluetooth_device_address_t *unicast_address);
6062
6063 /* @fn int bluetooth_gatt_delete_services(void)
6064 *
6065 * @brief deletes (unregisters) all services from the gatt server database..
6066 *
6067 * This function is a synchronous call.
6068 *
6069 * @return       BLUETOOTH_ERROR_NONE    - Success \n
6070 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6071 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
6072 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
6073 *
6074 * @exception     None
6075 *
6076 * @remark  Adapter should be enabled
6077 * @see  bluetooth_gatt_add_service()
6078 * @see  bluetooth_gatt_add_characteristics()
6079 * @see  bluetooth_gatt_add_descriptor()
6080 * @see bluetooth_gatt_register_service()
6081 * @see bluetooth_gatt_unregister_service()
6082 */
6083 int bluetooth_gatt_delete_services(void);
6084
6085 /* @fn int bluetooth_gatt_update_characteristic(void)
6086 *
6087 * @brief updates the given characteristic with a new value
6088 *
6089 * This function is a synchronous call.
6090 *
6091 * @return       BLUETOOTH_ERROR_NONE    - Success \n
6092 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6093 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
6094 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
6095 *
6096 * @exception     None
6097 *
6098 * @remark  Adapter should be enabled
6099 * @see  bluetooth_gatt_add_service()
6100 * @see  bluetooth_gatt_add_characteristics()
6101 * @see  bluetooth_gatt_add_descriptor()
6102 * @see bluetooth_gatt_register_service()
6103 * @see bluetooth_gatt_unregister_service()
6104 */
6105 int bluetooth_gatt_update_characteristic(const char *char_path,
6106                 const char* char_value, int value_length);
6107
6108 /**
6109  * @fn int bluetooth_set_advertising(int handle, gboolean enable);
6110  *
6111  * @brief Set advertising status.
6112  *
6113  * This function is used to enable or disable LE advertising.
6114  * Once advertising is enabled, Advertising data is transmitted in the advertising packets
6115  *
6116  * This function is a synchronous call.
6117  *
6118  * @return      BLUETOOTH_ERROR_NONE - Success \n
6119  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6120  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6121  *
6122  * @exception   None
6123  * @param[in]   enable - The status of advertising
6124  *
6125  * @remark      None
6126  * @see         bluetooth_set_advertising_data
6127  */
6128 int bluetooth_set_advertising(int handle, gboolean enable);
6129
6130 /**
6131  * @fn int bluetooth_set_custom_advertising(int handle, gboolean enable, bluetooth_advertising_params_t *params);
6132  *
6133  * @brief Set advertising status along with interval value.
6134  *
6135  * This function is used to enable or disable LE advertising.
6136  * Interval_min and Interval_max is used to set the best advertising interval.
6137  * Once advertising is enabled, Advertising data is transmitted in the advertising packets
6138  *
6139  * This function is a synchronous call.
6140  *
6141  * @return      BLUETOOTH_ERROR_NONE - Success \n
6142  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6143  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6144  *
6145  * @exception   None
6146  * @param[in]   enable - The status of advertising
6147  * @param[in]   interval_min - Minimum interval of advertising (msec)
6148  * @param[in]   interval_max - Maximum interval of advertising (msec)
6149  * @param[in]   filter_policy - Advertising filter policy
6150  *
6151  * @remark      None
6152  * @see         bluetooth_set_advertising_data
6153  */
6154 int bluetooth_set_custom_advertising(int handle, gboolean enable,
6155                                         bluetooth_advertising_params_t *params);
6156
6157 /**
6158  * @fn int bluetooth_get_advertising_data(bluetooth_advertising_data_t *value, int *length);
6159  * @brief Get the advertising data
6160  *
6161  * This function is used to get advertising data.
6162  * Before calling this API, the adapter should be enabled.
6163  *
6164  * This function is a synchronous call.
6165  *
6166  * @return      BLUETOOTH_ERROR_NONE - Success \n
6167  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6168  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter (NULL buffer)\n
6169  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6170  *
6171  * @param[out]  value - Advertising data structure.
6172  * @param[out]  length - The length of Advertising data.
6173  *
6174  * @remark      None
6175 @code
6176 bluetooth_advertising_data_t *value = { {0} };
6177 int length;
6178 int ret = 0;
6179 ret = bluetooth_get_advertising_data(&value, &length);
6180 @endcode
6181  */
6182 int bluetooth_get_advertising_data(bluetooth_advertising_data_t *value, int *length);
6183
6184 /**
6185  * @fn int bluetooth_set_advertising_data(int handle, const bluetooth_advertising_data_t *value, int length);
6186  *
6187  * @brief Set advertising data with value
6188  *
6189  * This function is used to set advertising data and Maximum size of advertising data
6190  *  is 28 byte (Except Flag)
6191  *
6192  * This function is a synchronous call.
6193  *
6194  * @return      BLUETOOTH_ERROR_NONE - Success \n
6195  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6196  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6197  *
6198  * @exception   None
6199  * @param[in]   value - Advertising data structure.
6200  *
6201  * @remark      None
6202  */
6203 int bluetooth_set_advertising_data(int handle, const bluetooth_advertising_data_t *value, int length);
6204
6205 /**
6206  * @fn int bluetooth_check_privilege_advertising_parameter(void);
6207  *
6208  * @brief Check the privilege for advertising parameter setting
6209  *
6210  * This function is a synchronous call.
6211  *
6212  * @return      BLUETOOTH_ERROR_NONE - Success \n
6213  *              BLUETOOTH_ERROR_PERMISSION_DEINED - Permission deined \n
6214  *
6215  * @exception   None
6216  *
6217  * @remark      None
6218  */
6219 int bluetooth_check_privilege_advertising_parameter(void);
6220
6221 /**
6222  * @fn int bluetooth_get_scan_response_data(bluetooth_scan_resp_data_t *value, int *length);
6223  * @brief Get the LE scan response data
6224  *
6225  * This function is used to get scan response data.
6226  * Before calling this API, the adapter should be enabled.
6227  *
6228  * This function is a synchronous call.
6229  *
6230  * @return      BLUETOOTH_ERROR_NONE - Success \n
6231  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6232  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter (NULL buffer)\n
6233  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6234  *
6235  * @param[out]  value - Scan response data structure.
6236  * @param[out]  length - The length of Scan response data.
6237  *
6238  * @remark      None
6239 @code
6240 bluetooth_scan_resp_data_t *value = { {0} };
6241 int length;
6242 int ret = 0;
6243 ret = bluetooth_get_scan_response_data(&value, &length);
6244 @endcode
6245  */
6246 int bluetooth_get_scan_response_data(bluetooth_scan_resp_data_t *value, int *length);
6247
6248 /**
6249  * @fn int bluetooth_set_scan_response_data(int handle, const bluetooth_scan_resp_data_t *value, int length);
6250  *
6251  * @brief Set scan response data with value
6252  *
6253  * This function is used to set scan response data and Maximum size of scan response data is 31 byte
6254  *
6255  * This function is a synchronous call.
6256  *
6257  * @return      BLUETOOTH_ERROR_NONE - Success \n
6258  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6259  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6260  *
6261  * @exception   None
6262  * @param[in]   value - LE Scan response data structure.
6263  *
6264  * @remark      None
6265  */
6266 int bluetooth_set_scan_response_data(int handle, const bluetooth_scan_resp_data_t *value, int length);
6267
6268 /**
6269  * @fn int bluetooth_set_scan_parameters(bluetooth_le_scan_params_t *params);
6270  *
6271  * @brief Set scan interval and window
6272  *
6273  * This function is used to set LE scan interval and window size
6274  *
6275  * This function is a synchronous call.
6276  *
6277  * @return      BLUETOOTH_ERROR_NONE - Success \n
6278  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6279  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6280  *
6281  * @exception   None
6282  * @param[in]   interval - Interval of LE scan (msec)
6283  * @param[in]   window - Window size of LE scan (msec)
6284  *
6285  * @remark      None
6286  */
6287 int bluetooth_set_scan_parameters(bluetooth_le_scan_params_t *params);
6288
6289 /**
6290  * @fn intbluetooth_set_scan_type(bluetooth_le_scan_type_t scan_type);
6291  *ss
6292  * @brief Set scan type
6293  *
6294  * This function is used to set LE scan type
6295  *
6296  * This function is a synchronous call.
6297  *
6298  * @return      BLUETOOTH_ERROR_NONE - Success \n
6299  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6300  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6301  *
6302  * @exception   None
6303  * @param[in]   scan_type - LE scan type
6304  *
6305  * @remark      None
6306  */
6307 int bluetooth_set_scan_type(bluetooth_le_scan_type_t scan_type);
6308
6309 /**
6310  * @fn int bluetooth_is_advertising(void)
6311  * @brief Check for the advertising is in-progress or not.
6312  *
6313  * This API is used to check the current status of the advertising procedure.
6314  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
6315  * this API.
6316  *
6317  * This function checks whether the advertising is started or not.
6318  *
6319  * This function is a synchronous call.
6320  *
6321  * @param[out] is_advertising The advertising status: (@c TRUE = in progress, @c  false = not in progress)
6322  *
6323  * @return      BLUETOOTH_ERROR_NONE - Success \n
6324  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6325  *
6326  * @remark      None
6327  * @see         bluetooth_set_advertising, bluetooth_set_custom_advertising
6328
6329 @code
6330 int ret;
6331 gboolean is_advertising = 0;
6332
6333 ret = bluetooth_is_advertising(&is_advertising);
6334 @endcode
6335  */
6336 int bluetooth_is_advertising(gboolean *is_advertising);
6337
6338 /**
6339  * @fn int bluetooth_add_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type)
6340  * @brief Add LE device to white list
6341  *
6342  * This API is used to add LE device to white list
6343  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
6344  * this API.
6345  *
6346  *
6347  * This function is a synchronous call.
6348  *
6349  * @param[in] address The address of remote device
6350  *
6351  * @return      BLUETOOTH_ERROR_NONE - Success \n
6352  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6353  *
6354  * @remark      None
6355  * @see         bluetooth_set_custom_advertising
6356  */
6357 int bluetooth_add_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type);
6358
6359 /**
6360  * @fn int bluetooth_remove_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type)
6361  * @brief Remove LE device from white list
6362  *
6363  * This API is used to remove LE device from white list
6364  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
6365  * this API.
6366  *
6367  *
6368  * This function is a synchronous call.
6369  *
6370  * @param[in] address The address of remote device
6371  *
6372  * @return      BLUETOOTH_ERROR_NONE - Success \n
6373  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6374  *
6375  * @remark      None
6376  * @see         bluetooth_set_custom_advertising
6377  */
6378 int bluetooth_remove_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type);
6379
6380 /**
6381  * @fn int bluetooth_clear_white_list(void)
6382  * @brief Clear white list
6383  *
6384  * This API is used to clear white list
6385  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
6386  * this API.
6387  *
6388  *
6389  * This function is a synchronous call.
6390  *
6391  * @param[in] address The address of remote device
6392  *
6393  * @return      BLUETOOTH_ERROR_NONE - Success \n
6394  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6395  *
6396  * @remark      None
6397  * @see         bluetooth_set_custom_advertising
6398  */
6399 int bluetooth_clear_white_list(void);
6400
6401 /**
6402  * @fn int bluetooth_le_conn_update(bluetooth_device_address_t *address,
6403  *          const bluetooth_le_connection_param_t *parameters)
6404  * @brief update connection paramter of LE connection.
6405  *
6406  * This function is a synchronous call.
6407  *
6408  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6409  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6410  *
6411  * @exception  None
6412  * @param[in]  address - remote device address value.
6413  * @param[in]  parameters - new connection parameters.
6414  *
6415  * @remark       None
6416  * @see     bluetooth_bond_device
6417  */
6418 int bluetooth_le_conn_update(const bluetooth_device_address_t *address,
6419                 const bluetooth_le_connection_param_t *parameters);
6420
6421 /**
6422  * @fn int bluetooth_enable_le_privacy(gboolean enable_privacy);
6423  *
6424  * @brief Enable/Disable LE Privacy feature.
6425  *
6426  * This function is used to enable or disable LE Privacy feature.
6427  * Once Privacy feature is enabled, Adapter can use Random Address for more security.
6428  *
6429  * This function is a synchronous call.
6430  *
6431  * @return      BLUETOOTH_ERROR_NONE - Success \n
6432  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6433  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6434  *
6435  * @exception   None
6436  * @param[in]   enable_privacy - The status of Privacy feature to be activated/deactivated[True/False].
6437  *
6438  * @remark      None
6439  */
6440 int bluetooth_enable_le_privacy(gboolean enable_privacy);
6441
6442 /**
6443  * @fn int bluetooth_set_le_static_random_address(gboolean enable);
6444  *
6445  * @brief Enable/Disable LE static random address.
6446  *
6447  * This function is used to enable or disable LE static random address.
6448  *
6449  * This function is a synchronous call.
6450  *
6451  * @return      BLUETOOTH_ERROR_NONE - Success \n
6452  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6453  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6454  *
6455  * @exception   None
6456  * @param[in]   enable - The status of LE static random address to be activated/deactivated[True/False].
6457  *
6458  * @remark      None
6459  */
6460 int bluetooth_set_le_static_random_address(gboolean enable);
6461
6462 /**
6463  * @fn int bluetooth_update_le_connection_mode(bluetooth_device_address_t *address,
6464  *                                             bluetooth_le_connection_mode_t mode)
6465  * @brief update connection paramter of LE connection.
6466  *
6467  * This function is a synchronous call.
6468  *
6469  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6470  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6471  *           BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6472  *
6473  * @exception  None
6474  * @param[in]  address - remote device address value.
6475  * @param[in]  mode - new connection mode.
6476  *
6477  * @remark       None
6478  */
6479 int bluetooth_update_le_connection_mode(const bluetooth_device_address_t *address,
6480                 bluetooth_le_connection_mode_t mode);
6481
6482 /**
6483  * @fn int bluetooth_request_att_mtu(const bluetooth_device_address_t *device_address, guint16 mtu)
6484  * @brief Request for new ATT MTU value.
6485  *
6486  * This function is a asynchronous call.
6487  *
6488  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6489  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6490  *           BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6491  *
6492  * @exception  None
6493  * @param[in]  address - remote device address value.
6494  * @param[in]  mtu - MTU value to be set.
6495  *
6496  * @remark       None
6497  */
6498 int bluetooth_request_att_mtu(const bluetooth_device_address_t *device_address, unsigned int mtu);
6499
6500 /**
6501  * @fn int bluetooth_get_att_mtu(const bluetooth_device_address_t *device_address,
6502  *                              unsigned int *mtu)
6503  * @brief Gets the xisting MTU value set for a connection.
6504  *
6505  * This function is a synchronous call.
6506  *
6507  * @return       BLUETOOTH_ERROR_NONE  - Success \n
6508  *                       BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6509  *                       BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6510  *
6511  * @exception  None
6512  * @param[in]  address - remote device address value.
6513  * @param[out]  mtu - MTU value set for the connection.
6514  *
6515  * @remark               None
6516  */
6517 int bluetooth_get_att_mtu(const bluetooth_device_address_t *device_address,
6518                                 unsigned int *mtu);
6519
6520 /**
6521  * @fn int bluetooth_get_device_ida(const bluetooth_device_address_t *device_rpa,
6522  *                                      bluetooth_device_address_t *id_address)
6523  * @brief Gets the Identity address of remote device.
6524  *
6525  * This function is a synchronous call.
6526  *
6527  * @return              BLUETOOTH_ERROR_NONE  - Success \n
6528  *                      BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6529  *                      BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6530  *
6531  * @exception  None
6532  * @param[in]  device_rpa - remote Resolvable private address.
6533  * @param[out] id_address - remote Identity device address value.
6534  *
6535  * @remark               None
6536  */
6537 int bluetooth_get_device_ida(const bluetooth_device_address_t *device_rpa,
6538         bluetooth_device_address_t *id_address);
6539
6540 /**
6541  * @fn int bluetooth_le_read_maximum_data_length()
6542  * @brief reads the maximum LE data length supported in the controller.
6543  *
6544  * This function is a synchronous call.
6545  *
6546  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6547  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6548  *
6549  * @exception  None
6550  *
6551  * @remark       None
6552  */
6553 int bluetooth_le_read_maximum_data_length(
6554                         bluetooth_le_read_maximum_data_length_t *max_le_datalength);
6555 /**
6556  * @fn int bluetooth_le_write_host_suggested_default_data_length()
6557  * @brief writes the host suggested values for the controllers max transmitted no of payload
6558  * octects to be used for new connections.
6559  *
6560  * This function is a synchronous call.
6561  *
6562  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6563  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6564  *
6565  * @exception  None
6566  *
6567  * @remark       None
6568  */
6569 int bluetooth_le_write_host_suggested_default_data_length(
6570                 const unsigned int def_tx_Octets, const unsigned int def_tx_Time);
6571
6572 int bluetooth_le_read_suggested_default_data_length(
6573         bluetooth_le_read_host_suggested_data_length_t *le_data_length);
6574
6575 int bluetooth_le_set_data_length(bluetooth_device_address_t *address,
6576         const unsigned int max_tx_octets, const unsigned int max_tx_time);
6577
6578 int bluetooth_pbap_init(void);
6579 int bluetooth_pbap_deinit(void);
6580 int bluetooth_pbap_connect(const bluetooth_device_address_t *address);
6581 int bluetooth_pbap_disconnect(const bluetooth_device_address_t *address);
6582 int bluetooth_pbap_get_phonebook_size(const bluetooth_device_address_t *address,
6583                 bt_pbap_folder_t *folder);
6584 int bluetooth_pbap_get_phonebook(const bluetooth_device_address_t *address,
6585                 bt_pbap_folder_t *folder, bt_pbap_pull_parameters_t *app_param);
6586 int bluetooth_pbap_get_list(const bluetooth_device_address_t *address,
6587                 bt_pbap_folder_t *folder, bt_pbap_list_parameters_t *app_param);
6588 int bluetooth_pbap_pull_vcard(const bluetooth_device_address_t *address,
6589                 bt_pbap_folder_t *folder, bt_pbap_pull_vcard_parameters_t *app_param);
6590 int bluetooth_pbap_phonebook_search(const bluetooth_device_address_t *address,
6591                 bt_pbap_folder_t *folder, bt_pbap_search_parameters_t *app_param);
6592
6593 /**
6594  * @fn int bluetooth_set_manufacturer_data(const bluetooth_manufacturer_data_t *value);
6595  *
6596  * @brief Set manufacturer data with value
6597  *
6598  * This function is used to set manufacturer data.
6599  *
6600  * This function is a synchronous call.
6601  *
6602  * @return      BLUETOOTH_ERROR_NONE - Success \n
6603  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6604  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6605  *
6606  * @exception   None
6607  * @param[in]   value - Manufacturer data structure.
6608  *
6609  * @remark      None
6610  */
6611 int bluetooth_set_manufacturer_data(const bluetooth_manufacturer_data_t *value);
6612
6613 int bluetooth_set_passkey_notification(gboolean enable);
6614
6615 /**
6616  * @fn int bluetooth_dpm_is_mode_allowed(void);
6617  *
6618  * @brief Checks Restriction for BT mode(BT allowed or not)
6619  *
6620  * This function is a synchronous call.
6621  *
6622  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6623  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6624  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6625  *
6626  * @exception   None
6627  *  @param[in] None
6628  *
6629  * @remark      None
6630  */
6631 int bluetooth_dpm_is_mode_allowed(void);
6632
6633 /**
6634  * @fn int bluetooth_dpm_set_allow_mode(bt_dpm_allow_t value);
6635  *
6636  * @brief Sets Restriction for BT mode(BT allowed or not)
6637  *
6638  * This function is a synchronous call.
6639  *
6640  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6641  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6642  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6643  *
6644  * @exception   None
6645  * @param[in]   value - BT Allow value.
6646  *              BLUETOOTH_DPM_ERROR  = -1,       < bluetooth allowance error
6647  *              BLUETOOTH_DPM_BT_ALLOWED,                < bluetooth allowance allowed
6648  *              BLUETOOTH_DPM_HANDSFREE_ONLY,  < bluetooth allowance handsfree only
6649  *              BLUETOOTH_DPM_BT_RESTRICTED,  < bluetooth allowance restricted
6650  *
6651  * @remark      None
6652  */
6653 int bluetooth_dpm_set_allow_mode(bt_dpm_allow_t value);
6654
6655 /**
6656  * @fn int bluetooth_dpm_get_allow_mode(bt_dpm_allow_t value);
6657  *
6658  * @brief Reads the Restriction for BT mode(BT allowed or not)
6659  *
6660  * This function is a synchronous call.
6661  *
6662  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6663  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6664  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6665  *
6666  * @exception   None
6667  *  @param[in] None
6668  * @param[out]  value - BT Allow value.
6669  *              BLUETOOTH_DPM_ERROR      = -1,   < bluetooth allowance error
6670  *              BLUETOOTH_DPM_BT_ALLOWED,                < bluetooth allowance allowed
6671  *              BLUETOOTH_DPM_HANDSFREE_ONLY,  < bluetooth allowance handsfree only
6672  *              BLUETOOTH_DPM_BT_RESTRICTED,  < bluetooth allowance restricted
6673  *
6674  * @remark      None
6675  */
6676 int bluetooth_dpm_get_allow_mode(bt_dpm_allow_t *value);
6677
6678 /**
6679  * @fn int bluetooth_dpm_activate_device_restriction(bt_dpm_status_t value);
6680  *
6681  * @brief Sets the Restriction for device.
6682  *
6683  * This function is a synchronous call.
6684  *
6685  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6686  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6687  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6688  *
6689  * @exception   None
6690  * @param[in]   value - State value.
6691  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6692  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6693  *
6694  * @remark      None
6695  */
6696 int bluetooth_dpm_activate_device_restriction(bt_dpm_status_t value);
6697
6698 /**
6699  * @fn int bluetooth_dpm_is_device_restriction_active(bt_dpm_status_t *value);
6700  *
6701  * @brief Reads the Restriction for device.
6702  *
6703  * This function is a synchronous call.
6704  *
6705  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6706  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6707  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6708  *
6709  * @exception   None
6710  * @param[in] None
6711  * @param[out]  value - State value.
6712  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6713  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6714  *
6715  * @remark      None
6716  */
6717 int bluetooth_dpm_is_device_restriction_active(bt_dpm_status_t *value);
6718
6719 /**
6720  * @fn int bluetooth_dpm_activate_bluetoooth_uuid_restriction(bt_dpm_status_t value);
6721  *
6722  * @brief Sets the Restriction for uuid.
6723  *
6724  * This function is a synchronous call.
6725  *
6726  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6727  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6728  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6729  *
6730  * @exception   None
6731  * @param[in]   value - State value.
6732  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6733  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6734  *
6735  * @remark      None
6736  */
6737 int bluetooth_dpm_activate_uuid_restriction(bt_dpm_status_t value);
6738
6739 /**
6740  * @fn int bluetooth_dpm_is_uuid_restriction_active(bt_dpm_status_t *value);
6741  *
6742  * @brief Reads the Restriction for uuid.
6743  *
6744  * This function is a synchronous call.
6745  *
6746  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6747  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6748  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6749  *
6750  * @exception   None
6751  * @param[in] None
6752  * @param[out]  value - State value.
6753  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6754  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6755  *
6756  * @remark      None
6757  */
6758 int bluetooth_dpm_is_uuid_restriction_active(bt_dpm_status_t *value);
6759
6760 /**
6761  * @fn int bluetooth_dpm_add_devices_to_blacklist(const bluetooth_device_address_t *device_address);
6762  *
6763  * @brief Adds the device to blacklist.
6764  *
6765  * This function is a synchronous call.
6766  *
6767  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6768  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6769  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6770  *
6771  * @exception   None
6772  * @param[in]   device_address - Device address
6773  *
6774  * @remark      None
6775  */
6776 int bluetooth_dpm_add_devices_to_blacklist(const bluetooth_device_address_t *device_address);
6777
6778 /**
6779  * @fn int bluetooth_dpm_add_devices_to_whitelist(const bluetooth_device_address_t *device_address);
6780  *
6781  * @brief Adds the device to whitelist.
6782  *
6783  * This function is a synchronous call.
6784  *
6785  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6786  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6787  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6788  *
6789  * @exception   None
6790  * @param[in]   device_address - Device address
6791  *
6792  * @remark      None
6793  */
6794 int bluetooth_dpm_add_devices_to_whitelist(const bluetooth_device_address_t *device_address);
6795
6796 /**
6797  * @fn int bluetooth_dpm_add_uuids_to_blacklist(const char *service_uuid);
6798  *
6799  * @brief Adds the Service UUIDS to blacklist.
6800  *
6801  * This function is a synchronous call.
6802  *
6803  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6804  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6805  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6806  *
6807  * @exception   None
6808  * @param[in]   service_uuids - profile or custom service uuids
6809  *
6810  * @remark      None
6811  */
6812 int bluetooth_dpm_add_uuids_to_blacklist(const char *service_uuid);
6813
6814 /**
6815  * @fn int bluetooth_dpm_add_uuids_to_whitelist(const char *service_uuid);
6816  *
6817  * @brief Adds the Service UUIDS to whitelist.
6818  *
6819  * This function is a synchronous call.
6820  *
6821  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6822  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6823  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6824  *
6825  * @exception   None
6826  * @param[in]   service_uuids - profile or custom service uuids
6827  *
6828  * @remark      None
6829  */
6830 int bluetooth_dpm_add_uuids_to_whitelist(const char *service_uuid);
6831
6832 /**
6833  * @fn int bluetooth_dpm_clear_devices_from_blacklist();
6834  *
6835  * @brief Clears the devices from blacklist.
6836  *
6837  * This function is a synchronous call.
6838  *
6839  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6840  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6841  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6842  *
6843  * @exception   None
6844  * @param[in]   None
6845  *
6846  * @remark      None
6847  */
6848 int bluetooth_dpm_clear_devices_from_blacklist(void);
6849
6850 /**
6851  * @fn int bluetooth_dpm_clear_devices_from_whitelist();
6852  *
6853  * @brief Clears the devices from whitelist.
6854  *
6855  * This function is a synchronous call.
6856  *
6857  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6858  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6859  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6860  *
6861  * @exception   None
6862  * @param[in]   None
6863  *
6864  * @remark      None
6865  */
6866 int bluetooth_dpm_clear_devices_from_whitelist(void);
6867
6868 /**
6869  * @fn int bluetooth_dpm_clear_uuids_from_blacklist();
6870  *
6871  * @brief Clears the uuids from blacklist.
6872  *
6873  * This function is a synchronous call.
6874  *
6875  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6876  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6877  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6878  *
6879  * @exception   None
6880  * @param[in]   None
6881  *
6882  * @remark      None
6883  */
6884 int bluetooth_dpm_clear_uuids_from_blacklist(void);
6885
6886 /**
6887  * @fn int bluetooth_dpm_clear_uuids_from_whitelist();
6888  *
6889  * @brief Clears the uuids from whitelist.
6890  *
6891  * This function is a synchronous call.
6892  *
6893  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6894  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6895  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6896  *
6897  * @exception   None
6898  * @param[in]   None
6899  *
6900  * @remark      None
6901  */
6902 int bluetooth_dpm_clear_uuids_from_whitelist(void);
6903
6904 /**
6905  * @fn int bluetooth_dpm_get_devices_from_blacklist(bt_dpm_device_list_t *device_list);
6906  *
6907  * @brief reads the devices from blacklist.
6908  *
6909  * This function is a synchronous call.
6910  *
6911  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6912  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6913  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6914  *
6915  * @exception   None
6916  * @param[out]  device_list - list of devices
6917  *
6918  * @remark      None
6919  */
6920 int bluetooth_dpm_get_devices_from_blacklist(bt_dpm_device_list_t *device_list);
6921
6922 /**
6923  * @fn int bluetooth_dpm_get_devices_from_whitelist(bt_dpm_device_list_t *device_list);
6924  *
6925  * @brief reads the devices from whitelist.
6926  *
6927  * This function is a synchronous call.
6928  *
6929  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6930  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6931  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6932  *
6933  * @exception   None
6934  * @param[out]  device_list - list of devices
6935  *
6936  * @remark      None
6937  */
6938 int bluetooth_dpm_get_devices_from_whitelist(bt_dpm_device_list_t *device_list);
6939
6940 /**
6941  * @fn int bluetooth_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
6942  *
6943  * @brief reads the uuids from blacklist.
6944  *
6945  * This function is a synchronous call.
6946  *
6947  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6948  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6949  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6950  *
6951  * @exception   None
6952  * @param[in]   uuid_list - list of uuids
6953  *
6954  * @remark      None
6955  */
6956 int bluetooth_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
6957
6958 /**
6959  * @fn int bluetooth_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
6960  *
6961  * @brief reads the uuids from whitelist.
6962  *
6963  * This function is a synchronous call.
6964  *
6965  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6966  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6967  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6968  *
6969  * @exception   None
6970  * @param[in]   uuid_list - list of uuids
6971  *
6972  * @remark      None
6973  */
6974 int bluetooth_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
6975
6976 /**
6977  * @fn int bluetooth_dpm_remove_device_from_whitelist(const bluetooth_device_address_t *device_address);
6978  *
6979  * @brief Removes the device from whitelist.
6980  *
6981  * This function is a synchronous call.
6982  *
6983  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6984  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6985  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6986  *
6987  * @exception   None
6988  * @param[in]   device_address - Device address
6989  *
6990  * @remark      None
6991  */
6992 int bluetooth_dpm_remove_device_from_whitelist(const bluetooth_device_address_t *device_address);
6993
6994 /**
6995  * @fn int bluetooth_dpm_remove_device_from_blacklist(const bluetooth_device_address_t *device_address);
6996  *
6997  * @brief Removes the device from blacklist.
6998  *
6999  * This function is a synchronous call.
7000  *
7001  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7002  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7003  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7004  *
7005  * @exception   None
7006  * @param[in]   device_address - Device address
7007  *
7008  * @remark      None
7009  */
7010 int bluetooth_dpm_remove_device_from_blacklist(const bluetooth_device_address_t *device_address);
7011
7012 /**
7013  * @fn int bluetooth_dpm_remove_uuid_from_whitelist(const char *service_uuid);
7014  *
7015  * @brief Removes the Service UUIDS from whitelist.
7016  *
7017  * This function is a synchronous call.
7018  *
7019  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7020  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7021  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7022  *
7023  * @exception   None
7024  * @param[in]   service_uuids - profile or custom service uuids
7025  *
7026  * @remark      None
7027  */
7028 int bluetooth_dpm_remove_uuid_from_whitelist(const char *service_uuid);
7029
7030 /**
7031  * @fn int bluetooth_dpm_remove_uuid_from_blacklist(const char *service_uuid);
7032  *
7033  * @brief Removes the Service UUIDS from blacklist.
7034  *
7035  * This function is a synchronous call.
7036  *
7037  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7038  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7039  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7040  *
7041  * @exception   None
7042  * @param[in]   service_uuids - profile or custom service uuids
7043  *
7044  * @remark      None
7045  */
7046 int bluetooth_dpm_remove_uuid_from_blacklist(const char *service_uuid);
7047
7048 /**
7049  * @fn int bluetooth_dpm_set_allow_outgoing_call(bt_dpm_status_t value);
7050  *
7051  * @brief Sets the Restriction for outgoing call.
7052  *
7053  * This function is a synchronous call.
7054  *
7055  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7056  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7057  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7058  *
7059  * @exception   None
7060  * @param[in]   value - State value.
7061  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7062  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7063  *
7064  * @remark      None
7065  */
7066 int bluetooth_dpm_set_allow_outgoing_call(bt_dpm_status_t value);
7067
7068 /**
7069  * @fn int bluetooth_dpm_get_allow_outgoing_call(bt_dpm_status_t *value);
7070  *
7071  * @brief Reads the Restriction for  outgoing call.
7072  *
7073  * This function is a synchronous call.
7074  *
7075  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7076  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7077  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7078  *
7079  * @exception   None
7080  * @param[in] None
7081  * @param[out]  value - State value.
7082  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7083  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7084  *
7085  * @remark      None
7086  */
7087 int bluetooth_dpm_get_allow_outgoing_call(bt_dpm_status_t *value);
7088
7089 /**
7090  * @fn int bluetooth_dpm_set_pairing_state(bt_dpm_status_t value);
7091  *
7092  * @brief Sets the Restriction for Pairing.
7093  *
7094  * This function is a synchronous call.
7095  *
7096  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7097  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7098  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7099  *
7100  * @exception   None
7101  * @param[in]   value - State value.
7102  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7103  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7104  *
7105  * @remark      None
7106  */
7107 int bluetooth_dpm_set_pairing_state(bt_dpm_status_t value);
7108
7109 /**
7110  * @fn int bluetooth_dpm_get_pairing_state(bt_dpm_status_t *value);
7111  *
7112  * @brief Reads the Restriction for Pairing
7113  *
7114  * This function is a synchronous call.
7115  *
7116  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7117  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7118  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7119  *
7120  * @exception   None
7121  * @param[in] None
7122  * @param[out]  value - State value.
7123  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7124  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7125  *
7126  * @remark      None
7127  */
7128 int bluetooth_dpm_get_pairing_state(bt_dpm_status_t *value);
7129
7130 /**
7131  * @fnint bluetooth_dpm_set_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
7132  *
7133  * @brief Sets the Restriction for using Profiles.
7134  *
7135  * This function is a synchronous call.
7136  *
7137  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7138  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7139  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7140  *
7141  * @exception   None
7142  * @param[in]profile - Profile.
7143  *              BLUETOOTH_DPM_POLICY_A2DP_PROFILE_STATE,
7144  *              BLUETOOTH_DPM_POLICY_AVRCP_PROFILE_STATE,
7145  *              BLUETOOTH_DPM_POLICY_BPP_PROFILE_STATE,
7146  *              BLUETOOTH_DPM_POLICY_DUN_PROFILE_STATE,
7147  *              BLUETOOTH_DPM_POLICY_FTP_PROFILE_STATE,
7148  *              BLUETOOTH_DPM_POLICY_HFP_PROFILE_STATE,
7149  *              BLUETOOTH_DPM_POLICY_HSP_PROFILE_STATE,
7150  *              BLUETOOTH_DPM_POLICY_PBAP_PROFILE_STATE,
7151  *              BLUETOOTH_DPM_POLICY_SAP_PROFILE_STATE,
7152  *              BLUETOOTH_DPM_POLICY_SPP_PROFILE_STATE,
7153  *              BLUETOOTH_DPM_PROFILE_NONE
7154  * @param[in]   value - State value.
7155  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7156  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7157  *
7158  * @remark      None
7159  */
7160 int bluetooth_dpm_set_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
7161
7162 /**
7163  * @fn int bluetooth_dpm_get_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
7164  *
7165  * @brief Reads the Restriction for using Profiles.
7166  *
7167  * This function is a synchronous call.
7168  *
7169  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7170  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7171  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7172  *
7173  * @exception   None
7174  * @param[in]profile - Profile.
7175  *              BLUETOOTH_DPM_POLICY_A2DP_PROFILE_STATE,
7176  *              BLUETOOTH_DPM_POLICY_AVRCP_PROFILE_STATE,
7177  *              BLUETOOTH_DPM_POLICY_BPP_PROFILE_STATE,
7178  *              BLUETOOTH_DPM_POLICY_DUN_PROFILE_STATE,
7179  *              BLUETOOTH_DPM_POLICY_FTP_PROFILE_STATE,
7180  *              BLUETOOTH_DPM_POLICY_HFP_PROFILE_STATE,
7181  *              BLUETOOTH_DPM_POLICY_HSP_PROFILE_STATE,
7182  *              BLUETOOTH_DPM_POLICY_PBAP_PROFILE_STATE,
7183  *              BLUETOOTH_DPM_POLICY_SAP_PROFILE_STATE,
7184  *              BLUETOOTH_DPM_POLICY_SPP_PROFILE_STATE,
7185  *              BLUETOOTH_DPM_PROFILE_NONE
7186  * @param[out]  value - State value.
7187  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7188  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7189  *
7190  * @remark      None
7191  */
7192 int bluetooth_dpm_get_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
7193
7194 /**
7195  * @fn int bluetooth_dpm_set_desktop_connectivity_state(bt_dpm_status_t value);
7196  *
7197  * @brief Sets the Restriction for Desktop Connectivity.
7198  *
7199  * This function is a synchronous call.
7200  *
7201  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7202  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7203  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7204  *
7205  * @exception   None
7206  * @param[in]   value - State value.
7207  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7208  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7209  *
7210  * @remark      None
7211  */
7212 int bluetooth_dpm_set_desktop_connectivity_state(bt_dpm_status_t value);
7213
7214 /**
7215  * @fn int bluetooth_dpm_get_desktop_connectivity_state(bt_dpm_status_t *value);
7216  *
7217  * @brief Reads the Restriction for Desktop Connectivity.
7218  *
7219  * This function is a synchronous call.
7220  *
7221  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7222  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7223  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7224  *
7225  * @exception   None
7226  * @param[in] None
7227  * @param[out]  value - State value.
7228  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7229  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7230  *
7231  * @remark      None
7232  */
7233 int bluetooth_dpm_get_desktop_connectivity_state(bt_dpm_status_t *value);
7234
7235 /**
7236  * @fn int bluetooth_dpm_set_discoverable_state(bt_dpm_status_t value);
7237  *
7238  * @brief Sets the Restriction for Discoverable state.
7239  *
7240  * This function is a synchronous call.
7241  *
7242  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7243  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7244  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7245  *
7246  * @exception   None
7247  * @param[in]   value - State value.
7248  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7249  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7250  *
7251  * @remark      None
7252  */
7253 int bluetooth_dpm_set_discoverable_state(bt_dpm_status_t value);
7254
7255 /**
7256  * @fn int bluetooth_dpm_get_discoverable_state(bt_dpm_status_t *value);
7257  *
7258  * @brief Reads the Restriction for Discoverable state.
7259  *
7260  * This function is a synchronous call.
7261  *
7262  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7263  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7264  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7265  *
7266  * @exception   None
7267  * @param[in] None
7268  * @param[out]  value - State value.
7269  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7270  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7271  *
7272  * @remark      None
7273  */
7274 int bluetooth_dpm_get_discoverable_state(bt_dpm_status_t *value);
7275
7276 /**
7277  * @fn int bluetooth_dpm_set_limited_discoverable_state(bt_dpm_status_t value);
7278  *
7279  * @brief Sets the Restriction for linited discoverable state..
7280  *
7281  * This function is a synchronous call.
7282  *
7283  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7284  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7285  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7286  *
7287  * @exception   None
7288  * @param[in]   value - State value.
7289  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7290  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7291  *
7292  * @remark      None
7293  */
7294 int bluetooth_dpm_set_limited_discoverable_state(bt_dpm_status_t value);
7295
7296 /**
7297  * @fn int bluetooth_dpm_get_limited_discoverable_state(bt_dpm_status_t *value);
7298  *
7299  * @brief Reads the Restriction for limited discoverable state.
7300  *
7301  * This function is a synchronous call.
7302  *
7303  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7304  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7305  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7306  *
7307  * @exception   None
7308  * @param[in] None
7309  * @param[out]  value - State value.
7310  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7311  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7312  *
7313  * @remark      None
7314  */
7315 int bluetooth_dpm_get_limited_discoverable_state(bt_dpm_status_t *value);
7316 /**
7317  * @fn int bluetooth_dpm_set_data_transfer_state(bt_dpm_status_t value);
7318  *
7319  * @brief Sets the Restriction for Data trasnfer.
7320  *
7321  * This function is a synchronous call.
7322  *
7323  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7324  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7325  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7326  *
7327  * @exception   None
7328  * @param[in]   value - State value.
7329  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7330  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7331  *
7332  * @remark      None
7333  */
7334 int bluetooth_dpm_set_data_transfer_state(bt_dpm_status_t value);
7335
7336
7337 /**
7338  * @fn int bluetooth_dpm_get_data_transfer_state(bt_dpm_status_t *value);
7339  *
7340  * @brief Reads the Restriction for Data trasnfer.
7341  *
7342  * This function is a synchronous call.
7343  *
7344  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7345  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7346  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7347  *
7348  * @exception   None
7349  * @param[in] None
7350  * @param[out]  value - State value.
7351  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
7352  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
7353  *
7354  * @remark      None
7355  */
7356 int bluetooth_dpm_get_data_transfer_state(bt_dpm_status_t *value);
7357
7358 /**
7359  * @fn int bluetooth_proximity_monitor_set_property(const bluetooth_device_address_t *device_address,
7360  *                                              bluetooth_pxp_poperty_t property, int value);
7361  *
7362  * @brief Sets the Proximity alert level/properties for monitor role.
7363  *
7364  * This function is a synchronous call.
7365  *
7366  * @return   BLUETOOTH_ERROR_NONE - Success \n
7367  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7368  *               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7369  *               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7370  *
7371  * @exception   None
7372  * @param[in] device_address remote device address
7373  * @param[in] property proximity profile property
7374  * @param[in] value alert level/property value to be set
7375  * @param[out] None
7376  *
7377  * @remark      None
7378  */
7379 int bluetooth_proximity_monitor_set_property(const bluetooth_device_address_t *device_address,
7380                                                         bluetooth_pxp_poperty_t property, int value);
7381
7382 /**
7383  * @fn int bluetooth_proximity_monitor_get_property(const bluetooth_device_address_t *device_address,
7384  *                                              bluetooth_pxp_poperty_t property, int *value);
7385  *
7386  * @brief Reads the Proximity alert level/properties for monitor role.
7387  *
7388  * This function is a synchronous call.
7389  *
7390  * @return   BLUETOOTH_ERROR_NONE - Success \n
7391  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7392  *               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7393  *               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7394  *
7395  * @exception   None
7396  * @param[in] device_address remote device address
7397  * @param[in] property proximity profile property
7398  * @param[out] value alert level/property value
7399  *
7400  * @remark      None
7401  */
7402 int bluetooth_proximity_monitor_get_property(const bluetooth_device_address_t *device_address,
7403                                                         bluetooth_pxp_poperty_t property, int *value);
7404
7405 /**
7406  * @fn int bluetooth_proximity_monitor_get_supported_services(const bluetooth_device_address_t *device_address,
7407  *                                              int *services_supported);
7408  *
7409  * @brief Reads the Proximity Monitor profile supported properties/services.
7410  *
7411  * This function is a synchronous call.
7412  *
7413  * @return       BLUETOOTH_ERROR_NONE - Success \n
7414  *                               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7415  *                               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7416  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7417  *
7418  * @exception   None
7419  * @param[in] device_address remote device address
7420  * @param[out] services_supported proximity profile property/service
7421  *
7422  * @remark      None
7423  */
7424 int bluetooth_proximity_monitor_get_supported_services(const bluetooth_device_address_t *device_address,
7425                                                         int *services_supported);
7426
7427 /**
7428  * @fn int bluetooth_proximity_reporter_register();
7429  *
7430  * @brief Register all proximity related services in BlueZ.
7431  *
7432  * This function is a synchronous call.
7433  *
7434  * @return       BLUETOOTH_ERROR_NONE - Success \n
7435  *                       BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7436  *
7437  * @exception   None
7438  *
7439  * @remark      None
7440  */
7441 int bluetooth_proximity_reporter_register(void);
7442
7443 /**
7444  * @fn int bluetooth_proximity_reporter_unregister();
7445  *
7446  * @brief Unregister all proximity related services in BlueZ.
7447  *
7448  * This function is a synchronous call.
7449  *
7450  * @return       BLUETOOTH_ERROR_NONE - Success \n
7451  *                       BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7452  *
7453  * @exception   None
7454  *
7455  * @remark      None
7456  */
7457 int bluetooth_proximity_reporter_unregister(void);
7458
7459 /**
7460  * @fn int bluetooth_proximity_reporter_get_property(const bluetooth_device_address_t *device_address,
7461  *                                              bluetooth_pxp_poperty_t property, int *value);
7462  *
7463  * @brief Reads the Proximity alert level/properties for reporter role.
7464  *
7465  * This function is a synchronous call.
7466  *
7467  * @return       BLUETOOTH_ERROR_NONE - Success \n
7468  *                               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7469  *                               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7470  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7471  *
7472  * @exception   None
7473  * @param[in] device_address remote device address
7474  * @param[in] property proximity profile property
7475  * @param[out] value alert level/property value
7476  *
7477  * @remark      None
7478  */
7479 int bluetooth_proximity_reporter_get_property(const bluetooth_device_address_t *device_address,
7480                                                         bluetooth_pxp_poperty_t property, int *value);
7481
7482 /**
7483  * @fn int bluetooth_tds_provider_register(void);
7484  *
7485  * @brief Register Transport Discovery Provider role.
7486  *
7487  * This function is a synchronous call.
7488  *
7489  * @return       BLUETOOTH_ERROR_NONE - Success \n
7490  *                               BLUETOOTH_ERROR_ALREADY_INITIALIZED - Already done \n
7491  *                               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter not enabled \n
7492  *                               BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7493  *
7494  * @exception   None
7495  * @param[in] None
7496  * @param[out] None
7497  *
7498  * @remark      None
7499  */
7500 int bluetooth_tds_provider_register(void);
7501
7502 /**
7503  * @fn int bluetooth_tds_provider_unregister(void);
7504  *
7505  * @brief Unregister Transport Discovery Provider role.
7506  *
7507  * This function is a synchronous call.
7508  *
7509  * @return       BLUETOOTH_ERROR_NONE - Success \n
7510  *                               BLUETOOTH_ERROR_NOT_INITIALIZED - Provider not registered \n
7511  *                               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter not enabled \n
7512  *                               BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7513  *
7514  * @exception   None
7515  * @param[in] None
7516  * @param[out] None
7517  *
7518  * @remark      None
7519  */
7520 int bluetooth_tds_provider_unregister(void);
7521
7522 /**
7523  * @fn int bluetooth_tds_provider_create(int transport, unsigned int handle);
7524  *
7525  * @brief Create Transport Discovery Provider for a transport.
7526  *
7527  * This function is a synchronous call.
7528  *
7529  * @return       BLUETOOTH_ERROR_NONE - Success \n
7530  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7531  *                               BLUETOOTH_ERROR_NOT_INITIALIZED - Provider not registered \n
7532  *                               BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7533  *
7534  * @exception   None
7535  * @param[in] Transport (BT, CUSTOM etc.)
7536  * @param[in] Unique handle for TDS provider.
7537  * @param[out] None
7538  *
7539  * @remark      None
7540  */
7541 int bluetooth_tds_provider_create(int transport, unsigned int handle);
7542
7543 /**
7544  * @fn int bluetooth_tds_provider_destroy(unsigned int handle);
7545  *
7546  * @brief Remove previously created Transport Discovery Provider.
7547  *
7548  * This function is a synchronous call.
7549  *
7550  * @return       BLUETOOTH_ERROR_NONE - Success \n
7551  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7552  *
7553  * @exception   None
7554  * @param[in] Unique handle for previously created provider.
7555  * @param[out] None
7556  *
7557  * @remark      None
7558  */
7559 int bluetooth_tds_provider_destroy(unsigned int handle);
7560
7561 /**
7562  * @fn int bluetooth_set_tds_provider_manuf_data(unsigned char *buf, unsigned int length);
7563  *
7564  * @brief Set transport block for in advertisement and gatt db.
7565  *
7566  * This function is a synchronous call.
7567  *
7568  * @return       BLUETOOTH_ERROR_NONE - Success \n
7569  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7570  *                               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter not enabled \n
7571  *                               BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7572  *
7573  * @exception   None
7574  * @param[in] Provider specific manufacturer data.
7575  * @param[in] Provider specific manufacturer data length.
7576  * @param[out] None
7577  *
7578  * @remark      None
7579  */
7580 int bluetooth_set_tds_provider_manuf_data(unsigned char *buf, unsigned int length);
7581
7582 /**
7583  * @fn int bluetooth_set_tds_provider_transport_data(unsigned int tds_handle,
7584  *              bluetooth_tds_transport_state_t state, unsigned char *buf, unsigned int length);
7585  *
7586  * @brief Set transport block for in advertisement and gatt db.
7587  *
7588  * This function is a synchronous call.
7589  *
7590  * @return       BLUETOOTH_ERROR_NONE - Success \n
7591  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7592  *                               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter not enabled \n
7593  *                               BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7594  *
7595  * @exception   None
7596  * @param[in] Unique handle for TDS provider.
7597  * @param[in] Transport state (On/Off/Not Available).
7598  * @param[in] Transport specific data block.
7599  * @param[in] Transport specific data block length.
7600  * @param[out] None
7601  *
7602  * @remark      None
7603  */
7604 int bluetooth_set_tds_provider_transport_data(unsigned int tds_handle,
7605                 bluetooth_tds_transport_state_t state, unsigned char *buf, unsigned int length);
7606
7607 /**
7608  * @fn int bluetooth_send_tds_activation_response(bluetooth_device_address_t *device_address,
7609  *              unsigned int tds_handle, int response, unsigned char *buf, unsigned int length);
7610  *
7611  * @brief Send response to TDS activation request from remoted device.
7612  *
7613  * This function is a synchronous call.
7614  *
7615  * @return       BLUETOOTH_ERROR_NONE - Success \n
7616  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7617  *                               BLUETOOTH_ERROR_NOT_INITIALIZED - Provider not registered \n
7618  *                               BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7619  *
7620  * @exception   None
7621  * @param[in] Remote device BT address.
7622  * @param[in] Unique handle for TDS provider.
7623  * @param[in] Response for TDS activation request.
7624  * @param[in] Transport specific data block to be sent in activation response.
7625  * @param[in] Data block length.
7626  * @param[out] None
7627  *
7628  * @remark      None
7629  */
7630 int bluetooth_send_tds_activation_response(bluetooth_device_address_t *device_address,
7631         unsigned int tds_handle, int response, unsigned char *buf, unsigned int length);
7632
7633 /**
7634  * @fn int bluetooth_tds_read_transport_data(bluetooth_device_address_t *device_address, const char *handle);
7635  *
7636  * @brief Reads the Complete TDS transport Blocks from Remote Provider's GATT database.
7637  *
7638  * This function is an asynchronous call.
7639  *
7640  * @return       BLUETOOTH_ERROR_NONE - Success \n
7641  *                               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7642  *                               BLUETOOTH_ERROR_INTERNAL - Internal Error \n
7643  *                               BLUETOOTH_ERROR_IN_PROGRESS - Already Read Request is pending on same provider \n
7644  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7645  *
7646  * @exception   None
7647  * @param[in] device_address remote device address
7648  * @param[in] handle attribute handle
7649  *
7650  * @remark      BLUETOOTH_EVENT_TDS_TRANSPORT_DATA_RECEIVED event is sent to pplication
7651  * when TDS data is received from Remote provider
7652  */
7653 int bluetooth_tds_read_transport_data(const bluetooth_device_address_t *device_address,
7654                                                 const char *handle);
7655
7656 /**
7657  * @fn int bluetooth_tds_enable_control_point(const bluetooth_device_address_t *device_address, const char *handle);
7658  *
7659  * @brief Enables CCCD on Remote Provider.
7660  *
7661  * This function is an asynchronous call.
7662  *
7663  * @return       BLUETOOTH_ERROR_NONE - Success \n
7664  *                               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7665  *                               BLUETOOTH_ERROR_INTERNAL - Internal Error \n
7666  *                               BLUETOOTH_ERROR_IN_PROGRESS - Already Control Point activation is ongoing to Same Provider \n
7667  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7668  *
7669  * @exception   None
7670  * @param[in] device_address remote device address
7671  * @param[in] handle attribute handle
7672  *
7673  * @remark      BLUETOOTH_EVENT_TDS_CONTROL_POINT_ENABLED event is sent to application
7674  * when Indication is enabled on Remote provider
7675  */
7676 int bluetooth_tds_enable_control_point(const bluetooth_device_address_t *device_address,
7677                                                 const char *handle);
7678
7679 /**
7680  * @fn int bluetooth_tds_activate_control_point(const bluetooth_device_address_t *device_address, const char *handle
7681  *                                                      unsigned char *buf, int length);
7682  * @brief Sends activation request for Alternate Transport enable on Remote Provider
7683  *
7684  * This function is an asynchronous call.
7685  *
7686  * @return       BLUETOOTH_ERROR_NONE - Success \n
7687  *                               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7688  *                               BLUETOOTH_ERROR_INTERNAL - Internal Error \n
7689  *                               BLUETOOTH_ERROR_IN_PROGRESS - Already Control Point activation is ongoing to Same Provider \n
7690  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7691  *
7692  * @exception   None
7693  * @param[in] device_address remote device address
7694  * @param[in] handle attribute handle
7695  * @param[in] buf Control point activation param
7696  * @param[in] param length
7697  *
7698  * @remark      BLUETOOTH_EVENT_TDS_ACTIVATION_INDICATION event is sent to application when Indication response
7699  * is received from remote Provider
7700  */
7701 int bluetooth_tds_activate_control_point(const bluetooth_device_address_t *device_address, const char *handle,
7702                                                 unsigned char *buf, int length);
7703
7704 /**
7705  * @fn int bluetooth_otp_server_init(const char *directory);
7706  *
7707  * @brief Starts OTP server.
7708  *
7709  * This function is a synchronous call.
7710  *
7711  * @return
7712  *
7713  * @exception   None
7714  * @param[in] None
7715  * @param[out]  None
7716  *
7717  * @remark      None
7718  */
7719 int bluetooth_otp_server_init(const char *directory);
7720
7721 /**
7722  * @fn int bluetooth_otp_server_deinit();
7723  *
7724  * @brief Stops OTP server.
7725  *
7726  * This function is a synchronous call.
7727  *
7728  * @return
7729  *
7730  * @exception   None
7731  * @param[in] None
7732  * @param[out]  None
7733  *
7734  * @remark      None
7735  */
7736 int bluetooth_otp_server_deinit();
7737
7738 /**
7739  * @fn int bluetooth_otp_enable_notification(const char *handle);
7740  *
7741  * @brief Enable notification for remote OACP & OLCP characteristics.
7742  *
7743  * This function is a synchronous call.
7744  *
7745  * @return
7746  *
7747  * @exception   None
7748  * @param[in] None
7749  * @param[out]  None
7750  *
7751  * @remark      None
7752  */
7753 int bluetooth_otp_enable_notification(const char *handle);
7754
7755 /**
7756  * @fn int bluetooth_otp_write_characteristics_value( const char *handle,
7757  *                                              unsigned char *buf, int length);
7758  *
7759  * @brief Write value on remote characteristics.
7760  *
7761  * This function is a synchronous call.
7762  *
7763  * @return
7764  *
7765  * @exception   None
7766  * @param[in] None
7767  * @param[out]  None
7768  *
7769  * @remark      None
7770  */
7771 int bluetooth_otp_write_characteristics_value(const char *handle,
7772                                         unsigned char *buf, int length);
7773
7774 /**
7775  * @fn int bluetooth_otp_read_characteristic_value(const char *handle);
7776  *
7777  * @brief Read value for remote characteristics.
7778  *
7779  * This function is a synchronous call.
7780  *
7781  * @return
7782  *
7783  * @exception   None
7784  * @param[in] None
7785  * @param[out]  None
7786  *
7787  * @remark      None
7788  */
7789 int bluetooth_otp_read_characteristic_value(const char *handle);
7790
7791 /**
7792  * @fn int bluetooth_otp_connect_otc(const bluetooth_device_address_t *device_address);
7793  *
7794  * @brief Read value for remote characteristics.
7795  *
7796  * This function is a synchronous call.
7797  *
7798  * @return
7799  *
7800  * @exception   None
7801  * @param[in] None
7802  * @param[out]  None
7803  *
7804  * @remark      None
7805  */
7806 int bluetooth_otp_connect_otc(const bluetooth_device_address_t *device_address);
7807
7808 /**
7809  * @fn int bluetooth_otp_disconnect_otc(const bluetooth_device_address_t *device_address);
7810  *
7811  * @brief Read value for remote characteristics.
7812  *
7813  * This function is a synchronous call.
7814  *
7815  * @return
7816  *
7817  * @exception   None
7818  * @param[in] None
7819  * @param[out]  None
7820  *
7821  * @remark      None
7822  */
7823 int bluetooth_otp_disconnect_otc(const bluetooth_device_address_t *device_address);
7824
7825 /**
7826  * @fn int bluetooth_is_le_2m_phy_supported(gboolean *is_supported)
7827  * @brief Check if Adapter supports LE 2M PHY feature or not.
7828  *
7829  * This API is used to check the whether LE Adapter supports LE 2M PHY feature, which is introduced
7830  * in BT 5.0 specification.
7831  *
7832  * This function is a synchronous call.
7833  *
7834  * @return      BLUETOOTH_ERROR_NONE - Succeess \n
7835  *              BLUETOOTH_ERROR_INVALID_PARAM -  Invalid parameter (NULL buffer) \n
7836  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED -  Adapter is disabled \n
7837  *              BLUETOOTH_ERROR_INTERNAL -  Internal error \n
7838  * @param[out]  is_supported. This boolean variable indicates whether LE 2M PHY is supported or not
7839  *
7840  * @remark      None
7841  */
7842 int bluetooth_is_le_2m_phy_supported(gboolean *is_supported);
7843
7844 /**
7845  * @fn int bluetooth_is_le_coded_phy_supported(gboolean *is_supported)
7846  * @brief Check if Adapter supports LE 2M CODED feature or not.
7847  *
7848  * This API is used to check the whether LE Adapter supports LE CODED PHY feature, which is introduced
7849  * in BT 5.0 specification.
7850  *
7851  * This function is a synchronous call.
7852  *
7853  * @return      BLUETOOTH_ERROR_NONE - Succeess \n
7854  *              BLUETOOTH_ERROR_INVALID_PARAM -  Invalid parameter (NULL buffer) \n
7855  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED -  Adapter is disabled \n
7856  *              BLUETOOTH_ERROR_INTERNAL -  Internal error \n
7857  * @param[out]  is_supported. This boolean variable indicates whether LE CODED PHY is supported or not
7858  *
7859  * @remark      None
7860  */
7861 int bluetooth_is_le_coded_phy_supported(gboolean *is_supported);
7862
7863 /**
7864  * @}
7865  */
7866
7867 #ifdef __cplusplus
7868 }
7869 #endif                          /* __cplusplus */
7870 #endif                          /* _BLUETOOTH_API_H_*/