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