iBeacon: Add support for handling iBeacon reports.
[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  * @fn int bluetooth_set_alias(const bluetooth_device_address_t *device_address, const char *alias)
3371  * @brief set alias for bonded device
3372  *
3373  *
3374  * This function set alias for bonded device.
3375  *
3376  * This function is a synchronous call.
3377  *
3378  *
3379  * @return      BLUETOOTH_ERROR_NONE - Success \n
3380  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3381  * @param[in]   device_address   This indicates an address of the remote device
3382  * @param[in]   alias                   This indicates an alias to set
3383  * @remark      None
3384  * @see         None
3385 @code
3386 int ret = 0;
3387 ret = bluetooth_set_alias(&remote_address);
3388 @endcode
3389  */
3390 int bluetooth_set_alias(const bluetooth_device_address_t *device_address,
3391                                 const char *alias);
3392
3393 /**
3394  * @fn int bluetooth_get_remote_device(const bluetooth_device_address_t *device_address)
3395  * @brief Get remote deivice
3396  *
3397  *
3398  * This function gets specific remote device.
3399  *
3400  * This function is a asynchronous call.
3401  * This API is responded by an BLUETOOTH_EVENT_REMOTE_DEVICE_READ event.
3402  *
3403  *
3404  * @return      BLUETOOTH_ERROR_NONE - Success \n
3405  *              BLUETOOTH_ERROR_NOT_SUPPORT - Operation not supported \n
3406  * @param[in]   device_address   This indicates an address of the remote device
3407  * @remark      None
3408  * @see         None
3409 @code
3410 int ret = 0;
3411 ret = bluetooth_get_remote_device(&remote_address);
3412 @endcode
3413  */
3414 int bluetooth_get_remote_device(const bluetooth_device_address_t *device_address);
3415
3416 /**
3417  * @fn int bluetooth_authorize_device(const bluetooth_device_address_t *device_address,
3418  *                                      gboolean authorized)
3419  * @brief Authorize/Unauthorize a bonded device
3420  *
3421  *
3422  * This function authorizes/unauthorize a bonded device. It decides the device to connect
3423  * with/without user confirmation.
3424  *
3425  * If we select a paired device and make it authorized by calling this API with the authorized
3426  * parameter to TRUE, then it will not ask for the user conformation before connecting. Similarly
3427  * if we unauthorize the paired device by calling this API with the authorized parameter to FALSE,
3428  * then it will ask for the user conformation before the connection.
3429  *
3430  * This API supposed to be called on the paired devices. Which means we have to use this API only
3431  * after successful pairing.
3432  *
3433  * This function is a asynchronous call.
3434  * Response will be received through BLUETOOTH_EVENT_DEVICE_AUTHORIZED event.
3435  *
3436  * @return      BLUETOOTH_ERROR_NONE - Success \n
3437  * @exception   BLUETOOTH_ERROR_INTERNAL - Cannot get the interal DBUS proxy \n
3438  * @param[in]   device_address   This indicates an address of the device to authorize \n
3439  * @param[in]   authorized      TRUE : authorize FALSE: unauthorize
3440  * @remark      None
3441  * @see         bluetooth_get_bonded_device_list
3442 @code
3443 void bt_event_callback(int event, bluetooth_event_param_t *param)
3444 {
3445         switch(event)
3446         {
3447                 case BLUETOOTH_EVENT_DEVICE_AUTHORIZED :
3448                 {
3449                         if (param->result == BLUETOOTH_ERROR_NONE)
3450                         {
3451                                 //Device authorized
3452                         }
3453                         //device authorization failed failure
3454                 }
3455         }
3456 }
3457
3458 ...
3459
3460 int ret = 0;
3461 bluetooth_device_address_t device_address={{0}};
3462 gboolean authorized;
3463
3464 authorized =TRUE;
3465
3466 ret = bluetooth_authorize_device(&device_address,authorized);
3467 @endcode
3468  */
3469 int bluetooth_authorize_device(const bluetooth_device_address_t *device_address,
3470                                        gboolean authorized);
3471
3472 int bluetooth_set_pin_code(const bluetooth_device_address_t *device_address,
3473                                 const bluetooth_device_pin_code_t *pin_code);
3474
3475 int bluetooth_unset_pin_code(const bluetooth_device_address_t *device_address);
3476
3477 /**
3478  * @fn int bluetooth_passkey_reply(char *passkey, gboolean reply)
3479  *
3480  * @brief Receives Legacy Passkey\pin with following authentication response types
3481  *
3482  * @param[in]   passkey : This is the PIN or PASSKEY string required for remote device authentication
3483  * @param[in]   reply    TRUE : Accept AUthentication FALSE: Cancels authentication
3484  *
3485  */
3486 int bluetooth_passkey_reply(char *passkey, gboolean reply);
3487
3488 /**
3489  * @fn int bluetooth_passkey_confirmation_reply(gboolean reply);
3490  *
3491  * @brief This API sends user confirmation reply to the local adapter.
3492  *
3493  * @param[in] reply TRUE : Accept AUthentication FALSE: Cancels authentication
3494  *
3495  */
3496 int bluetooth_passkey_confirmation_reply(gboolean reply);
3497
3498 /**
3499  * @fn int bluetooth_search_service(const bluetooth_device_address_t *device_address)
3500  * @brief Get all services supported by remote device
3501  *
3502  *
3503  * This API call initiates the search for the services supported by the specified device. Normally
3504  * the service search will take a couple of seconds to get it completed. Before calling this API
3505  * make sure that the Adapter is enabled. We have to give the device address of the remote device to
3506  * perform the service search. We can get the device address by doing a device discovery operation.
3507  *
3508  *
3509  * This function is a asynchronous call.
3510  * The service search request is responded by BLUETOOTH_EVENT_SERVICE_SEARCHED event.
3511  *
3512  * There is a timeout associated with the service search. The default time out is 40 seconds. If the
3513  * remove device did not respond with in the time out period the BLUETOOTH_EVENT_SERVICE_SEARCHED
3514  * event is generated with appropriate result code.
3515  *
3516  * @return      BLUETOOTH_ERROR_NONE - Success \n
3517  *              BLUETOOTH_ERROR_SERVICE_SEARCH_ERROR - Service search error (NULL device address) \n
3518  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
3519  * @param[in]   device_address   This indicates an address of the device
3520  *                               whose services need to be found
3521  * @remark      None
3522  * @see         bluetooth_cancel_service_search
3523  */
3524 int bluetooth_search_service(const bluetooth_device_address_t *device_address);
3525
3526 /**
3527  * @fn int bluetooth_cancel_service_search(void)
3528  * @brief Cancel the ongoing service search operation
3529  *
3530  *
3531  * This function cancel the ongoing service search operation. This API is usually calling after the
3532  * bluetooth_search_service API.
3533  * Normally service search will take a more time (> 5 seconds) to complete. This API will be called
3534  * if the user wish to cancel the Ongoing service search operation.
3535  *
3536  * This API should be called just after the bluetooth_search_service API and before the
3537  * BLUETOOTH_EVENT_SERVICE_SEARCHED event
3538  *
3539  * This function is a synchronous call.
3540  *
3541  * @return      BLUETOOTH_ERROR_NONE - Success \n
3542  *              BLUETOOTH_ERROR_CANCEL - Error in service search cancel operation \n
3543  *              BLUETOOTH_ERROR_NOT_PAIRED - Not paired device \n
3544  *              BLUETOOTH_ERROR_NOT_IN_OPERATION - Searching service is not in operation \n
3545  *
3546  * @remark      None
3547  * @see         bluetooth_search_service
3548 @code
3549 ...
3550
3551 int ret = 0;
3552 ret = bluetooth_cancel_service_search();
3553 @endcode
3554 */
3555 int bluetooth_cancel_service_search(void);
3556
3557 /**
3558  * @fn int bluetooth_rfcomm_create_socket(const char *uuid)
3559  * @brief Register rfcomm socket with a specific uuid
3560  *
3561  *
3562  * This API register rfcomm socket with the given UUID. The return value of this API is the socket
3563  * descriptor of the server.
3564  * This is the first API which is called to create the server. Once we created the server socket,
3565  * we will listen on that return socket.
3566  * So a bluetooth_rfcomm_listen_and_accept should follow this API call. This is a synchronous call.
3567  *
3568  *
3569  * @return  socket FD on Success \n
3570  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3571  *              BLUETOOTH_ERROR_INTERNAL - Internal error\n
3572  *              BLUETOOTH_ERROR_MAX_CONNECTION - Maximum connection reached\n
3573  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3574  * @param[in]   UUID (128 bits)
3575  *
3576  * @remark      None
3577  * @see       bluetooth_rfcomm_listen_and_accept, bluetooth_rfcomm_remove_socket
3578  *
3579  @code
3580
3581   const char *rfcomm_test_uuid="00001101-0000-1000-8000-00805F9B34FB";
3582   fd  = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
3583
3584  @endcode
3585  */
3586 int bluetooth_rfcomm_create_socket(const char *uuid);
3587
3588 /**
3589  * @fn int bluetooth_rfcomm_create_socket_ex(const char *uuid, const char *bus_name, const char *path)
3590  * @brief Register rfcomm socket with a specific uuid
3591  *
3592  *
3593  * This API register rfcomm socket with the given UUID. The return value of this API is the socket
3594  * descriptor of the server.
3595  * This is the first API which is called to create the server. Once we created the server socket,
3596  * we will listen on that return socket.
3597  * So a bluetooth_rfcomm_listen_and_accept_ex should follow this API call. This is a synchronous call.
3598  *
3599  *
3600  * @return  socket FD on Success \n
3601  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3602  *              BLUETOOTH_ERROR_INTERNAL - Internal error\n
3603  *              BLUETOOTH_ERROR_MAX_CONNECTION - Maximum connection reached\n
3604  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3605  * @param[in]   UUID (128 bits)
3606  * @param[in]   bus_name (const char)
3607  * @param[in]   path (const char)
3608  *
3609  * @remark      None
3610  * @see       bluetooth_rfcomm_listen_and_accept_ex, bluetooth_rfcomm_remove_socket
3611  *
3612  @code
3613
3614   const char *rfcomm_test_uuid="00001101-0000-1000-8000-00805F9B34FB";
3615   fd  = bluetooth_rfcomm_create_socket_ex(rfcomm_test_uuid, bus_name, path);
3616
3617  @endcode
3618  */
3619 int bluetooth_rfcomm_create_socket_ex(const char *uuid, const char *bus_name, const char *path);
3620
3621 /**
3622  * @fn int bluetooth_rfcomm_remove_socket(int socket_fd, const char *uuid)
3623  * @brief De-register the rfcomm socket
3624  *
3625  *
3626  * This API deregister rfcomm socket with the given socket fd and  UUID. If the remote device is
3627  * already connected then we will receive the BLUETOOTH_EVENT_RFCOMM_DISCONNECTED with socket
3628  * descriptor else no event will come. We will call this API only after the
3629  * bluetooth_rfcomm_listen_and_accept.
3630  * This is a synchronous call.
3631  *
3632  * @return   BLUETOOTH_ERROR_NONE - Success \n
3633  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3634  *               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
3635  *               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3636  * @param[in]  int socket_fd
3637  *
3638  * @remark      None
3639  * @see       bluetooth_rfcomm_create_socket, bluetooth_rfcomm_listen_and_accept
3640  *
3641  @code
3642  void bt_event_callback(int event, bluetooth_event_param_t *param)
3643  {
3644         switch(event)
3645         {
3646                 case BLUETOOTH_EVENT_RFCOMM_DISCONNECTED:
3647                 {
3648                         bluetooth_rfcomm_connection_t *discon_ind =
3649                                         (bluetooth_rfcomm_connection_t *)param->param_data;
3650
3651                         printf("\nDisconnected from FD %d",  discon_ind->socket_fd);
3652                 }
3653         }
3654  }
3655
3656  ...
3657
3658  int ret = 0;
3659  fd  = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
3660  ret = bluetooth_rfcomm_listen_and_accept(fd, 1);
3661  ....
3662  ret = bluetooth_rfcomm_remove_socket(fd);
3663  @endcode
3664  */
3665 int bluetooth_rfcomm_remove_socket(int socket_fd);
3666
3667 /**
3668  * @fn int bluetooth_rfcomm_remove_socket(const char *uuid)
3669  * @brief De-register the rfcomm socket
3670  *
3671  *
3672  * This API deregister rfcomm socket with the given socket UUID. If the remote device is
3673  * already connected then we will receive the BLUETOOTH_EVENT_RFCOMM_DISCONNECTED with socket
3674  * descriptor else no event will come. We will call this API only after the
3675  * bluetooth_rfcomm_listen_and_accept_ex.
3676  * This is a synchronous call.
3677  *
3678  * @return   BLUETOOTH_ERROR_NONE - Success \n
3679  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3680  *               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
3681  *               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3682  * @param[in]   UUID (128 bits)
3683  *
3684  * @remark      None
3685  * @see       bluetooth_rfcomm_create_socket_ex, bluetooth_rfcomm_listen_and_accept_ex
3686  *
3687  @code
3688  void bt_event_callback(int event, bluetooth_event_param_t *param)
3689  {
3690         switch(event)
3691         {
3692                 case BLUETOOTH_EVENT_RFCOMM_DISCONNECTED:
3693                 {
3694                         bluetooth_rfcomm_connection_t *discon_ind =
3695                                         (bluetooth_rfcomm_connection_t *)param->param_data;
3696
3697                         printf("\nDisconnected from FD %d",  discon_ind->socket_fd);
3698                 }
3699         }
3700  }
3701
3702  ...
3703
3704  int ret = 0;
3705  fd  = bluetooth_rfcomm_create_socket_ex(rfcomm_test_uuid, path, bus_name);
3706  ret = bluetooth_rfcomm_listen_and_accept_ex(rfcomm_test_uuid, 1, bus_name, path);
3707  ....
3708  ret = bluetooth_rfcomm_remove_socket_ex(rfcomm_test_uuid);
3709  @endcode
3710  */
3711 int bluetooth_rfcomm_remove_socket_ex(const char *uuid);
3712
3713 /**
3714  * @fn int bluetooth_rfcomm_server_disconnect(int socket_fd)
3715  * @brief Disconnect rfcomm connection
3716  *
3717  *
3718  * Disconnect a specific(device node fd)  RFCOMM connection. This is a Synchronous call and there
3719  * is no cabbback events for this API. We have to provice the valid client fd to disconnect from the
3720  * remote server.
3721  *
3722  * @return   BLUETOOTH_ERROR_NONE  - Success \n
3723  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3724  *              BLUETOOTH_ERROR_NOT_CONNECTED - Not connected \n
3725  * @param[in]  int socket_fd the sending socket fd
3726  *
3727  * @remark      None
3728  *
3729  @code
3730
3731   ret = bluetooth_rfcomm_server_disconnect(g_ret_fd);
3732   if (ret < 0)
3733         printf("Disconnection failed");
3734   else
3735   printf("Disconnection Success");
3736
3737  @endcode
3738  */
3739 int bluetooth_rfcomm_server_disconnect(int socket_fd);
3740
3741 /**
3742  * @fn int bluetooth_rfcomm_listen_and_accept(int socket_fd,int max_pending_connection)
3743  * @brief Rfcomm socket listen
3744  *
3745  *
3746  * This API make rfcomm socket listen and accept with socket. We will call this API immediatly
3747  * after the bluetooth_rfcomm_create_socket API.
3748  * This API listen for the incomming connection and once it receives a connection, it will give
3749  * BLUETOOTH_EVENT_RFCOMM_CONNECTED
3750  * event to the application. This is an Asynchronous API call.
3751  *
3752  *
3753  * @return  BLUETOOTH_ERROR_NONE - Success \n
3754  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3755  *              BLUETOOTH_ERROR_CONNECTION_ERROR - Listen failed \n
3756
3757  * @param[in]  int socket_fd
3758  * @param[in]  max pending connection.
3759  *
3760  * @remark      None
3761  * @see       bluetooth_rfcomm_create_socket
3762  *
3763   @code
3764   void bt_event_callback(int event, bluetooth_event_param_t* param)
3765  {
3766         switch(event)
3767         {
3768                 case BLUETOOTH_EVENT_RFCOMM_CONNECTED:
3769                 {
3770                         bluetooth_rfcomm_connection_t *conn_ind =
3771                                                 (bluetooth_rfcomm_connection_t *)param->param_data;
3772
3773                         printf("\nConnected from FD %d",  conn_ind->socket_fd);
3774                 }
3775         }
3776  }
3777
3778  ...
3779
3780  int ret = 0;
3781  fd  = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
3782  ret = bluetooth_rfcomm_listen_and_accept(fd, 1);
3783
3784  @endcode
3785  */
3786 int bluetooth_rfcomm_listen_and_accept(int socket_fd, int max_pending_connection);
3787
3788 /**
3789  * @fn int bluetooth_rfcomm_listen_and_accept_ex(const char *uuid, int max_pending_connection, const char *bus_name, const char *path)
3790  * @brief Rfcomm socket listen
3791  *
3792  *
3793  * This API make rfcomm socket listen and accept with socket. We will call this API immediatly
3794  * after the bluetooth_rfcomm_create_socket API.
3795  * This API listen for the incomming connection and once it receives a connection, it will give
3796  * BLUETOOTH_EVENT_RFCOMM_CONNECTED
3797  * event to the application. This is an Asynchronous API call.
3798  *
3799  *
3800  * @return  BLUETOOTH_ERROR_NONE - Success \n
3801  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3802  *              BLUETOOTH_ERROR_CONNECTION_ERROR - Listen failed \n
3803
3804  * @param[in]  int socket_fd
3805  * @param[in]  max pending connection.
3806  * @param[in]  name
3807  * @param[in]  path
3808  *
3809  * @remark      None
3810  * @see       bluetooth_rfcomm_create_socket_ex
3811  *
3812   @code
3813   void bt_event_callback(int event, bluetooth_event_param_t* param)
3814  {
3815         switch(event)
3816         {
3817                 case BLUETOOTH_EVENT_RFCOMM_CONNECTED:
3818                 {
3819                         bluetooth_rfcomm_connection_t *conn_ind =
3820                                                 (bluetooth_rfcomm_connection_t *)param->param_data;
3821
3822                         printf("\nConnected from FD %d",  conn_ind->socket_fd);
3823                 }
3824         }
3825  }
3826
3827  ...
3828
3829  int ret = 0;
3830  fd  = bluetooth_rfcomm_create_socket_ex(rfcomm_test_uuid);
3831  ret = bluetooth_rfcomm_listen_and_accept_ex(rfcomm_test_uuid, 1, bus_name, path);
3832
3833  @endcode
3834  */
3835
3836 int bluetooth_rfcomm_listen_and_accept_ex(const char *uuid, int max_pending_connection, const char *bus_name, const char *path);
3837
3838 /**
3839  * @fn int bluetooth_rfcomm_listen(int socket_fd,int max_pending_connection)
3840  * @brief Rfcomm socket listen
3841  *
3842  *
3843  * This API make rfcomm socket listen and accept with socket. We will call this API immediatly
3844  * after the bluetooth_rfcomm_create_socket API.
3845  * This API listen for the incomming connection and once it receives a connection, it will give
3846  * BLUETOOTH_EVENT_RFCOMM_AUTHORIZE
3847  * event to the application. This is an Asynchronous API call.
3848  *
3849  *
3850  * @return  BLUETOOTH_ERROR_NONE - Success \n
3851  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3852  *              BLUETOOTH_ERROR_CONNECTION_ERROR - Listen failed \n
3853
3854  * @param[in]  int socket_fd
3855  * @param[in]  max pending connection.
3856  *
3857  * @remark      None
3858  * @see       bluetooth_rfcomm_create_socket
3859  *
3860   @code
3861   void bt_event_callback(int event, bluetooth_event_param_t* param)
3862  {
3863         switch(event)
3864         {
3865                 case BLUETOOTH_EVENT_RFCOMM_AUTHORIZE:
3866                 {
3867                         char *name = (char *)param->param_data;
3868
3869                         printf("\nConnected from %s",  name);
3870
3871                         bluetooth_rfcomm_accept_connection();
3872                 }
3873         }
3874  }
3875
3876  ...
3877
3878  int ret = 0;
3879  fd  = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
3880  ret = bluetooth_rfcomm_listen(fd, 1);
3881
3882  @endcode
3883  */
3884 int bluetooth_rfcomm_listen(int socket_fd, int max_pending_connection);
3885
3886 /**
3887  * @fn int bluetooth_rfcomm_accept_connection()
3888  * @brief Accepts the authorization request indicated by the event
3889   * BLUETOOTH_EVENT_RFCOMM_AUTHORIZE.
3890  *
3891  * This function is a synchronous call.
3892  *
3893  * @return   BLUETOOTH_ERROR_NONE  - Success \n
3894  *              BLUETOOTH_ERROR_INTERNAL - Internal error \n
3895  *
3896  * @param[in]  the socket fd of the server
3897  * @param[out]  the socket fd of the client
3898  *
3899  * @exception   None
3900  * @remark       None
3901  * @see           bluetooth_rfcomm_reject_connection
3902  */
3903 int bluetooth_rfcomm_accept_connection(int server_fd);
3904
3905 /**
3906  * @fn int bluetooth_rfcomm_reject_connection()
3907  * @brief Rejects the authorization request indicated by the event
3908   * BLUETOOTH_EVENT_RFCOMM_AUTHORIZE.
3909  *
3910  * This function is a synchronous call.
3911  *
3912  * @return   BLUETOOTH_ERROR_NONE  - Success \n
3913  *              BLUETOOTH_ERROR_INTERNAL - Internal error \n
3914  *
3915  * @param[in]  the socket fd of the server
3916  *
3917  * @exception   None
3918  * @remark       None
3919  * @see           bluetooth_rfcomm_accept_connection
3920  */
3921 int bluetooth_rfcomm_reject_connection(int server_fd);
3922
3923 /**
3924  * @fn gboolean bluetooth_rfcomm_is_server_uuid_available(const char *uuid)
3925  * @brief Informs whether rfcomm server uuid is available or not.
3926  *
3927  * This function is a synchronous call.
3928  *
3929  * @return   TRUE  - RFCOMM uuid is available \n
3930  *              FALSE - RFCOMM uuid is not available \n
3931  *
3932  * @param[in]  uuid UUID string
3933  *
3934  * @exception   None
3935  *
3936  * @remark       None
3937  */
3938 gboolean bluetooth_rfcomm_is_server_uuid_available(const char *uuid);
3939
3940 /**
3941  * @fn int bluetooth_rfcomm_connect(const bluetooth_device_address_t  *remote_bt_address,
3942  *                                                                      const char *remote_uuid)
3943  * @brief Connect to the remote device rfcomm *
3944  *
3945  * Connect to a specific RFCOMM based service on a remote device UUID. This is a Async call. Once
3946  * the connection is successful callback BLUETOOTH_EVENT_RFCOMM_CONNECTED events is generated,
3947  * which contains the socket_fd, device role (RFCOMM_ROLE_SERVER/RFCOMM_ROLE_CLIENT), device addess
3948  * etc. The socket_fd can be further used to send the data. It better to do a sevice search before
3949  * initiating a connection.
3950  *
3951  * @return  BLUETOOTH_ERROR_NONE  - Success \n
3952  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3953  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3954  *              BLUETOOTH_ERROR_CONNECTION_BUSY - Connection in progress \n
3955  *              BLUETOOTH_ERROR_INTERNAL - Internal Error\n
3956  * @param[in]  bluetooth_device_address_t remote bt_address
3957  * @param[in]  char remote uuid
3958  * @remark      None
3959  * @see         bluetooth_rfcomm_disconnect, bluetooth_rfcomm_write, bluetooth_search_service
3960  *
3961  @code
3962
3963  void bt_event_callback(int event, bluetooth_event_param_t *param)
3964  {
3965         switch(event)
3966         {
3967                 case BLUETOOTH_EVENT_SERVICE_SEARCHED:
3968                 {
3969                         if (param->result >= BLUETOOTH_ERROR_NONE)
3970                         {
3971                                 bt_sdp_info_t *bt_sdp_info=param->param_data;
3972
3973                                 printf("Dev add = %2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n",
3974                                         bt_sdp_info->device_addr.addr[0],
3975                                         bt_sdp_info->device_addr.addr[1],
3976                                         bt_sdp_info->device_addr.addr[2],
3977                                         bt_sdp_info->device_addr.addr[3],
3978                                         bt_sdp_info->device_addr.addr[4],
3979                                         bt_sdp_info->device_addr.addr[5]);
3980
3981                                         printf("Supported service list:\n");
3982                                         for(i=0; i<bt_sdp_info->service_index; i++)
3983                                                 printf("[%#x]\n",
3984                                                         bt_sdp_info->service_list_array[i]);
3985
3986                                 //Alternate method
3987                                 //ret = bluetooth_rfcomm_connect(bt_sdp_info->device_addr,
3988                                                                                 //rfcomm_test_uuid);
3989                         }
3990                         break;
3991                 }
3992                 case BLUETOOTH_EVENT_RFCOMM_CONNECTED:
3993                 {
3994                         bluetooth_rfcomm_connection_t *conn_ind =
3995                                                 (bluetooth_rfcomm_connection_t *)param->param_data;
3996
3997                         printf("\nConnected from FD %d, Role = %s",  conn_ind->socket_fd,
3998                                                 (conn_ind->device_role == RFCOMM_ROLE_SERVER) ?
3999                                                                         "SERVER" : "CLIENT");
4000                 }
4001         }
4002  }
4003
4004   bluetooth_device_address_t remote_address = {{0},};
4005   remote_address.addr[0] = 0x0; remote_address.addr[1] = 0x0A; remote_address.addr[2] = 0x3A;
4006   remote_address.addr[3]= 0x54; remote_address.addr[4] = 0x19;  remote_address.addr[5]= 0x36;
4007   ret = bluetooth_search_service(&remote_address);
4008  if (ret < 0)
4009         printf("Seach failed, Reason = %d", ret);
4010   else
4011          printf("Search Success, Ret = %d", ret);
4012
4013   ret = bluetooth_rfcomm_connect(&remote_address, rfcomm_test_uuid);
4014   if (ret < 0)
4015         printf("Connection failed, Reason = %d", ret);
4016   else
4017          printf("Connection Success, Ret = %d", ret);
4018
4019   @endcode
4020   */
4021 int bluetooth_rfcomm_connect(const bluetooth_device_address_t *remote_bt_address,
4022                                      const char *remote_uuid);
4023
4024 /**
4025  * @fn int bluetooth_rfcomm_disconnect(int socket_fd)
4026  * @brief Disconnect rfcomm connection
4027  *
4028  *
4029  * Disconnect a specific(device node fd)  RFCOMM connection. This is a Synchronous call and there
4030  * is no cabbback events for this API. We have to provice the valid client fd to disconnect from the
4031  * remote server.
4032  *
4033  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4034  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4035  *              BLUETOOTH_ERROR_NOT_CONNECTED - Not connected \n
4036  * @param[in]  char remote bt_address
4037  *
4038  * @remark      None
4039  * @see         bluetooth_rfcomm_connect
4040  *
4041  @code
4042
4043   ret = bluetooth_rfcomm_disconnect(g_ret_fd);
4044   if (ret < 0)
4045         printf("Disconnection failed");
4046   else
4047   printf("Disconnection Success");
4048
4049  @endcode
4050  */
4051
4052 int bluetooth_rfcomm_disconnect(int socket_fd);
4053
4054 /**
4055  * @fn int bluetooth_rfcomm_write (int fd, const char *buff, int length)
4056  * @brief Write to rfcomm connection
4057  *
4058  *
4059  * This API is used to send the data over the rfcomm connection. This is a synchronous API. The same
4060  * API is used to send the data for server and the client.
4061  *
4062  * @return  BLUETOOTH_ERROR_NONE  - Success \n
4063  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4064  *              BLUETOOTH_ERROR_NOT_IN_OPERATION - The Fd is currently not in operation\n
4065  * @param[in]  int fd
4066  * @param[in]  const char *buff  Data buffer to send
4067  * @param[in]  int length Length of the data
4068  *
4069  * @remark      None
4070  * @see         bluetooth_rfcomm_connect
4071  *
4072   @code
4073   char *buff = "Test data 123456789"
4074   ret =  bluetooth_rfcomm_write(g_ret_fd, buff, 15);
4075   if (ret < 0)
4076         printf("Send failed");
4077   else
4078    printf("Send success");
4079
4080  @endcode
4081  */
4082 int bluetooth_rfcomm_write(int fd, const char *buf, int length);
4083
4084 /**
4085  * @fn gboolean bluetooth_rfcomm_is_client_connected(void)
4086  * @brief Informs whether rfcomm client is connected.
4087  *
4088  * This function is a synchronous call.
4089  *
4090  * @return   TRUE  - RFCOMM client is connected \n
4091  *              FALSE - RFCOMM client is not connected \n
4092  *
4093  * @exception   None
4094  *
4095  * @remark       None
4096  */
4097 gboolean bluetooth_rfcomm_is_client_connected(void);
4098 int bluetooth_rfcomm_client_is_connected(const bluetooth_device_address_t *device_address, gboolean *connected);
4099 int bluetooth_rfcomm_server_is_connected(const bluetooth_device_address_t *device_address, gboolean *connected);
4100
4101 /**
4102  * @fn int bluetooth_network_activate_server(void)
4103  * @brief Activate the NAP (Network Access Point) service
4104  *
4105  * This function is a asynchronous call.
4106  * The activate server request is responded by BLUETOOTH_EVENT_NETWORK_SERVER_ACTIVATED event.
4107  *
4108  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4109  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4110  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4111  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4112  *
4113  * @remark      None
4114   * @see        bluetooth_network_deactivate_server
4115  *
4116  */
4117 int bluetooth_network_activate_server(void);
4118
4119 /**
4120  * @fn int bluetooth_network_deactivate_server(void)
4121  * @brief Deactivate the NAP (Network Access Point) service
4122  *
4123  * This function is a asynchronous call.
4124  * The deactivate server request is responded by BLUETOOTH_EVENT_NETWORK_SERVER_DEACTIVATED event.
4125  *
4126  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4127  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4128  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4129  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4130  *
4131  * @remark      None
4132  * @see         bluetooth_network_activate_server
4133  *
4134  */
4135 int bluetooth_network_deactivate_server(void);
4136
4137 /**
4138  * @fn int bluetooth_network_connect(const bluetooth_device_address_t *device_address,
4139  *                                      bluetooth_network_role_t role,
4140  *                                      char  custom_uuid)
4141  * @brief Connect the network server in the peer
4142  *
4143  * This function is a asynchronous call.
4144  * The network connect request is responded by BLUETOOTH_EVENT_NETWORK_CONNECTED event.
4145  *
4146  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4147  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4148  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4149  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4150  *
4151  * @exception   None
4152  * @param[in]  device_address   This indicates an address of the device with which the pairing
4153  *                              should be initiated
4154  * @param[in]  role   The role to connect. PANU / GN / NAP / CUSTOM. If use the CUSTOM value,
4155  *                      need to use the third parameter.
4156  * @param[in]  custom_uuid   If use the CUSTOM value in second parameter, use this parameter to
4157  *                              connect. UUID string
4158  * @remark      None
4159  * @see         bluetooth_network_disconnect
4160  */
4161 int bluetooth_network_connect(const bluetooth_device_address_t *device_address,
4162                                       bluetooth_network_role_t role, char *custom_uuid);
4163
4164 /**
4165  * @fn int bluetooth_network_disconnect(const bluetooth_device_address_t *device_address,
4166  *                                                      bluetooth_network_role_t role,
4167  *                                                        char *custom_uuid)
4168  * @brief Connect the network server in the peer
4169  *
4170  * This function is a asynchronous call.
4171  * The network disconnect request is responded by BLUETOOTH_EVENT_NETWORK_CONNECTED event.
4172  *
4173  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4174  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4175  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4176  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4177  *
4178  * @exception   None
4179  * @param[in]   device_address   This indicates an address of the device with which the pairing
4180  *                                      should be initiated
4181  * @remark       None
4182  * @see         bluetooth_network_connect
4183  */
4184 int bluetooth_network_disconnect(const bluetooth_device_address_t *device_address);
4185
4186 /**
4187  * @fn int bluetooth_network_server_disconnect(const bluetooth_device_address_t *device_address)
4188  * @brief Disconnect the device from the network
4189  *
4190  * This function is an asynchronous call.
4191  * The network server disconnect request is responded by
4192  * BLUETOOTH_EVENT_NETWORK_SERVER_DISCONNECTED event.
4193  *
4194  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4195  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4196  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4197  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4198  *
4199  * @exception   None
4200  * @param[in]   device_address   This indicates an address of the connected client device
4201  * @remark       None
4202  * @see         bluetooth_network_activate_server
4203  */
4204 int bluetooth_network_server_disconnect(const bluetooth_device_address_t *device_address);
4205
4206 /*HDP - API's*/
4207
4208 /**
4209  * @fn int bluetooth_hdp_activate(unsigned short  data_type,
4210  *                                      bt_hdp_role_type_t role,
4211  *                                      bt_hdp_qos_type_t channel_type,
4212  *                                      char **app_handle)
4213  * @brief Activate the HDP service for a particular data type
4214  *
4215  * This function is a synchronous call.
4216  *
4217  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4218  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4219  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4220  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4221  *
4222  * @exception   None
4223  * @param[in]  data_type   The data type against corresponding service
4224  * @param[in]  role   The role of HDP. HDP_ROLE_SOURCE/HDP_ROLE_SINK.
4225  * @param[in]  channel_type   The QOS type for the channel.
4226  *                              HDP_QOS_RELIABLE/HDP_QOS_STREAMING/HDP_QOS_ANY.
4227  *                              For role = HDP_ROLE_SINK, the channel_type
4228  *                              should be HDP_QOS_ANY.
4229  * @param[out]  app_handle    The application handler against corresponding service
4230  * @remark       None
4231  * @see            bluetooth_hdp_deactivate
4232  */
4233 int bluetooth_hdp_activate(unsigned short  data_type,
4234                                 bt_hdp_role_type_t role,
4235                                 bt_hdp_qos_type_t channel_type,
4236                                 char **app_handle);
4237 /**
4238  * @fn int bluetooth_hdp_deactivate(const char *app_handle)
4239  * @brief Deactivate the HDP service for a particular service using the handler
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]  app_handle   The application handler against corresponding service
4250  * @remark       None
4251  * @see            bluetooth_hdp_deactivate
4252  */
4253 int bluetooth_hdp_deactivate(const char *app_handle);
4254
4255 /**
4256  * @fn int bluetooth_hdp_send_data(unsigned int channel_id,
4257  *                                      const char *buffer, unsigned int size)
4258  * @brief Send data to the remote HDP device
4259  *
4260  * This function is a synchronous call.
4261  *
4262  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4263  *             BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4264  *             BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4265  *             BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4266  *             BLUETOOTH_ERROR_NOT_IN_OPERATION - FD is invalid  \n
4267  *
4268  * @exception   None
4269  * @param[in]  channel_id   The channel id for the connection.
4270  * @param[in]  buffer   The pdu buffer.
4271  * @param[in]  size   Size of the buffer.
4272  * @remark       None
4273  * @see            bluetooth_hdp_connect
4274  */
4275 int bluetooth_hdp_send_data(unsigned int channel_id,
4276                                 const char *buffer, unsigned int size);
4277 /**
4278  * @fn int bluetooth_hdp_connect(const char *app_handle,
4279  *                              bt_hdp_qos_type_t channel_type,
4280  *                              const bluetooth_device_address_t *device_address)
4281  * @brief Connect to the remote device(Mainly used by source)
4282  *
4283  * This function is a asynchronous call.
4284  * The HDP activate is responded by BLUETOOTH_EVENT_HDP_CONNECTED event.
4285  *
4286  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4287  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4288  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4289  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4290  *              BLUETOOTH_ERROR_MEMORY_ALLOCATION -Memory allocation failed \n
4291  *
4292  * @exception   None
4293  * @param[in]  app_handle   The application handler against corresponding service
4294  * @param[in]  channel_type   The QOS type for the channel.
4295  *                              HDP_QOS_RELIABLE/HDP_QOS_STREAMING.
4296  * @param[in]  device_address   The remote device Bd address.
4297  *
4298  * @remark       None
4299  * @see            bluetooth_hdp_disconnect
4300  */
4301 int bluetooth_hdp_connect(const char *app_handle,
4302                         bt_hdp_qos_type_t channel_type,
4303                         const bluetooth_device_address_t *device_address);
4304 /**
4305  * @fn int bluetooth_hdp_disconnect(unsigned int channel_id,
4306  *                      const bluetooth_device_address_t *device_address)
4307  * @brief Disconnect from 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_DISCONNECTED 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]  channel_id    The channel id for the connection.
4320  * @param[in]  device_address   The remote device Bd address.
4321  *
4322  * @remark       None
4323  * @see            bluetooth_hdp_connect
4324  */
4325 int bluetooth_hdp_disconnect(unsigned int channel_id,
4326                         const bluetooth_device_address_t  *device_address);
4327
4328
4329 /**
4330  * @fn int bluetooth_opc_init(void)
4331  * @brief Initialize OPP client.
4332  *
4333  * This function is a synchronous call.
4334  * No event corresponding to this api
4335  *
4336  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4337  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4338  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4339  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4340   *             BLUETOOTH_ERROR_ACCESS_DENIED -Memory allocation failed \n
4341  *
4342  * @exception   None
4343  *
4344  * @remark       None
4345  * @see           bluetooth_opc_deinit
4346  */
4347 int bluetooth_opc_init(void);
4348
4349 /**
4350  * @fn int bluetooth_opc_deinit(void)
4351  * @brief Deinitialize OPP client.
4352  *
4353  * This function is a synchronous call.
4354  * No event corresponding to this api
4355  *
4356  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4357  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4358  *              BLUETOOTH_ERROR_ACCESS_DENIED -Memory allocation failed \n
4359  *
4360  * @exception   None
4361  *
4362  * @remark       None
4363  * @see           bluetooth_opc_init
4364  */
4365
4366  int bluetooth_opc_deinit(void);
4367
4368 /**
4369  * @fn int bluetooth_opc_push_files(bluetooth_device_address_t *remote_address,
4370                                         char **file_name_array)
4371  * @brief Send multiple files to a remote device.
4372  *
4373  * This function is a asynchronous call.
4374  * This api  is responded by BLUETOOTH_EVENT_OPC_CONNECTED event.
4375  *
4376  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4377  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4378  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4379  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4380  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4381  *              BLUETOOTH_ERROR_IN_PROGRESS -Already one push in progress \n
4382  *              BLUETOOTH_ERROR_ACCESS_DENIED - Not allowed by MDM policy \n
4383  *
4384  * @exception   None
4385  * @param[in]  device_address   The remote device Bd address.
4386  * @param[in]  file_name_array  Array of filepaths to be sent.
4387  *
4388  * @remark       None
4389  * @see          bluetooth_opc_cancel_push
4390  */
4391
4392 int bluetooth_opc_push_files(bluetooth_device_address_t *remote_address,
4393                                 char **file_name_array);
4394
4395 /**
4396  * @fn int bluetooth_opc_cancel_push(void)
4397  * @brief Cancels the ongoing file push.
4398  *
4399  * This function is a asynchronous call.
4400  * This api is responded with either BLUETOOTH_EVENT_OPC_CONNECTED or
4401  * BLUETOOTH_EVENT_OPC_TRANSFER_COMPLETED event.
4402  *
4403  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4404  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4405  *              BLUETOOTH_ERROR_ACCESS_DENIED - No push in progress \n
4406  *
4407  * @exception   None
4408  *
4409  * @remark       None
4410  * @see           bluetooth_opc_push_files
4411  */
4412
4413 int bluetooth_opc_cancel_push(void);
4414
4415 /**
4416  * @fn gboolean bluetooth_opc_session_is_exist(void)
4417  * @brief Informs whether opc session exists or not.
4418  *
4419  * This function is a synchronous call.
4420  *
4421  * @return   TRUE  - OPC session exists \n
4422  *              FALSE - OPC session does not exist \n
4423  *
4424  * @exception   None
4425  *
4426  * @remark       None
4427  * @see          None
4428  */
4429
4430 gboolean bluetooth_opc_session_is_exist(void);
4431
4432 /**
4433  * @fn int bluetooth_opc_is_sending(gboolean *is_sending)
4434  * @brief Informs whether opc session exists or not.
4435  *
4436  * This function is a synchronous call.
4437  *
4438  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4439  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4440  *               BLUETOOTH_ERROR_INTERNAL \n
4441  *
4442  * @exception   None
4443  * @param[out] is_sending The sending status: (@c TRUE = in sending , @c  false = not in sending)
4444  *
4445  * @remark       None
4446  * @see            None
4447  */
4448 int bluetooth_opc_is_sending(gboolean *is_sending);
4449
4450 /**
4451  * @fn int bluetooth_opp_get_transfer_progress(bluetooth_opp_transfer_type_t transfer_type,
4452                 int transfer_id, unsigned char *progress)
4453  * @brief Gets the percentage progress for ongoing transfers.
4454  *
4455  * This function is a synchronous call.
4456  *
4457  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4458  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4459  *               BLUETOOTH_ERROR_NOT_FOUND - Not found \n
4460  *
4461  * @exception   None
4462  * @param[in] transfer_type     Transfer Type: (@c BLUETOOTH_TRANSFER_INBOUND = receiving , @c  BLUETOOTH_TRANSFER_OUTBOUND = sending)
4463  * @param[in] transfer_id       Transfer ID
4464  * @param[out] progress         Percentage Progress
4465  * @remark       None
4466  * @see            None
4467  */
4468 int bluetooth_opp_get_transfer_progress(bluetooth_opp_transfer_type_t transfer_type,
4469                 int transfer_id, unsigned char *progress);
4470
4471 /**
4472  * @fn int bluetooth_obex_server_init(const char *dst_path)
4473  * @brief Initialize OPP and FTP server.
4474  *
4475  * This function is a synchronous call.
4476  * No event corresponding to this api
4477  *
4478  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4479  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4480  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4481  *              BLUETOOTH_ERROR_AGENT_ALREADY_EXIST - Obex agent already registered \n
4482  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4483  *
4484  * @exception   None
4485  * @param[in]  dst_path   OPS destination file path.
4486  * @remark       None
4487  * @see           bluetooth_obex_server_deinit
4488  */
4489 int bluetooth_obex_server_init(const char *dst_path);
4490
4491
4492 /**
4493  * @fn int bluetooth_obex_server_deinit(void)
4494  * @brief Deinitialize OPP and FTP server.
4495  *
4496  * This function is a synchronous call.
4497  * No event corresponding to this api
4498  *
4499  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4500  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4501  *              BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4502  *
4503  * @exception   None
4504  *
4505  * @remark       None
4506  * @see           bluetooth_obex_server_init
4507  */
4508 int bluetooth_obex_server_deinit(void);
4509
4510
4511 /**
4512  * @fn gboolean bluetooth_obex_server_is_activated(void)
4513  * @brief Informs whether obex server is activated or not.
4514  *
4515  * This function is a synchronous call.
4516  *
4517  * @return   TRUE  - OBEX server is activated \n
4518  *              FALSE - OBEX server is not activated \n
4519  *
4520  * @exception   None
4521  *
4522  * @remark       None
4523  */
4524
4525 gboolean bluetooth_obex_server_is_activated(void);
4526
4527
4528 /**
4529  * @fn int bluetooth_obex_server_init_without_agent(const char *dst_path)
4530  * @brief Initialize OPP and FTP server without the conneciton authorization of the agent
4531  *
4532  * This function is a synchronous call.
4533  * No event corresponding to this api
4534  *
4535  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4536  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4537  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4538  *              BLUETOOTH_ERROR_AGENT_ALREADY_EXIST - Obex agent already registered \n
4539  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4540  *
4541  *
4542  * @exception   None
4543  * @param[in]  dst_path   OPS destination file path.
4544  * @remark       None
4545  * @see           bluetooth_obex_server_deinit_without_agent
4546  */
4547 int bluetooth_obex_server_init_without_agent(const char *dst_path);
4548
4549
4550 /**
4551  * @fn int bluetooth_obex_server_deinit_without_agent(void)
4552  * @brief Deinitialize OPP and FTP server without the conneciton authorization of the agent
4553  *
4554  * This function is a synchronous call.
4555  * No event corresponding to this api
4556  *
4557  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4558  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4559  *              BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4560  *
4561  * @exception   None
4562  *
4563  * @remark       None
4564  * @see           bluetooth_obex_server_init_without_agent
4565  */
4566 int bluetooth_obex_server_deinit_without_agent(void);
4567
4568
4569 /**
4570  * @fn int bluetooth_obex_server_accept_connection(void)
4571  * @brief Accepts the authorization request indicated by the event
4572   * BLUETOOTH_EVENT_OBEX_SERVER_CONNECTION_AUTHORIZE.
4573  *
4574  * This function is a synchronous call.
4575  *
4576  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4577  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4578  *              BLUETOOTH_ERROR_INTERNAL - Internal error \n
4579  *
4580  * @exception   None
4581  * @remark       None
4582  * @see           bluetooth_obex_server_reject_authorize
4583  */
4584 int bluetooth_obex_server_accept_connection(void);
4585
4586
4587 /**
4588  * @fn int bluetooth_obex_server_reject_connection(void)
4589  * @brief Rejects the authorization request indicated by the event
4590   * BLUETOOTH_EVENT_OBEX_SERVER_CONNECTION_AUTHORIZE.
4591  *
4592  * This function is a synchronous call.
4593  *
4594  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4595  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4596  *              BLUETOOTH_ERROR_INTERNAL - Internal error \n
4597  *
4598  * @exception   None
4599  * @remark       None
4600  * @see           bluetooth_obex_server_reject_authorize
4601  */
4602 int bluetooth_obex_server_reject_connection(void);
4603
4604
4605 /**
4606  * @fn int bluetooth_obex_server_accept_authorize(const char *filename)
4607  * @brief Accepts the authorization request indicated by the event
4608   * BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_AUTHORIZE.
4609  *
4610  * This function is a asynchronous call.
4611  * This api will be responded with the event BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_STARTED.
4612  *
4613  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4614  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4615  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4616  *              BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4617  *
4618  * @exception   None
4619  * @param[in]  filename   Authorized filename.
4620
4621  * @remark       None
4622  * @see           bluetooth_obex_server_reject_authorize
4623  */
4624
4625 int bluetooth_obex_server_accept_authorize(const char *filename);
4626
4627 /**
4628  * @fn int bluetooth_obex_server_reject_authorize(void)
4629  * @brief Reject the authorization request indicated by the event
4630   * BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_AUTHORIZE.
4631  *
4632  * This function is a asynchronous call.
4633  * No event for this api..
4634  *
4635  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4636  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4637  *              BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4638  *
4639  * @exception   None
4640
4641  * @remark       None
4642  * @see           bluetooth_obex_server_accept_authorize
4643  */
4644
4645 int bluetooth_obex_server_reject_authorize(void);
4646
4647 /**
4648  * @fn int bluetooth_obex_server_set_destination_path(const char *dst_path)
4649  * @brief Set the OPS destination file path..
4650  *
4651  * This function is a asynchronous call.
4652  * No event for this api..
4653  *
4654  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4655  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4656  *              BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4657  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid Param \n
4658  *
4659  * @exception   None
4660  * @param[in]  dst_path   OPS destination file path.
4661
4662  * @remark       None
4663  * @see          None
4664  */
4665
4666 int bluetooth_obex_server_set_destination_path(const char *dst_path);
4667
4668 /**
4669  * @fn int bluetooth_obex_server_set_root(const char *root)
4670  * @brief Set the FTS root folder..
4671  *
4672  * This function is a asynchronous call.
4673  * No event for this api..
4674  *
4675  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4676  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4677  *              BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4678  *              BLUETOOTH_ERROR_ACCESS_DENIED - Operation not allowed \n
4679  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4680  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4681  *
4682  * @exception  None
4683  * @param[in]   root   FTS root folder.
4684
4685  * @remark       None
4686  * @see          None
4687  */
4688
4689 int bluetooth_obex_server_set_root(const char *root);
4690
4691 /**
4692  * @fn int bluetooth_obex_server_cancel_transfer(int transfer_id)
4693  * @brief Cancel the transfer on server
4694  *
4695  * This function is an asynchronous call.
4696  * If the function call that cancels transfer is successful, the application would receive
4697  * BLUETOOTH_EVENT_TRANSFER_COMPLETED event through registered callback
4698  * function with an error code BLUETOOTH_ERROR_CANCEL. In the case of failure
4699  * the error code will be BLUETOOTH_ERROR_NONE
4700  *
4701  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4702  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4703  *               BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4704  *               BLUETOOTH_ERROR_INTERNAL - internal error (proxy does not exist) \n
4705  *               BLUETOOTH_ERROR_NOT_FOUND - The transfer is not found \n
4706  *
4707  * @exception None
4708  * @param[in] transfer_id transfer ID
4709
4710  * @remark       None
4711  * @see          None
4712  */
4713 int bluetooth_obex_server_cancel_transfer(int transfer_id);
4714
4715
4716 /**
4717  * @fn int bluetooth_obex_server_cancel_all_transfers(void)
4718  * @brief Cancel the transfer on server
4719  *
4720  * This function is an asynchronous call.
4721  * If the function call that cancels transfer is successful, the application would receive
4722  * BLUETOOTH_EVENT_TRANSFER_COMPLETED event through registered callback
4723  * function with an error code BLUETOOTH_ERROR_CANCEL. In the case of failure
4724  * the error code will be BLUETOOTH_ERROR_NONE
4725  *
4726  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4727  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4728  *               BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4729  *               BLUETOOTH_ERROR_INTERNAL - internal error (proxy does not exist) \n
4730  *               BLUETOOTH_ERROR_NOT_FOUND - The transfer is not found \n
4731  *
4732  * @exception None
4733  *
4734  * @remark       None
4735  * @see          None
4736  */
4737 int bluetooth_obex_server_cancel_all_transfers(void);
4738
4739
4740 /**
4741  * @fn int bluetooth_obex_server_is_receiving(gboolean *is_receiving)
4742  * @brief Informs whether obex server is receiving or not.
4743  *
4744  * This function is a synchronous call.
4745  *
4746  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4747  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4748  *               BLUETOOTH_ERROR_INTERNAL \n
4749  *
4750  * @exception   None
4751  * @param[out] is_receiving The receiving status: (@c TRUE = in receiving , @c  false = not in receiving)
4752  *
4753  * @remark       None
4754  * @see            None
4755  */
4756 int bluetooth_obex_server_is_receiving(gboolean *is_receiving);
4757
4758
4759 /**
4760  * @fn int bluetooth_oob_read_local_data(bt_oob_data_t *local_oob_data)
4761  * @brief Read the local Hash and Randmizer.
4762  *
4763  * This function is a synchronous call.
4764  *
4765  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4766  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4767  *
4768  * @exception  None
4769  * @param[in]  None.
4770  * @param[out] local_oob_data - Pointer to the local OOB data
4771  *
4772  * @remark       None
4773  * @see          None
4774  */
4775
4776 int bluetooth_oob_read_local_data(bt_oob_data_t *local_oob_data);
4777
4778
4779 /**
4780  * @fn int bluetooth_oob_add_remote_data(
4781  *                      const bluetooth_device_address_t *remote_device_address,
4782  *                      bt_oob_data_t *oob_data)
4783  * @brief Add/updated the remote device  Hash and Randmizer.
4784  *
4785  * This function is a synchronous call.
4786  * No event for this api..
4787  *
4788  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4789  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4790  *
4791  * @exception   None
4792  * @param[in] remote_device_address - Remote device address
4793  *            remote_oob_data - Ponter to Hash and Randomizer oob data structure
4794  *
4795  * @remark      None
4796  * @see         None
4797  */
4798
4799 int bluetooth_oob_add_remote_data(
4800                    const bluetooth_device_address_t *remote_device_address,
4801                    bt_oob_data_t *remote_oob_data);
4802
4803
4804 /**
4805  * @fn int bluetooth_oob_remove_remote_data(
4806  *                      const bluetooth_device_address_t *remote_device_address)
4807  * @brief Delete the Hash and Randomizer w.r.t the remote device address.
4808  *
4809  * This function is a synchronous call.
4810  * No event for this api..
4811  *
4812  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4813  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4814  *
4815  * @exception  None
4816  * @param[in] remote_device_address - Remote device address
4817  *
4818  * @remark       None
4819  * @see          None
4820  */
4821
4822 int bluetooth_oob_remove_remote_data(
4823                         const bluetooth_device_address_t *remote_device_address);
4824
4825 /**
4826  * @fn int bluetooth_gatt_get_primary_services(const bluetooth_device_address_t *address,
4827  *                                              bt_gatt_handle_info_t *prim_svc);
4828  *
4829  * @brief Gets the GATT based primary services handle supported by remote device
4830  *
4831  * This function is a synchronous call.
4832  * The output parameter needs to be freed by calling bluetooth_gatt_free_primary_services()
4833  *
4834  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4835  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4836  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
4837  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
4838  *
4839  * @exception    None
4840  * @param[in]    address - Remote device address
4841  * @param[out] prim_svc - Structure containing remote service count and handle list.
4842  *
4843  * @remark      None
4844  * @see         bluetooth_gatt_free_primary_services()
4845  */
4846 int bluetooth_gatt_get_primary_services(const bluetooth_device_address_t *address,
4847                                                 bt_gatt_handle_info_t *prim_svc);
4848
4849 /**
4850  * @fn int bluetooth_gatt_discover_service_characteristics(const char *service_handle)
4851  *
4852  * @brief Discovers the characteristics of GATT based service of remote device
4853  *
4854  * This function is an asynchronous call.
4855  * This API is responded with BLUETOOTH_EVENT_GATT_SVC_CHAR_DISCOVERED
4856  *
4857  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4858  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4859  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
4860  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
4861  *
4862  * @exception   None
4863  * @param[in]   service_handle - Handle for remote service.
4864  *
4865  * @remark      None
4866  * @see         None
4867  */
4868 int bluetooth_gatt_discover_service_characteristics(const char *service_handle);
4869
4870 int bluetooth_gatt_set_service_change_watcher(
4871                 const bluetooth_device_address_t *address, gboolean enable);
4872
4873 /**
4874  * @fn int bluetooth_gatt_get_service_property(const char *service_handle,
4875  *                                              bt_gatt_service_property_t *service);
4876  *
4877  * @brief Gets the properties of GATT based service of remote device
4878  *
4879  * This function is a synchronous call.
4880  * The output parameter needs to be freed by calling bluetooth_gatt_free_primary_services()
4881  *
4882  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4883  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4884  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
4885  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
4886  *
4887  * @exception   None
4888  * @param[in]   service_handle - Handle for remote service.
4889  * @param[out]  service - Structure containing remote service property.
4890  *
4891  * @remark      None
4892  * @see         bluetooth_gatt_free_service_property()
4893  */
4894 int bluetooth_gatt_get_service_property(const char *service_handle,
4895                                                 bt_gatt_service_property_t *service);
4896
4897 /**
4898  * @fn int bluetooth_gatt_watch_characteristics(const char *service_handle)
4899  *
4900  * @brief Register to GATT based service to receive value change notification/indication.
4901  *
4902  * This function is a synchronous call.
4903  * No event for this api.
4904  *
4905  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4906  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4907  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
4908  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
4909  *
4910  * @exception   None
4911  * @param[in]   service_handle - Handle for remote service.
4912  *
4913  * @remark      None
4914  * @see         None
4915  */
4916 int bluetooth_gatt_watch_characteristics(const char *service_handle);
4917
4918 /**
4919  * @fn int bluetooth_gatt_unwatch_characteristics(const char *service_handle)
4920  *
4921  * @brief Unregister GATT based service to receive value change notification/indication.
4922  *
4923  * This function is a synchronous call.
4924  * No event for this api.
4925  *
4926  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4927  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4928  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
4929  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
4930  *
4931  * @exception   None
4932  * @param[in]   service_handle - Handle for remote service.
4933  *
4934  * @remark      None
4935  * @see         None
4936  */
4937 int bluetooth_gatt_unwatch_characteristics(const char *service_handle);
4938
4939 /**
4940  * @fn int bluetooth_gatt_get_characteristics_property(const char *char_handle,
4941  *                                              bt_gatt_char_property_t *characteristic);
4942  *
4943  * @brief Provides characteristic value along with properties.
4944  *
4945  * This function is a synchronous call.
4946  * The output parameter needs to be freed by calling bluetooth_gatt_free_char_property()
4947  *
4948  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4949  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4950  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
4951  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
4952  *
4953  * @exception   None
4954  * @param[in]   char_handle - Handle for Characteristic property.
4955  * @param[out] characteristic - Structure containing remote characteristic property.
4956  *
4957  * @remark      None
4958  * @see         bluetooth_gatt_free_char_property()
4959  */
4960 int bluetooth_gatt_get_characteristics_property(const char *char_handle,
4961                                                 bt_gatt_char_property_t *characteristic);
4962
4963 /**
4964  * @fn int bluetooth_gatt_get_char_descriptor_property(const char *char_handle,
4965  *                                              bt_gatt_char_property_t *characteristic);
4966  *
4967  * @brief Provides characteristic descriptor value along with its UUID.
4968  *
4969  * This function is a synchronous call.
4970  * The output parameter needs to be freed by calling bluetooth_gatt_free_desc_property()
4971  *
4972  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4973  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4974  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
4975  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
4976  *
4977  * @exception   None
4978  * @param[in]   desc_handle - Handle for Characteristic descriptor.
4979  * @param[out] descriptor - Structure containing remote characteristic descriptor property.
4980  *
4981  * @remark      None
4982  * @see         bluetooth_gatt_free_desc_property()
4983  */
4984 int bluetooth_gatt_get_char_descriptor_property(const char *desc_handle,
4985                                                 bt_gatt_char_descriptor_property_t *descriptor);
4986
4987
4988 /**
4989  * @fn int bluetooth_gatt_set_characteristics_value(const char *char_handle,
4990  *                                              const guint8 *value, int length)
4991  *
4992  * @brief Set characteristic value.
4993  *
4994  * This function is a synchronous call.
4995  *
4996  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4997  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4998  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
4999  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5000  *
5001  * @exception   None
5002  * @param[in]   char_handle - Handle for Characteristic property.
5003  * @param[in]   value - New value to set for characteristic property.
5004  * @param[in]   length - Length of the value to be set.
5005  *
5006  * @remark      None
5007  * @see         None
5008  */
5009 int bluetooth_gatt_set_characteristics_value(const char *char_handle,
5010                                                 const guint8 *value, int length);
5011
5012 /**
5013  * @fn int bluetooth_gatt_set_characteristics_value_by_type(const char *char_handle,
5014  *                              const guint8 *value, int length, guint8 write_type)
5015  *
5016  * @brief Set characteristic value by write type.
5017  *
5018  * This function is a synchronous call if write type is "write without resonse"
5019  * and it is an asynchronous call if write type is "write with response"
5020  *
5021  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5022  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5023  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5024  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5025  *
5026  * @exception   None
5027  * @param[in]   char_handle - Handle for Characteristic property.
5028  * @param[in]   value - New value to set for characteristic property.
5029  * @param[in]   length - Length of the value to be set.
5030  * @param[in]   write_type - Type of write.
5031  *
5032  * @remark      None
5033  * @see         None
5034  */
5035 int bluetooth_gatt_set_characteristics_value_by_type(const char *char_handle,
5036                                 const guint8 *value, int length, guint8 write_type);
5037
5038
5039 /**
5040  * @fn int bluetooth_gatt_set_characteristics_value_request(const char *char_handle,
5041  *                                              const guint8 *value, int length)
5042  *
5043  * @brief Set characteristic value request.
5044  *
5045  * This function is an asynchronous call.
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   *
5057  * @remark      None
5058  * @see         None
5059  */
5060 int bluetooth_gatt_set_characteristics_value_request(const char *char_handle,
5061                                                 const guint8 *value, int length);
5062
5063 /**
5064  * @fn int bluetooth_gatt_read_characteristic_value(const char *char_handle)
5065  *
5066  * @brief Read characteristic value.
5067  *
5068  * This function is a asynchronous call.
5069  *
5070  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5071  *             BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5072  *             BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5073  *             BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5074  *
5075  * @exception  None
5076  * @param[in]  char_handle - Handle for Characteristic property.
5077  *
5078  * @remark     None
5079  * @see        None
5080  */
5081 int bluetooth_gatt_read_characteristic_value(const char *char_handle);
5082
5083 /**
5084  * @fn int bluetooth_gatt_get_service_from_uuid(bluetooth_device_address_t *address,
5085  *                                      const char *service_uuid,
5086  *                                      bt_gatt_service_property_t *service)
5087  *
5088  * @brief Gets the service property from a device based on a particular uuid
5089  *
5090  * This function is a synchronous call.
5091  *
5092  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5093  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5094  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5095  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5096  *
5097  * @exception   None
5098  * @param[in]   address - BD address of the remote device
5099  * @param[in]   service_uuid - uuid of the service.
5100  * @param[out] service - Structure containing the service property.
5101  *
5102  * @remark      None
5103  * @see         None
5104  */
5105  int bluetooth_gatt_get_service_from_uuid(bluetooth_device_address_t *address,
5106                                         const char *service_uuid,
5107                                         bt_gatt_service_property_t *service);
5108
5109 /**
5110  * @fn int bluetooth_gatt_get_char_from_uuid(const char *service_handle,
5111  *                                                      const char *char_uuid)
5112  *
5113  * @brief Gets the characteristic property from a service based on a particular char uuid
5114  *
5115  * This function is an asynchronous call.
5116  * This API is responded with BLUETOOTH_EVENT_GATT_GET_CHAR_FROM_UUID
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]   service_handle - Service handle.
5125  * @param[in]   uuid - Characteristic uuid.
5126  *
5127  * @remark      None
5128  * @see         None
5129  */
5130 int bluetooth_gatt_get_char_from_uuid(const char *service_handle,
5131                                                 const char *char_uuid);
5132
5133 /**
5134  * @fn int bluetooth_gatt_free_primary_services(bt_gatt_handle_info_t *prim_svc);
5135  *
5136  * @brief Releases the memory allocated by bluetooth_gatt_get_primary_services()
5137  *
5138  * This function is a synchronous call.
5139  * The input parameter is obtained by calling bluetooth_gatt_get_primary_services()
5140  *
5141  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5142  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5143  *
5144  * @exception   None
5145  * @param[in]   prim_svc - GATT handle info structure
5146  *
5147  * @remark      None
5148  * @see         bluetooth_gatt_get_primary_services()
5149  */
5150 int bluetooth_gatt_free_primary_services(bt_gatt_handle_info_t *prim_svc);
5151
5152 /**
5153  * @fn int bluetooth_gatt_free_service_property(bt_gatt_service_property_t *svc_pty);
5154  *
5155  * @brief  Releases the memory allocated by bluetooth_gatt_get_service_property()
5156  *
5157  * This function is a synchronous call.
5158  * The input parameter is obtained by calling bluetooth_gatt_get_service_property()
5159  *
5160  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5161  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5162  *
5163  * @exception   None
5164  * @param[in]   svc_pty - GATT service property structure.
5165  *
5166  * @remark      None
5167  * @see         bluetooth_gatt_get_service_property()
5168  */
5169 int bluetooth_gatt_free_service_property(bt_gatt_service_property_t *svc_pty);
5170
5171 /**
5172  * @fn int bluetooth_gatt_free_char_property(bt_gatt_char_property_t *char_pty);
5173  *
5174  * @brief Provides characteristic value along with properties.
5175  *
5176  * This function is a synchronous call.
5177  * The input parameter is obtained by calling bluetooth_gatt_get_characteristics_property()
5178  *
5179  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5180  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5181  *
5182  * @exception   None
5183  * @param[in]   char_pty - GATT characteristics property structure.
5184  *
5185  * @remark      None
5186  * @see         bluetooth_gatt_get_characteristics_property()
5187  */
5188  int bluetooth_gatt_free_char_property(bt_gatt_char_property_t *char_pty);
5189
5190 /**
5191  * @fn int bluetooth_gatt_free_desc_property(bt_gatt_char_descriptor_property_t *desc_pty);
5192  *
5193  * @brief Releases the memory allocated by bluetooth_gatt_get_char_descriptor_property()
5194  *
5195  * This function is a synchronous call.
5196  * The input parameter is obtained by calling bluetooth_gatt_get_char_descriptor_property()
5197  *
5198  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5199  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5200  *
5201  * @exception   None
5202  * @param[in]   desc_pty - GATT characteristics descriptor property structure.
5203  *
5204  * @remark      None
5205  * @see         bluetooth_gatt_get_char_descriptor_property()
5206  */
5207  int bluetooth_gatt_free_desc_property(bt_gatt_char_descriptor_property_t *desc_pty);
5208
5209
5210  int bluetooth_connect_le(const bluetooth_device_address_t *device_address, gboolean auto_connect);
5211
5212  int bluetooth_disconnect_le(const bluetooth_device_address_t *device_address);
5213
5214  /**
5215  * @fn int bluetooth_gatt_discover_characteristic_descriptor(const char *characteristic_handle);
5216  *
5217  * @brief Discovers the characteristic descriptor value of a characteristic within its definition, asynchronously
5218  *
5219  * The input parameter is obtained by calling bluetooth_gatt_get_characteristics_property()
5220  *
5221  * @return  BLUETOOTH_ERROR_NONE  - Success \n
5222  *                      BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5223  *
5224  * @exception   None
5225  * @param[in]   characteristic_handle - The characteristic handle for which characteristic descriptor has to be discovered.
5226  *
5227  * @remark      None
5228  */
5229 int bluetooth_gatt_discover_characteristic_descriptor(const char *characteristic_handle);
5230
5231 /**
5232  * @fn int bluetooth_gatt_read_descriptor_value(const char *desc_handle)
5233  *
5234  * @brief Read characteristic descriptor value.
5235  *
5236  * This function is a asynchronous call.
5237  *
5238  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5239  *             BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5240  *             BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5241  *             BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5242  *
5243  * @exception  None
5244  * @param[in]  desc_handle - Handle for Characteristic descriptor
5245  *
5246  * @remark     None
5247  * @see        None
5248  */
5249  int bluetooth_gatt_read_descriptor_value(const char *desc_handle);
5250
5251 /**
5252  * @fn int bluetooth_gatt_write_descriptor_value(const char *desc_handle,
5253  *                      const guint8 *value, int length);
5254  *
5255  * @brief Set characteristic descriptor value.
5256  *
5257  * This function is a asynchronous call.
5258  *
5259  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5260  *             BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5261  *             BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5262  *             BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5263  *
5264  * @exception  None
5265  * @param[in]  desc_handle - Handle for Characteristic descriptor
5266  * @param[in]  value - New value to set for characteristic descriptor
5267  * @param[in]  length - Length of the value to be set.
5268  *
5269  * @remark     None
5270  * @see        None
5271  */
5272  int bluetooth_gatt_write_descriptor_value(const char *desc_handle,
5273                         const guint8 *value, int length);
5274
5275 /* @fn int bluetooth_gatt_init(void)
5276 *
5277 * @brief Initializes the gatt service.
5278 *
5279 * This function is a synchronous call.
5280 * @return   BLUETOOTH_ERROR_NONE        - Success \n
5281 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5282 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5283 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5284 *
5285 * @exception     None
5286 * @remark  Adapter should be enabled
5287 * @see  bluetooth_gatt_deinit()
5288 */
5289 int bluetooth_gatt_init(void);
5290
5291 /* @fn int bluetooth_gatt_init(void)
5292 *
5293 * @brief DeInitializes the gatt service.
5294 *
5295 * This function is a synchronous call.
5296 * @return   BLUETOOTH_ERROR_NONE        - Success \n
5297 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5298 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5299 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5300 *
5301 * @exception     None
5302 * @remark  Adapter should be enabled
5303 * @see  bluetooth_gatt_init()
5304 */
5305 int bluetooth_gatt_deinit(void);
5306
5307 /* @fn int bluetooth_gatt_add_service(const char *svc_uuid,
5308                         unsigned char **svc_path)
5309 *
5310 * @brief Exports a new gatt service to the service interface.
5311 *
5312 * This function is a synchronous call.
5313 *
5314 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5315 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5316 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5317 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5318 *
5319 * @exception     None
5320 * @param[in]   svc_uuid  Gatt service uuid.
5321 * @param[out] svc_path  service object path of the exported service.
5322 * @remark  Adapter should be enabled
5323 * @see  bluetooth_gatt_init()
5324 */
5325 int bluetooth_gatt_add_service(const char *svc_uuid,
5326                         char **svc_path);
5327
5328 /* @fn int bluetooth_gatt_add_new_characteristic(
5329                         const char *svc_path, const char *char_uuid,
5330                         bt_gatt_permission_t permissions,
5331                         bt_gatt_characteristic_property_t properties,
5332                         int flags_length, char **char_path);;
5333 *
5334 * @brief Exports a new gatt characteristic to the characteristic interface.
5335 *
5336 * This function is a synchronous call.
5337 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5338 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5339 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5340 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5341 * @exception     None
5342 * @param[in]   svc_path service object path of the exported service.
5343 * @param[in]   char_uuid  Gatt service uuid.
5344 * @param[in]   properties       GATT characteristic properties.
5345 * @param[out] char_path characteristic object path of the exported characteristic.
5346 *
5347 * @remark  Adapter should be enabled
5348 * @see  bluetooth_gatt_add_service()
5349 */
5350 int bluetooth_gatt_add_new_characteristic(
5351                         const char *svc_path, const char *char_uuid,
5352                         bt_gatt_permission_t permissions,
5353                         bt_gatt_characteristic_property_t properties,
5354                         char **char_path);
5355
5356 /* @fn bluetooth_gatt_set_characteristic_value(
5357                         const char *characteristic, const char *char_value,
5358                         int value_length);
5359 *
5360 * @brief adds gatt charactertisic value to the given charactertistic path.
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]   char_value Value of the GATT characteristic to be added.
5369 * @param[in]   value_length length of the chantacteristic value..
5370 * @param[out] characteristic characteristic object path..
5371 *
5372 * @remark  Adapter should be enabled
5373 * @see  bluetooth_gatt_add_service()
5374 */
5375 int bluetooth_gatt_set_characteristic_value(
5376                         const char *characteristic, const char *char_value,
5377                         int value_length);
5378
5379 /* @fn  int bluetooth_gatt_add_descriptor(
5380                         const char *char_path, const char *desc_uuid,
5381                         bt_gatt_permission_t permissions,
5382                         char **desc_path);
5383 *
5384 * @brief Exports a new gatt descriptor to the descriptor interface.
5385 *
5386 * This function is a synchronous call.
5387 *
5388 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5389 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5390 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5391 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5392 *
5393 * @exception     None
5394 * @param[in]   desc_uuid  Gatt descriptor uuid.
5395 * @param[in]   desc_value       GATT descriptor value.
5396 * @param[in]   value_length     Length of GATT descriptor value.
5397 * @param[in]   permissions      descriptor permissions.
5398 * @param[in]   properties       GATT descriptor properties.
5399 * @param[in]  char_path characteristics object path of the exported character.
5400 *
5401 * @remark  Adapter should be enabled
5402 * @see  bluetooth_gatt_add_service()
5403 * @see  bluetooth_gatt_add_characteristics()
5404 */
5405 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 /* @fn int bluetooth_gatt_set_descriptor_value(
5411                    const char *desc_path, const char *desc_value,
5412                    int value_length);
5413 *
5414 * @brief Adds value to the given descriptor handle.
5415 *
5416 * This function is a synchronous call.
5417 *
5418 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5419 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5420 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5421 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5422 *
5423 * @exception     None
5424 * @param[in]   desc_value       GATT descriptor value.
5425 * @param[in]   value_length     Length of GATT descriptor value.
5426 * @param[in]  desc_path descriptor path to which the value needs to be added.
5427 *
5428 * @remark  Adapter should be enabled
5429 * @see  bluetooth_gatt_add_service()
5430 * @see  bluetooth_gatt_add_characteristics()
5431 */
5432 int bluetooth_gatt_set_descriptor_value(
5433                    const char *desc_path, const char *desc_value,
5434                    int value_length);
5435
5436 /* @fn int bluetooth_gatt_get_service(const char *svc_uuid);
5437 *
5438 * @brief Reads the Service registered on manager interface.
5439 *
5440 * This function is a synchronous call.
5441 *
5442 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5443 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5444 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5445 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5446 *
5447 * @exception     None
5448 * @param[in]   svc_uuid  Gatt Service uuid.
5449 *
5450 * @remark  Adapter should be enabled and service should be registered.
5451 * @see  bluetooth_gatt_register_service()
5452 */
5453 int bluetooth_gatt_get_service(const char *svc_uuid);
5454
5455 /* @fn int bluetooth_gatt_register_service(const  char *svc_path)
5456 *
5457 * @brief Registers the given service path with the library.
5458 *
5459 * This function is a synchronous call.
5460 *
5461 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5462 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5463 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5464 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5465 *
5466 * @exception     None
5467 * @param[in] svc_path   service object path of the exported service.
5468 *
5469 * @remark  Adapter should be enabled
5470 * @see  bluetooth_gatt_add_service()
5471 * @see  bluetooth_gatt_add_characteristics()
5472 * @see  bluetooth_gatt_add_descriptor()
5473 * @see  bluetooth_gatt_register_application()
5474 */
5475 int bluetooth_gatt_register_service(const char *svc_path);
5476
5477 /* @fn int bluetooth_gatt_register_application(void)
5478 *
5479 * @brief Registers the application with the bluez gatt server.
5480 *
5481 * This function is a synchronous call.
5482 *
5483 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5484 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5485 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5486 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5487 *
5488 * @exception     None
5489 *
5490 * @remark  Adapter should be enabled
5491 * @see  bluetooth_gatt_init()
5492 * @see  bluetooth_gatt_add_service()
5493 * @see  bluetooth_gatt_add_characteristics()
5494 * @see  bluetooth_gatt_add_descriptor()
5495 * @see  bluetooth_gatt_register_service()
5496 */
5497 int bluetooth_gatt_register_application(void);
5498
5499 /* @fn int bluetooth_gatt_unregister_service(const  char *svc_path)
5500 *
5501 * @brief Removes(unregister) service from the bluez gatt server db.
5502 *
5503 * This function is a synchronous call.
5504 *
5505 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5506 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5507 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5508 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5509 *
5510 * @exception     None
5511 * @param[in] svc_path   service object path of the exported service.
5512 *
5513 * @remark  Adapter should be enabled
5514 * @see  bluetooth_gatt_add_service()
5515 * @see  bluetooth_gatt_add_characteristics()
5516 * @see  bluetooth_gatt_add_descriptor()
5517 * @see bluetooth_gatt_register_service()
5518 */
5519 int bluetooth_gatt_unregister_service(const char *svc_path);
5520
5521 /* @fn int bluetooth_gatt_unregister_application(void)
5522 *
5523 * @brief Removes(unregister) the application with the bluez gatt server,
5524 *        and deletes all the service registered.
5525 *
5526 * This function is a synchronous call.
5527 *
5528 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5529 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5530 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5531 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5532 *
5533 * @exception     None
5534 *
5535 * @remark  Adapter should be enabled
5536 * @see  bluetooth_gatt_init()
5537 * @see  bluetooth_gatt_add_service()
5538 * @see  bluetooth_gatt_add_characteristics()
5539 * @see  bluetooth_gatt_add_descriptor()
5540 * @see  bluetooth_gatt_register_service()
5541 * @see  bluetooth_gatt_unregister_service()
5542 */
5543 int bluetooth_gatt_unregister_application(void);
5544
5545 /* @fn int bluetooth_gatt_send_response(int request_id,
5546 *                               int offset, char *value, int value_length)
5547 *
5548 * @brief Updates the attribute value in local attribute list.
5549 *
5550 * This function is a synchronous call.
5551 *
5552 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5553 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5554 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5555 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5556 *
5557 * @exception     None
5558 * @param[in] request_id The identification of a read request
5559 * @param[in] req_type The identification of  request type (TRUE for Read request and FALSE for write request)
5560 * @param[in] resp_state The identification of response state
5561 * @param[in] offset The offset from where a value is read
5562 * @param[in] value The value to be sent. It will be sent from @a offset.
5563 *               If it is NULL, a requested GATT handle's value will be sent from @a offset.
5564 * @param[in] value_length Value Length.
5565 *
5566 * @remark  Adapter should be enabled
5567 * @see  bluetooth_gatt_add_service()
5568 * @see  bluetooth_gatt_add_characteristics()
5569 * @see  bluetooth_gatt_add_descriptor()
5570 * @see bluetooth_gatt_register_service()
5571 */
5572 int bluetooth_gatt_send_response(int request_id, guint req_type,
5573                                 int resp_state, int offset, char *value, int value_length);
5574
5575 /* @fn bluetooth_gatt_server_set_notification(const char *char_path)
5576 *
5577 * @brief Sets the notification property for a characteristic.
5578 *
5579 * This function is a synchronous call.
5580 *
5581 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5582 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5583 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5584 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5585 *
5586 * @exception     None
5587 * @param[in] char_path characteristic object path.
5588 * @param[in]   unicast_address remote device address. if set notification is sent to only one device.
5589 *
5590 * @remark  Adapter should be enabled
5591 * @see  bluetooth_gatt_update_characteristic()
5592 */
5593 int bluetooth_gatt_server_set_notification(const char *char_path,
5594                                 bluetooth_device_address_t *unicast_address);
5595
5596 /* @fn int bluetooth_gatt_delete_services(void)
5597 *
5598 * @brief deletes (unregisters) all services from the gatt server database..
5599 *
5600 * This function is a synchronous call.
5601 *
5602 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5603 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5604 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5605 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5606 *
5607 * @exception     None
5608 *
5609 * @remark  Adapter should be enabled
5610 * @see  bluetooth_gatt_add_service()
5611 * @see  bluetooth_gatt_add_characteristics()
5612 * @see  bluetooth_gatt_add_descriptor()
5613 * @see bluetooth_gatt_register_service()
5614 * @see bluetooth_gatt_unregister_service()
5615 */
5616 int bluetooth_gatt_delete_services(void);
5617
5618 /* @fn int bluetooth_gatt_update_characteristic(void)
5619 *
5620 * @brief updates the given characteristic with a new value
5621 *
5622 * This function is a synchronous call.
5623 *
5624 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5625 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5626 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5627 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5628 *
5629 * @exception     None
5630 *
5631 * @remark  Adapter should be enabled
5632 * @see  bluetooth_gatt_add_service()
5633 * @see  bluetooth_gatt_add_characteristics()
5634 * @see  bluetooth_gatt_add_descriptor()
5635 * @see bluetooth_gatt_register_service()
5636 * @see bluetooth_gatt_unregister_service()
5637 */
5638 int bluetooth_gatt_update_characteristic(const char *char_path,
5639                 const char* char_value, int value_length);
5640
5641 /**
5642  * @fn int bluetooth_set_advertising(int handle, gboolean enable);
5643  *
5644  * @brief Set advertising status.
5645  *
5646  * This function is used to enable or disable LE advertising.
5647  * Once advertising is enabled, Advertising data is transmitted in the advertising packets
5648  *
5649  * This function is a synchronous call.
5650  *
5651  * @return      BLUETOOTH_ERROR_NONE - Success \n
5652  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5653  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5654  *
5655  * @exception   None
5656  * @param[in]   enable - The status of advertising
5657  *
5658  * @remark      None
5659  * @see         bluetooth_set_advertising_data
5660  */
5661 int bluetooth_set_advertising(int handle, gboolean enable);
5662
5663 /**
5664  * @fn int bluetooth_set_custom_advertising(int handle, gboolean enable, bluetooth_advertising_params_t *params);
5665  *
5666  * @brief Set advertising status along with interval value.
5667  *
5668  * This function is used to enable or disable LE advertising.
5669  * Interval_min and Interval_max is used to set the best advertising interval.
5670  * Once advertising is enabled, Advertising data is transmitted in the advertising packets
5671  *
5672  * This function is a synchronous call.
5673  *
5674  * @return      BLUETOOTH_ERROR_NONE - Success \n
5675  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5676  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5677  *
5678  * @exception   None
5679  * @param[in]   enable - The status of advertising
5680  * @param[in]   interval_min - Minimum interval of advertising (msec)
5681  * @param[in]   interval_max - Maximum interval of advertising (msec)
5682  * @param[in]   filter_policy - Advertising filter policy
5683  *
5684  * @remark      None
5685  * @see         bluetooth_set_advertising_data
5686  */
5687 int bluetooth_set_custom_advertising(int handle, gboolean enable,
5688                                         bluetooth_advertising_params_t *params);
5689
5690 /**
5691  * @fn int bluetooth_get_advertising_data(bluetooth_advertising_data_t *value, int *length);
5692  * @brief Get the advertising data
5693  *
5694  * This function is used to get advertising data.
5695  * Before calling this API, the adapter should be enabled.
5696  *
5697  * This function is a synchronous call.
5698  *
5699  * @return      BLUETOOTH_ERROR_NONE - Success \n
5700  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5701  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter (NULL buffer)\n
5702  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5703  *
5704  * @param[out]  value - Advertising data structure.
5705  * @param[out]  length - The length of Advertising data.
5706  *
5707  * @remark      None
5708 @code
5709 bluetooth_advertising_data_t *value = { {0} };
5710 int length;
5711 int ret = 0;
5712 ret = bluetooth_get_advertising_data(&value, &length);
5713 @endcode
5714  */
5715 int bluetooth_get_advertising_data(bluetooth_advertising_data_t *value, int *length);
5716
5717 /**
5718  * @fn int bluetooth_set_advertising_data(int handle, const bluetooth_advertising_data_t *value, int length);
5719  *
5720  * @brief Set advertising data with value
5721  *
5722  * This function is used to set advertising data and Maximum size of advertising data
5723  *  is 28 byte (Except Flag)
5724  *
5725  * This function is a synchronous call.
5726  *
5727  * @return      BLUETOOTH_ERROR_NONE - Success \n
5728  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5729  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5730  *
5731  * @exception   None
5732  * @param[in]   value - Advertising data structure.
5733  *
5734  * @remark      None
5735  */
5736 int bluetooth_set_advertising_data(int handle, const bluetooth_advertising_data_t *value, int length);
5737
5738 /**
5739  * @fn int bluetooth_check_privilege_advertising_parameter(void);
5740  *
5741  * @brief Check the privilege for advertising parameter setting
5742  *
5743  * This function is a synchronous call.
5744  *
5745  * @return      BLUETOOTH_ERROR_NONE - Success \n
5746  *              BLUETOOTH_ERROR_PERMISSION_DEINED - Permission deined \n
5747  *
5748  * @exception   None
5749  *
5750  * @remark      None
5751  */
5752 int bluetooth_check_privilege_advertising_parameter(void);
5753
5754 /**
5755  * @fn int bluetooth_get_scan_response_data(bluetooth_scan_resp_data_t *value, int *length);
5756  * @brief Get the LE scan response data
5757  *
5758  * This function is used to get scan response data.
5759  * Before calling this API, the adapter should be enabled.
5760  *
5761  * This function is a synchronous call.
5762  *
5763  * @return      BLUETOOTH_ERROR_NONE - Success \n
5764  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5765  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter (NULL buffer)\n
5766  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5767  *
5768  * @param[out]  value - Scan response data structure.
5769  * @param[out]  length - The length of Scan response data.
5770  *
5771  * @remark      None
5772 @code
5773 bluetooth_scan_resp_data_t *value = { {0} };
5774 int length;
5775 int ret = 0;
5776 ret = bluetooth_get_scan_response_data(&value, &length);
5777 @endcode
5778  */
5779 int bluetooth_get_scan_response_data(bluetooth_scan_resp_data_t *value, int *length);
5780
5781 /**
5782  * @fn int bluetooth_set_scan_response_data(int handle, const bluetooth_scan_resp_data_t *value, int length);
5783  *
5784  * @brief Set scan response data with value
5785  *
5786  * This function is used to set scan response data and Maximum size of scan response data is 31 byte
5787  *
5788  * This function is a synchronous call.
5789  *
5790  * @return      BLUETOOTH_ERROR_NONE - Success \n
5791  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5792  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5793  *
5794  * @exception   None
5795  * @param[in]   value - LE Scan response data structure.
5796  *
5797  * @remark      None
5798  */
5799 int bluetooth_set_scan_response_data(int handle, const bluetooth_scan_resp_data_t *value, int length);
5800
5801 /**
5802  * @fn int bluetooth_set_scan_parameters(bluetooth_le_scan_params_t *params);
5803  *
5804  * @brief Set scan interval and window
5805  *
5806  * This function is used to set LE scan interval and window size
5807  *
5808  * This function is a synchronous call.
5809  *
5810  * @return      BLUETOOTH_ERROR_NONE - Success \n
5811  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5812  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5813  *
5814  * @exception   None
5815  * @param[in]   interval - Interval of LE scan (msec)
5816  * @param[in]   window - Window size of LE scan (msec)
5817  *
5818  * @remark      None
5819  */
5820 int bluetooth_set_scan_parameters(bluetooth_le_scan_params_t *params);
5821
5822 /**
5823  * @fn int bluetooth_is_advertising(void)
5824  * @brief Check for the advertising is in-progress or not.
5825  *
5826  * This API is used to check the current status of the advertising procedure.
5827  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
5828  * this API.
5829  *
5830  * This function checks whether the advertising is started or not.
5831  *
5832  * This function is a synchronous call.
5833  *
5834  * @param[out] is_advertising The advertising status: (@c TRUE = in progress, @c  false = not in progress)
5835  *
5836  * @return      BLUETOOTH_ERROR_NONE - Success \n
5837  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5838  *
5839  * @remark      None
5840  * @see         bluetooth_set_advertising, bluetooth_set_custom_advertising
5841
5842 @code
5843 int ret;
5844 gboolean is_advertising = 0;
5845
5846 ret = bluetooth_is_advertising(&is_advertising);
5847 @endcode
5848  */
5849 int bluetooth_is_advertising(gboolean *is_advertising);
5850
5851 /**
5852  * @fn int bluetooth_add_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type)
5853  * @brief Add LE device to white list
5854  *
5855  * This API is used to add LE device to white list
5856  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
5857  * this API.
5858  *
5859  *
5860  * This function is a synchronous call.
5861  *
5862  * @param[in] address The address of remote device
5863  *
5864  * @return      BLUETOOTH_ERROR_NONE - Success \n
5865  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5866  *
5867  * @remark      None
5868  * @see         bluetooth_set_custom_advertising
5869  */
5870 int bluetooth_add_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type);
5871
5872 /**
5873  * @fn int bluetooth_remove_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type)
5874  * @brief Remove LE device from white list
5875  *
5876  * This API is used to remove LE device from white list
5877  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
5878  * this API.
5879  *
5880  *
5881  * This function is a synchronous call.
5882  *
5883  * @param[in] address The address of remote device
5884  *
5885  * @return      BLUETOOTH_ERROR_NONE - Success \n
5886  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5887  *
5888  * @remark      None
5889  * @see         bluetooth_set_custom_advertising
5890  */
5891 int bluetooth_remove_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type);
5892
5893 /**
5894  * @fn int bluetooth_clear_white_list(void)
5895  * @brief Clear white list
5896  *
5897  * This API is used to clear white list
5898  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
5899  * this API.
5900  *
5901  *
5902  * This function is a synchronous call.
5903  *
5904  * @param[in] address The address of remote device
5905  *
5906  * @return      BLUETOOTH_ERROR_NONE - Success \n
5907  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5908  *
5909  * @remark      None
5910  * @see         bluetooth_set_custom_advertising
5911  */
5912 int bluetooth_clear_white_list(void);
5913
5914 /**
5915  * @fn int bluetooth_le_conn_update(bluetooth_device_address_t *address,
5916  *          const bluetooth_le_connection_param_t *parameters)
5917  * @brief update connection paramter of LE connection.
5918  *
5919  * This function is a synchronous call.
5920  *
5921  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5922  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5923  *
5924  * @exception  None
5925  * @param[in]  address - remote device address value.
5926  * @param[in]  parameters - new connection parameters.
5927  *
5928  * @remark       None
5929  * @see     bluetooth_bond_device
5930  */
5931 int bluetooth_le_conn_update(const bluetooth_device_address_t *address,
5932             const bluetooth_le_connection_param_t *parameters);
5933
5934
5935 /**
5936  * @fn int bluetooth_enable_le_privacy(gboolean enable_privacy);
5937  *
5938  * @brief Enable/Disable LE Privacy feature.
5939  *
5940  * This function is used to enable or disable LE Privacy feature.
5941  * Once Privacy feature is enabled, Adapter can use Random Address for more security.
5942  *
5943  * This function is a synchronous call.
5944  *
5945  * @return      BLUETOOTH_ERROR_NONE - Success \n
5946  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5947  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5948  *
5949  * @exception   None
5950  * @param[in]   enable_privacy - The status of Privacy feature to be activated/deactivated[True/False].
5951  *
5952  * @remark      None
5953  */
5954 int bluetooth_enable_le_privacy(gboolean enable_privacy);
5955
5956 /**
5957  * @fn int bluetooth_set_le_static_random_address(gboolean enable);
5958  *
5959  * @brief Enable/Disable LE static random address.
5960  *
5961  * This function is used to enable or disable LE static random address.
5962  *
5963  * This function is a synchronous call.
5964  *
5965  * @return      BLUETOOTH_ERROR_NONE - Success \n
5966  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5967  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5968  *
5969  * @exception   None
5970  * @param[in]   enable - The status of LE static random address to be activated/deactivated[True/False].
5971  *
5972  * @remark      None
5973  */
5974 int bluetooth_set_le_static_random_address(gboolean enable);
5975
5976 /**
5977  * @fn int bluetooth_update_le_connection_mode(bluetooth_device_address_t *address,
5978  *                                             bluetooth_le_connection_mode_t mode)
5979  * @brief update connection paramter of LE connection.
5980  *
5981  * This function is a synchronous call.
5982  *
5983  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5984  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5985  *           BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
5986  *
5987  * @exception  None
5988  * @param[in]  address - remote device address value.
5989  * @param[in]  mode - new connection mode.
5990  *
5991  * @remark       None
5992  */
5993 int bluetooth_update_le_connection_mode(const bluetooth_device_address_t *address,
5994                 bluetooth_le_connection_mode_t mode);
5995
5996 /**
5997  * @fn int bluetooth_request_att_mtu(const bluetooth_device_address_t *device_address, guint16 mtu)
5998  * @brief Request for new ATT MTU value.
5999  *
6000  * This function is a asynchronous call.
6001  *
6002  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6003  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6004  *           BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6005  *
6006  * @exception  None
6007  * @param[in]  address - remote device address value.
6008  * @param[in]  mtu - MTU value to be set.
6009  *
6010  * @remark       None
6011  */
6012 int bluetooth_request_att_mtu(const bluetooth_device_address_t *device_address, unsigned int mtu);
6013
6014 /**
6015  * @fn int bluetooth_get_att_mtu(const bluetooth_device_address_t *device_address,
6016  *                              unsigned int *mtu)
6017  * @brief Gets the xisting MTU value set for a connection.
6018  *
6019  * This function is a synchronous call.
6020  *
6021  * @return       BLUETOOTH_ERROR_NONE  - Success \n
6022  *                       BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6023  *                       BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6024  *
6025  * @exception  None
6026  * @param[in]  address - remote device address value.
6027  * @param[out]  mtu - MTU value set for the connection.
6028  *
6029  * @remark               None
6030  */
6031 int bluetooth_get_att_mtu(const bluetooth_device_address_t *device_address,
6032                                 unsigned int *mtu);
6033
6034 /**
6035  * @fn int bluetooth_get_device_ida(const bluetooth_device_address_t *device_rpa,
6036  *                                      bluetooth_device_address_t *id_address)
6037  * @brief Gets the Identity address of remote device.
6038  *
6039  * This function is a synchronous call.
6040  *
6041  * @return       BLUETOOTH_ERROR_NONE  - Success \n
6042  *                       BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6043  *                       BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6044  *
6045  * @exception  None
6046  * @param[in]  device_rpa - remote Resolvable private address.
6047  * @param[out] id_address - remote Identity device address value.
6048  *
6049  * @remark               None
6050  */
6051 int bluetooth_get_device_ida(const bluetooth_device_address_t *device_rpa,
6052         bluetooth_device_address_t *id_address);
6053
6054 /**
6055  * @fn int bluetooth_le_read_maximum_data_length()
6056  * @brief reads the maximum LE data length supported in the controller.
6057  *
6058  * This function is a synchronous call.
6059  *
6060  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6061  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6062  *
6063  * @exception  None
6064  *
6065  * @remark       None
6066  */
6067 int bluetooth_le_read_maximum_data_length(
6068                         bluetooth_le_read_maximum_data_length_t *max_le_datalength);
6069 /**
6070  * @fn int bluetooth_le_write_host_suggested_default_data_length()
6071  * @brief writes the host suggested values for the controllers max transmitted no of payload
6072  * octects to be used for new connections.
6073  *
6074  * This function is a synchronous call.
6075  *
6076  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6077  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6078  *
6079  * @exception  None
6080  *
6081  * @remark       None
6082  */
6083 int bluetooth_le_write_host_suggested_default_data_length(
6084                 const unsigned int def_tx_Octets, const unsigned int def_tx_Time);
6085
6086 int bluetooth_le_read_suggested_default_data_length(
6087         bluetooth_le_read_host_suggested_data_length_t *le_data_length);
6088
6089 int bluetooth_le_set_data_length(bluetooth_device_address_t *address,
6090         const unsigned int max_tx_octets, const unsigned int max_tx_time);
6091
6092 int bluetooth_pbap_init(void);
6093 int bluetooth_pbap_deinit(void);
6094 int bluetooth_pbap_connect(const bluetooth_device_address_t *address);
6095 int bluetooth_pbap_disconnect(const bluetooth_device_address_t *address);
6096 int bluetooth_pbap_get_phonebook_size(const bluetooth_device_address_t *address,
6097                 bt_pbap_folder_t *folder);
6098 int bluetooth_pbap_get_phonebook(const bluetooth_device_address_t *address,
6099                 bt_pbap_folder_t *folder, bt_pbap_pull_parameters_t *app_param);
6100 int bluetooth_pbap_get_list(const bluetooth_device_address_t *address,
6101                 bt_pbap_folder_t *folder, bt_pbap_list_parameters_t *app_param);
6102 int bluetooth_pbap_pull_vcard(const bluetooth_device_address_t *address,
6103                 bt_pbap_folder_t *folder, bt_pbap_pull_vcard_parameters_t *app_param);
6104 int bluetooth_pbap_phonebook_search(const bluetooth_device_address_t *address,
6105                 bt_pbap_folder_t *folder, bt_pbap_search_parameters_t *app_param);
6106
6107 /**
6108  * @fn int bluetooth_set_manufacturer_data(const bluetooth_manufacturer_data_t *value);
6109  *
6110  * @brief Set manufacturer data with value
6111  *
6112  * This function is used to set manufacturer data.
6113  *
6114  * This function is a synchronous call.
6115  *
6116  * @return      BLUETOOTH_ERROR_NONE - Success \n
6117  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6118  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6119  *
6120  * @exception   None
6121  * @param[in]   value - Manufacturer data structure.
6122  *
6123  * @remark      None
6124  */
6125 int bluetooth_set_manufacturer_data(const bluetooth_manufacturer_data_t *value);
6126
6127 int bluetooth_set_passkey_notification(gboolean enable);
6128
6129 #ifdef TIZEN_DPM_VCONF_ENABLE
6130 /**
6131  * @fn int bluetooth_dpm_is_mode_allowed(void);
6132  *
6133  * @brief Checks Restriction for BT mode(BT allowed or not)
6134  *
6135  * This function is a synchronous call.
6136  *
6137  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6138  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6139  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6140  *
6141  * @exception   None
6142  *  @param[in] None
6143  *
6144  * @remark      None
6145  */
6146 int bluetooth_dpm_is_mode_allowed(void);
6147 #endif
6148
6149 /**
6150  * @fn int bluetooth_dpm_set_allow_mode(bt_dpm_allow_t value);
6151  *
6152  * @brief Sets Restriction for BT mode(BT allowed or not)
6153  *
6154  * This function is a synchronous call.
6155  *
6156  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6157  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6158  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6159  *
6160  * @exception   None
6161  * @param[in]   value - BT Allow value.
6162  *              BLUETOOTH_DPM_ERROR  = -1,       < bluetooth allowance error
6163  *              BLUETOOTH_DPM_BT_ALLOWED,                < bluetooth allowance allowed
6164  *              BLUETOOTH_DPM_HANDSFREE_ONLY,  < bluetooth allowance handsfree only
6165  *              BLUETOOTH_DPM_BT_RESTRICTED,  < bluetooth allowance restricted
6166  *
6167  * @remark      None
6168  */
6169 int bluetooth_dpm_set_allow_mode(bt_dpm_allow_t value);
6170
6171 /**
6172  * @fn int bluetooth_dpm_get_allow_mode(bt_dpm_allow_t value);
6173  *
6174  * @brief Reads the Restriction for BT mode(BT allowed or not)
6175  *
6176  * This function is a synchronous call.
6177  *
6178  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6179  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6180  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6181  *
6182  * @exception   None
6183  *  @param[in] None
6184  * @param[out]  value - BT Allow value.
6185  *              BLUETOOTH_DPM_ERROR      = -1,   < bluetooth allowance error
6186  *              BLUETOOTH_DPM_BT_ALLOWED,                < bluetooth allowance allowed
6187  *              BLUETOOTH_DPM_HANDSFREE_ONLY,  < bluetooth allowance handsfree only
6188  *              BLUETOOTH_DPM_BT_RESTRICTED,  < bluetooth allowance restricted
6189  *
6190  * @remark      None
6191  */
6192 int bluetooth_dpm_get_allow_mode(bt_dpm_allow_t *value);
6193
6194 /**
6195  * @fn int bluetooth_dpm_activate_device_restriction(bt_dpm_status_t value);
6196  *
6197  * @brief Sets the Restriction for device.
6198  *
6199  * This function is a synchronous call.
6200  *
6201  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6202  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6203  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6204  *
6205  * @exception   None
6206  * @param[in]   value - State value.
6207  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6208  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6209  *
6210  * @remark      None
6211  */
6212 int bluetooth_dpm_activate_device_restriction(bt_dpm_status_t value);
6213
6214 /**
6215  * @fn int bluetooth_dpm_is_device_restriction_active(bt_dpm_status_t *value);
6216  *
6217  * @brief Reads the Restriction for device.
6218  *
6219  * This function is a synchronous call.
6220  *
6221  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6222  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6223  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6224  *
6225  * @exception   None
6226  * @param[in] None
6227  * @param[out]  value - State value.
6228  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6229  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6230  *
6231  * @remark      None
6232  */
6233 int bluetooth_dpm_is_device_restriction_active(bt_dpm_status_t *value);
6234
6235 /**
6236  * @fn int bluetooth_dpm_activate_bluetoooth_uuid_restriction(bt_dpm_status_t value);
6237  *
6238  * @brief Sets the Restriction for uuid.
6239  *
6240  * This function is a synchronous call.
6241  *
6242  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6243  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6244  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6245  *
6246  * @exception   None
6247  * @param[in]   value - State value.
6248  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6249  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6250  *
6251  * @remark      None
6252  */
6253 int bluetooth_dpm_activate_uuid_restriction(bt_dpm_status_t value);
6254
6255 /**
6256  * @fn int bluetooth_dpm_is_uuid_restriction_active(bt_dpm_status_t *value);
6257  *
6258  * @brief Reads the Restriction for uuid.
6259  *
6260  * This function is a synchronous call.
6261  *
6262  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6263  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6264  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6265  *
6266  * @exception   None
6267  * @param[in] None
6268  * @param[out]  value - State value.
6269  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6270  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6271  *
6272  * @remark      None
6273  */
6274 int bluetooth_dpm_is_uuid_restriction_active(bt_dpm_status_t *value);
6275
6276 /**
6277  * @fn int bluetooth_dpm_add_devices_to_blacklist(const bluetooth_device_address_t *device_address);
6278  *
6279  * @brief Adds the device to blacklist.
6280  *
6281  * This function is a synchronous call.
6282  *
6283  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6284  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6285  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6286  *
6287  * @exception   None
6288  * @param[in]   device_address - Device address
6289  *
6290  * @remark      None
6291  */
6292 int bluetooth_dpm_add_devices_to_blacklist(const bluetooth_device_address_t *device_address);
6293
6294 /**
6295  * @fn int bluetooth_dpm_add_devices_to_whitelist(const bluetooth_device_address_t *device_address);
6296  *
6297  * @brief Adds the device to whitelist.
6298  *
6299  * This function is a synchronous call.
6300  *
6301  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6302  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6303  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6304  *
6305  * @exception   None
6306  * @param[in]   device_address - Device address
6307  *
6308  * @remark      None
6309  */
6310 int bluetooth_dpm_add_devices_to_whitelist(const bluetooth_device_address_t *device_address);
6311
6312 /**
6313  * @fn int bluetooth_dpm_add_uuids_to_blacklist(const char *service_uuid);
6314  *
6315  * @brief Adds the Service UUIDS to blacklist.
6316  *
6317  * This function is a synchronous call.
6318  *
6319  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6320  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6321  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6322  *
6323  * @exception   None
6324  * @param[in]   service_uuids - profile or custom service uuids
6325  *
6326  * @remark      None
6327  */
6328 int bluetooth_dpm_add_uuids_to_blacklist(const char *service_uuid);
6329
6330 /**
6331  * @fn int bluetooth_dpm_add_uuids_to_whitelist(const char *service_uuid);
6332  *
6333  * @brief Adds the Service UUIDS to whitelist.
6334  *
6335  * This function is a synchronous call.
6336  *
6337  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6338  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6339  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6340  *
6341  * @exception   None
6342  * @param[in]   service_uuids - profile or custom service uuids
6343  *
6344  * @remark      None
6345  */
6346 int bluetooth_dpm_add_uuids_to_whitelist(const char *service_uuid);
6347
6348 /**
6349  * @fn int bluetooth_dpm_clear_devices_from_blacklist();
6350  *
6351  * @brief Clears the devices from blacklist.
6352  *
6353  * This function is a synchronous call.
6354  *
6355  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6356  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6357  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6358  *
6359  * @exception   None
6360  * @param[in]   None
6361  *
6362  * @remark      None
6363  */
6364 int bluetooth_dpm_clear_devices_from_blacklist(void);
6365
6366 /**
6367  * @fn int bluetooth_dpm_clear_devices_from_whitelist();
6368  *
6369  * @brief Clears the devices from whitelist.
6370  *
6371  * This function is a synchronous call.
6372  *
6373  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6374  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6375  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6376  *
6377  * @exception   None
6378  * @param[in]   None
6379  *
6380  * @remark      None
6381  */
6382 int bluetooth_dpm_clear_devices_from_whitelist(void);
6383
6384 /**
6385  * @fn int bluetooth_dpm_clear_uuids_from_blacklist();
6386  *
6387  * @brief Clears the uuids from blacklist.
6388  *
6389  * This function is a synchronous call.
6390  *
6391  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6392  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6393  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6394  *
6395  * @exception   None
6396  * @param[in]   None
6397  *
6398  * @remark      None
6399  */
6400 int bluetooth_dpm_clear_uuids_from_blacklist(void);
6401
6402 /**
6403  * @fn int bluetooth_dpm_clear_uuids_from_whitelist();
6404  *
6405  * @brief Clears the uuids from whitelist.
6406  *
6407  * This function is a synchronous call.
6408  *
6409  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6410  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6411  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6412  *
6413  * @exception   None
6414  * @param[in]   None
6415  *
6416  * @remark      None
6417  */
6418 int bluetooth_dpm_clear_uuids_from_whitelist(void);
6419
6420 /**
6421  * @fn int bluetooth_dpm_get_devices_from_blacklist(bt_dpm_device_list_t *device_list);
6422  *
6423  * @brief reads the devices from blacklist.
6424  *
6425  * This function is a synchronous call.
6426  *
6427  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6428  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6429  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6430  *
6431  * @exception   None
6432  * @param[out]  device_list - list of devices
6433  *
6434  * @remark      None
6435  */
6436 int bluetooth_dpm_get_devices_from_blacklist(bt_dpm_device_list_t *device_list);
6437
6438 /**
6439  * @fn int bluetooth_dpm_get_devices_from_whitelist(bt_dpm_device_list_t *device_list);
6440  *
6441  * @brief reads the devices from whitelist.
6442  *
6443  * This function is a synchronous call.
6444  *
6445  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6446  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6447  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6448  *
6449  * @exception   None
6450  * @param[out]  device_list - list of devices
6451  *
6452  * @remark      None
6453  */
6454 int bluetooth_dpm_get_devices_from_whitelist(bt_dpm_device_list_t *device_list);
6455
6456 /**
6457  * @fn int bluetooth_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
6458  *
6459  * @brief reads the uuids from blacklist.
6460  *
6461  * This function is a synchronous call.
6462  *
6463  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6464  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6465  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6466  *
6467  * @exception   None
6468  * @param[in]   uuid_list - list of uuids
6469  *
6470  * @remark      None
6471  */
6472 int bluetooth_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
6473
6474 /**
6475  * @fn int bluetooth_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
6476  *
6477  * @brief reads the uuids from whitelist.
6478  *
6479  * This function is a synchronous call.
6480  *
6481  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6482  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6483  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6484  *
6485  * @exception   None
6486  * @param[in]   uuid_list - list of uuids
6487  *
6488  * @remark      None
6489  */
6490 int bluetooth_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
6491
6492 /**
6493  * @fn int bluetooth_dpm_remove_device_from_whitelist(const bluetooth_device_address_t *device_address);
6494  *
6495  * @brief Removes the device from whitelist.
6496  *
6497  * This function is a synchronous call.
6498  *
6499  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6500  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6501  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6502  *
6503  * @exception   None
6504  * @param[in]   device_address - Device address
6505  *
6506  * @remark      None
6507  */
6508 int bluetooth_dpm_remove_device_from_whitelist(const bluetooth_device_address_t *device_address);
6509
6510 /**
6511  * @fn int bluetooth_dpm_remove_device_from_blacklist(const bluetooth_device_address_t *device_address);
6512  *
6513  * @brief Removes the device from blacklist.
6514  *
6515  * This function is a synchronous call.
6516  *
6517  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6518  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6519  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6520  *
6521  * @exception   None
6522  * @param[in]   device_address - Device address
6523  *
6524  * @remark      None
6525  */
6526 int bluetooth_dpm_remove_device_from_blacklist(const bluetooth_device_address_t *device_address);
6527
6528 /**
6529  * @fn int bluetooth_dpm_remove_uuid_from_whitelist(const char *service_uuid);
6530  *
6531  * @brief Removes the Service UUIDS from whitelist.
6532  *
6533  * This function is a synchronous call.
6534  *
6535  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6536  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6537  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6538  *
6539  * @exception   None
6540  * @param[in]   service_uuids - profile or custom service uuids
6541  *
6542  * @remark      None
6543  */
6544 int bluetooth_dpm_remove_uuid_from_whitelist(const char *service_uuid);
6545
6546 /**
6547  * @fn int bluetooth_dpm_remove_uuid_from_blacklist(const char *service_uuid);
6548  *
6549  * @brief Removes the Service UUIDS from blacklist.
6550  *
6551  * This function is a synchronous call.
6552  *
6553  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6554  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6555  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6556  *
6557  * @exception   None
6558  * @param[in]   service_uuids - profile or custom service uuids
6559  *
6560  * @remark      None
6561  */
6562 int bluetooth_dpm_remove_uuid_from_blacklist(const char *service_uuid);
6563
6564 /**
6565  * @fn int bluetooth_dpm_set_allow_outgoing_call(bt_dpm_status_t value);
6566  *
6567  * @brief Sets the Restriction for outgoing call.
6568  *
6569  * This function is a synchronous call.
6570  *
6571  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6572  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6573  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6574  *
6575  * @exception   None
6576  * @param[in]   value - State value.
6577  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6578  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6579  *
6580  * @remark      None
6581  */
6582 int bluetooth_dpm_set_allow_outgoing_call(bt_dpm_status_t value);
6583
6584 /**
6585  * @fn int bluetooth_dpm_get_allow_outgoing_call(bt_dpm_status_t *value);
6586  *
6587  * @brief Reads the Restriction for  outgoing call.
6588  *
6589  * This function is a synchronous call.
6590  *
6591  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6592  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6593  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6594  *
6595  * @exception   None
6596  * @param[in] None
6597  * @param[out]  value - State value.
6598  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6599  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6600  *
6601  * @remark      None
6602  */
6603 int bluetooth_dpm_get_allow_outgoing_call(bt_dpm_status_t *value);
6604
6605 /**
6606  * @fn int bluetooth_dpm_set_pairing_state(bt_dpm_status_t value);
6607  *
6608  * @brief Sets the Restriction for Pairing.
6609  *
6610  * This function is a synchronous call.
6611  *
6612  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6613  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6614  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6615  *
6616  * @exception   None
6617  * @param[in]   value - State value.
6618  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6619  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6620  *
6621  * @remark      None
6622  */
6623 int bluetooth_dpm_set_pairing_state(bt_dpm_status_t value);
6624
6625 /**
6626  * @fn int bluetooth_dpm_get_pairing_state(bt_dpm_status_t *value);
6627  *
6628  * @brief Reads the Restriction for Pairing
6629  *
6630  * This function is a synchronous call.
6631  *
6632  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6633  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6634  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6635  *
6636  * @exception   None
6637  * @param[in] None
6638  * @param[out]  value - State value.
6639  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6640  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6641  *
6642  * @remark      None
6643  */
6644 int bluetooth_dpm_get_pairing_state(bt_dpm_status_t *value);
6645
6646 /**
6647  * @fnint bluetooth_dpm_set_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
6648  *
6649  * @brief Sets the Restriction for using Profiles.
6650  *
6651  * This function is a synchronous call.
6652  *
6653  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6654  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6655  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6656  *
6657  * @exception   None
6658  * @param[in]profile - Profile.
6659  *              BLUETOOTH_DPM_POLICY_A2DP_PROFILE_STATE,
6660  *              BLUETOOTH_DPM_POLICY_AVRCP_PROFILE_STATE,
6661  *              BLUETOOTH_DPM_POLICY_BPP_PROFILE_STATE,
6662  *              BLUETOOTH_DPM_POLICY_DUN_PROFILE_STATE,
6663  *              BLUETOOTH_DPM_POLICY_FTP_PROFILE_STATE,
6664  *              BLUETOOTH_DPM_POLICY_HFP_PROFILE_STATE,
6665  *              BLUETOOTH_DPM_POLICY_HSP_PROFILE_STATE,
6666  *              BLUETOOTH_DPM_POLICY_PBAP_PROFILE_STATE,
6667  *              BLUETOOTH_DPM_POLICY_SAP_PROFILE_STATE,
6668  *              BLUETOOTH_DPM_POLICY_SPP_PROFILE_STATE,
6669  *              BLUETOOTH_DPM_PROFILE_NONE
6670  * @param[in]   value - State value.
6671  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6672  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6673  *
6674  * @remark      None
6675  */
6676 int bluetooth_dpm_set_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
6677
6678 /**
6679  * @fn int bluetooth_dpm_get_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
6680  *
6681  * @brief Reads the Restriction for using Profiles.
6682  *
6683  * This function is a synchronous call.
6684  *
6685  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6686  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6687  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6688  *
6689  * @exception   None
6690  * @param[in]profile - Profile.
6691  *              BLUETOOTH_DPM_POLICY_A2DP_PROFILE_STATE,
6692  *              BLUETOOTH_DPM_POLICY_AVRCP_PROFILE_STATE,
6693  *              BLUETOOTH_DPM_POLICY_BPP_PROFILE_STATE,
6694  *              BLUETOOTH_DPM_POLICY_DUN_PROFILE_STATE,
6695  *              BLUETOOTH_DPM_POLICY_FTP_PROFILE_STATE,
6696  *              BLUETOOTH_DPM_POLICY_HFP_PROFILE_STATE,
6697  *              BLUETOOTH_DPM_POLICY_HSP_PROFILE_STATE,
6698  *              BLUETOOTH_DPM_POLICY_PBAP_PROFILE_STATE,
6699  *              BLUETOOTH_DPM_POLICY_SAP_PROFILE_STATE,
6700  *              BLUETOOTH_DPM_POLICY_SPP_PROFILE_STATE,
6701  *              BLUETOOTH_DPM_PROFILE_NONE
6702  * @param[out]  value - State value.
6703  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6704  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6705  *
6706  * @remark      None
6707  */
6708 int bluetooth_dpm_get_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
6709
6710 /**
6711  * @fn int bluetooth_dpm_set_desktop_connectivity_state(bt_dpm_status_t value);
6712  *
6713  * @brief Sets the Restriction for Desktop Connectivity.
6714  *
6715  * This function is a synchronous call.
6716  *
6717  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6718  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6719  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6720  *
6721  * @exception   None
6722  * @param[in]   value - State value.
6723  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6724  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6725  *
6726  * @remark      None
6727  */
6728 int bluetooth_dpm_set_desktop_connectivity_state(bt_dpm_status_t value);
6729
6730 /**
6731  * @fn int bluetooth_dpm_get_desktop_connectivity_state(bt_dpm_status_t *value);
6732  *
6733  * @brief Reads the Restriction for Desktop Connectivity.
6734  *
6735  * This function is a synchronous call.
6736  *
6737  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6738  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6739  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6740  *
6741  * @exception   None
6742  * @param[in] None
6743  * @param[out]  value - State value.
6744  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6745  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6746  *
6747  * @remark      None
6748  */
6749 int bluetooth_dpm_get_desktop_connectivity_state(bt_dpm_status_t *value);
6750
6751 /**
6752  * @fn int bluetooth_dpm_set_discoverable_state(bt_dpm_status_t value);
6753  *
6754  * @brief Sets the Restriction for Discoverable state.
6755  *
6756  * This function is a synchronous call.
6757  *
6758  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6759  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6760  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6761  *
6762  * @exception   None
6763  * @param[in]   value - State value.
6764  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6765  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6766  *
6767  * @remark      None
6768  */
6769 int bluetooth_dpm_set_discoverable_state(bt_dpm_status_t value);
6770
6771 /**
6772  * @fn int bluetooth_dpm_get_discoverable_state(bt_dpm_status_t *value);
6773  *
6774  * @brief Reads the Restriction for Discoverable state.
6775  *
6776  * This function is a synchronous call.
6777  *
6778  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6779  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6780  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6781  *
6782  * @exception   None
6783  * @param[in] None
6784  * @param[out]  value - State value.
6785  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6786  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6787  *
6788  * @remark      None
6789  */
6790 int bluetooth_dpm_get_discoverable_state(bt_dpm_status_t *value);
6791
6792 /**
6793  * @fn int bluetooth_dpm_set_limited_discoverable_state(bt_dpm_status_t value);
6794  *
6795  * @brief Sets the Restriction for linited discoverable state..
6796  *
6797  * This function is a synchronous call.
6798  *
6799  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6800  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6801  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6802  *
6803  * @exception   None
6804  * @param[in]   value - State value.
6805  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6806  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6807  *
6808  * @remark      None
6809  */
6810 int bluetooth_dpm_set_limited_discoverable_state(bt_dpm_status_t value);
6811
6812 /**
6813  * @fn int bluetooth_dpm_get_limited_discoverable_state(bt_dpm_status_t *value);
6814  *
6815  * @brief Reads the Restriction for limited discoverable state.
6816  *
6817  * This function is a synchronous call.
6818  *
6819  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6820  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6821  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6822  *
6823  * @exception   None
6824  * @param[in] None
6825  * @param[out]  value - State value.
6826  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6827  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6828  *
6829  * @remark      None
6830  */
6831 int bluetooth_dpm_get_limited_discoverable_state(bt_dpm_status_t *value);
6832 /**
6833  * @fn int bluetooth_dpm_set_data_transfer_state(bt_dpm_status_t value);
6834  *
6835  * @brief Sets the Restriction for Data trasnfer.
6836  *
6837  * This function is a synchronous call.
6838  *
6839  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6840  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6841  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6842  *
6843  * @exception   None
6844  * @param[in]   value - State value.
6845  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6846  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6847  *
6848  * @remark      None
6849  */
6850 int bluetooth_dpm_set_data_transfer_state(bt_dpm_status_t value);
6851
6852
6853 /**
6854  * @fn int bluetooth_dpm_get_data_transfer_state(bt_dpm_status_t *value);
6855  *
6856  * @brief Reads the Restriction for Data trasnfer.
6857  *
6858  * This function is a synchronous call.
6859  *
6860  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6861  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6862  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6863  *
6864  * @exception   None
6865  * @param[in] None
6866  * @param[out]  value - State value.
6867  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6868  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6869  *
6870  * @remark      None
6871  */
6872 int bluetooth_dpm_get_data_transfer_state(bt_dpm_status_t *value);
6873
6874 /**
6875  * @}
6876  */
6877
6878 #ifdef __cplusplus
6879 }
6880 #endif                          /* __cplusplus */
6881 #endif                          /* _BLUETOOTH_API_H_*/