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