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