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