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