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