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