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