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