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