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