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