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