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