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