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