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