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