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