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