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