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