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