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