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