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