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