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