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