[bluetooth-frwk] updateInbox
[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 /**
4869  * @fn int bluetooth_map_update_inbox(void)
4870  * @brief Request remote to update its inbox.
4871  *
4872  * This function is a synchronous call.
4873  * No event corresponding to this api
4874  *
4875  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4876  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4877  *              BLUETOOTH_ERROR_INTERNAL - Update inbox failed \n
4878  *
4879  * @exception   None
4880  * @param[in]  session   Information about session.
4881  * @remark       None
4882  */
4883  int bluetooth_map_update_inbox(bt_map_session_info_s* session);
4884
4885  /* TODO: MAP, see above */
4886
4887
4888 /**
4889  * @fn int bluetooth_oob_read_local_data(bt_oob_data_t *local_oob_data)
4890  * @brief Read the local Hash and Randmizer.
4891  *
4892  * This function is a synchronous call.
4893  *
4894  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4895  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4896  *
4897  * @exception  None
4898  * @param[in]  None.
4899  * @param[out] local_oob_data - Pointer to the local OOB data
4900  *
4901  * @remark       None
4902  * @see None
4903  */
4904
4905 int bluetooth_oob_read_local_data(bt_oob_data_t *local_oob_data);
4906
4907
4908 /**
4909  * @fn int bluetooth_oob_add_remote_data(
4910  *                      const bluetooth_device_address_t *remote_device_address,
4911  *                      bt_oob_data_t *oob_data)
4912  * @brief Add/updated the remote device  Hash and Randmizer.
4913  *
4914  * This function is a synchronous call.
4915  * No event for this api..
4916  *
4917  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4918  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4919  *
4920  * @exception   None
4921  * @param[in] remote_device_address - Remote device address
4922  *            remote_oob_data - Ponter to Hash and Randomizer oob data structure
4923  *
4924  * @remark      None
4925  * @see         None
4926  */
4927
4928 int bluetooth_oob_add_remote_data(
4929                    const bluetooth_device_address_t *remote_device_address,
4930                    bt_oob_data_t *remote_oob_data);
4931
4932
4933 /**
4934  * @fn int bluetooth_oob_remove_remote_data(
4935  *                      const bluetooth_device_address_t *remote_device_address)
4936  * @brief Delete the Hash and Randomizer w.r.t the remote device address.
4937  *
4938  * This function is a synchronous call.
4939  * No event for this api..
4940  *
4941  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4942  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4943  *
4944  * @exception  None
4945  * @param[in] remote_device_address - Remote device address
4946  *
4947  * @remark       None
4948  * @see None
4949  */
4950
4951 int bluetooth_oob_remove_remote_data(
4952                         const bluetooth_device_address_t *remote_device_address);
4953
4954 /**
4955  * @fn int bluetooth_gatt_get_primary_services(const bluetooth_device_address_t *address,
4956  *                                              bt_gatt_handle_info_t *prim_svc);
4957  *
4958  * @brief Gets the GATT based primary services handle supported by remote device
4959  *
4960  * This function is a synchronous call.
4961  * The output parameter needs to be freed by calling bluetooth_gatt_free_primary_services()
4962  *
4963  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4964  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4965  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
4966  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
4967  *
4968  * @exception    None
4969  * @param[in]    address - Remote device address
4970  * @param[out] prim_svc - Structure containing remote service count and handle list.
4971  *
4972  * @remark      None
4973  * @see         bluetooth_gatt_free_primary_services()
4974  */
4975 int bluetooth_gatt_get_primary_services(const bluetooth_device_address_t *address,
4976                                                 bt_gatt_handle_info_t *prim_svc);
4977
4978 /**
4979  * @fn int bluetooth_gatt_discover_service_characteristics(const char *service_handle)
4980  *
4981  * @brief Discovers the characteristics of GATT based service of remote device
4982  *
4983  * This function is an asynchronous call.
4984  * This API is responded with BLUETOOTH_EVENT_GATT_SVC_CHAR_DISCOVERED
4985  *
4986  * @return   BLUETOOTH_ERROR_NONE  - Success \n
4987  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4988  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
4989  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
4990  *
4991  * @exception   None
4992  * @param[in]   service_handle - Handle for remote service.
4993  *
4994  * @remark      None
4995  * @see         None
4996  */
4997 int bluetooth_gatt_discover_service_characteristics(const char *service_handle);
4998
4999 int bluetooth_gatt_set_service_change_watcher(
5000                 const bluetooth_device_address_t *address, gboolean enable);
5001
5002 /**
5003  * @fn int bluetooth_gatt_get_service_property(const char *service_handle,
5004  *                                              bt_gatt_service_property_t *service);
5005  *
5006  * @brief Gets the properties of GATT based service of remote device
5007  *
5008  * This function is a synchronous call.
5009  * The output parameter needs to be freed by calling bluetooth_gatt_free_primary_services()
5010  *
5011  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5012  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5013  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5014  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5015  *
5016  * @exception   None
5017  * @param[in]   service_handle - Handle for remote service.
5018  * @param[out]  service - Structure containing remote service property.
5019  *
5020  * @remark      None
5021  * @see         bluetooth_gatt_free_service_property()
5022  */
5023 int bluetooth_gatt_get_service_property(const char *service_handle,
5024                                                 bt_gatt_service_property_t *service);
5025
5026 /**
5027  * @fn int bluetooth_gatt_watch_characteristics(const char *service_handle)
5028  *
5029  * @brief Register to GATT based service to receive value change notification/indication.
5030  *
5031  * This function is a synchronous call.
5032  * No event for this api.
5033  *
5034  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5035  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5036  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5037  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5038  *
5039  * @exception   None
5040  * @param[in]   service_handle - Handle for remote service.
5041  *
5042  * @remark      None
5043  * @see None
5044  */
5045 int bluetooth_gatt_watch_characteristics(const char *service_handle);
5046
5047 /**
5048  * @fn int bluetooth_gatt_unwatch_characteristics(const char *service_handle)
5049  *
5050  * @brief Unregister GATT based service to receive value change notification/indication.
5051  *
5052  * This function is a synchronous call.
5053  * No event for this api.
5054  *
5055  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5056  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5057  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5058  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5059  *
5060  * @exception   None
5061  * @param[in]   service_handle - Handle for remote service.
5062  *
5063  * @remark      None
5064  * @see         None
5065  */
5066 int bluetooth_gatt_unwatch_characteristics(const char *service_handle);
5067
5068 /**
5069  * @fn int bluetooth_gatt_get_characteristics_property(const char *char_handle,
5070  *                                              bt_gatt_char_property_t *characteristic);
5071  *
5072  * @brief Provides characteristic value along with properties.
5073  *
5074  * This function is a synchronous call.
5075  * The output parameter needs to be freed by calling bluetooth_gatt_free_char_property()
5076  *
5077  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5078  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5079  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5080  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5081  *
5082  * @exception   None
5083  * @param[in]   char_handle - Handle for Characteristic property.
5084  * @param[out] characteristic - Structure containing remote characteristic property.
5085  *
5086  * @remark      None
5087  * @see         bluetooth_gatt_free_char_property()
5088  */
5089 int bluetooth_gatt_get_characteristics_property(const char *char_handle,
5090                                                 bt_gatt_char_property_t *characteristic);
5091
5092 /**
5093  * @fn int bluetooth_gatt_get_char_descriptor_property(const char *char_handle,
5094  *                                              bt_gatt_char_property_t *characteristic);
5095  *
5096  * @brief Provides characteristic descriptor value along with its UUID.
5097  *
5098  * This function is a synchronous call.
5099  * The output parameter needs to be freed by calling bluetooth_gatt_free_desc_property()
5100  *
5101  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5102  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5103  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5104  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5105  *
5106  * @exception   None
5107  * @param[in]   desc_handle - Handle for Characteristic descriptor.
5108  * @param[out] descriptor - Structure containing remote characteristic descriptor property.
5109  *
5110  * @remark      None
5111  * @see         bluetooth_gatt_free_desc_property()
5112  */
5113 int bluetooth_gatt_get_char_descriptor_property(const char *desc_handle,
5114                                                 bt_gatt_char_descriptor_property_t *descriptor);
5115
5116
5117 /**
5118  * @fn int bluetooth_gatt_set_characteristics_value(const char *char_handle,
5119  *                                              const guint8 *value, int length)
5120  *
5121  * @brief Set characteristic value.
5122  *
5123  * This function is a synchronous call.
5124  *
5125  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5126  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5127  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5128  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5129  *
5130  * @exception   None
5131  * @param[in]   char_handle - Handle for Characteristic property.
5132  * @param[in]   value - New value to set for characteristic property.
5133  * @param[in]   length - Length of the value to be set.
5134  *
5135  * @remark      None
5136  * @see         None
5137  */
5138 int bluetooth_gatt_set_characteristics_value(const char *char_handle,
5139                                                 const guint8 *value, int length);
5140
5141 /**
5142  * @fn int bluetooth_gatt_set_characteristics_value_by_type(const char *char_handle,
5143  *                              const guint8 *value, int length, guint8 write_type)
5144  *
5145  * @brief Set characteristic value by write type.
5146  *
5147  * This function is a synchronous call if write type is "write without resonse"
5148  * and it is an asynchronous call if write type is "write with response"
5149  *
5150  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5151  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5152  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5153  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5154  *
5155  * @exception   None
5156  * @param[in]   char_handle - Handle for Characteristic property.
5157  * @param[in]   value - New value to set for characteristic property.
5158  * @param[in]   length - Length of the value to be set.
5159  * @param[in]   write_type - Type of write.
5160  *
5161  * @remark      None
5162  * @see         None
5163  */
5164 int bluetooth_gatt_set_characteristics_value_by_type(const char *char_handle,
5165                                 const guint8 *value, int length, guint8 write_type);
5166
5167
5168 /**
5169  * @fn int bluetooth_gatt_set_characteristics_value_request(const char *char_handle,
5170  *                                              const guint8 *value, int length)
5171  *
5172  * @brief Set characteristic value request.
5173  *
5174  * This function is an asynchronous call.
5175  *
5176  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5177  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5178  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5179  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5180  *
5181  * @exception   None
5182  * @param[in]   char_handle - Handle for Characteristic property.
5183  * @param[in]   value - New value to set for characteristic property.
5184  * @param[in]   length - Length of the value to be set.
5185   *
5186  * @remark      None
5187  * @see         None
5188  */
5189 int bluetooth_gatt_set_characteristics_value_request(const char *char_handle,
5190                                                 const guint8 *value, int length);
5191
5192 /**
5193  * @fn int bluetooth_gatt_read_characteristic_value(const char *char_handle)
5194  *
5195  * @brief Read characteristic value.
5196  *
5197  * This function is a asynchronous call.
5198  *
5199  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5200  *             BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5201  *             BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5202  *             BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5203  *
5204  * @exception  None
5205  * @param[in]  char_handle - Handle for Characteristic property.
5206  *
5207  * @remark     None
5208  * @see        None
5209  */
5210 int bluetooth_gatt_read_characteristic_value(const char *char_handle);
5211
5212 /**
5213  * @fn int bluetooth_gatt_get_service_from_uuid(bluetooth_device_address_t *address,
5214  *                                      const char *service_uuid,
5215  *                                      bt_gatt_service_property_t *service)
5216  *
5217  * @brief Gets the service property from a device based on a particular uuid
5218  *
5219  * This function is a synchronous call.
5220  *
5221  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5222  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5223  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5224  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5225  *
5226  * @exception   None
5227  * @param[in]   address - BD address of the remote device
5228  * @param[in]   service_uuid - uuid of the service.
5229  * @param[out] service - Structure containing the service property.
5230  *
5231  * @remark      None
5232  * @see         None
5233  */
5234 int bluetooth_gatt_get_service_from_uuid(bluetooth_device_address_t *address,
5235                                         const char *service_uuid,
5236                                         bt_gatt_service_property_t *service);
5237
5238 /**
5239  * @fn int bluetooth_gatt_get_char_from_uuid(const char *service_handle,
5240  *                                                      const char *char_uuid)
5241  *
5242  * @brief Gets the characteristic property from a service based on a particular char uuid
5243  *
5244  * This function is an asynchronous call.
5245  * This API is responded with BLUETOOTH_EVENT_GATT_GET_CHAR_FROM_UUID
5246  *
5247  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5248  *              BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5249  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5250  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5251  *
5252  * @exception   None
5253  * @param[in]   service_handle - Service handle.
5254  * @param[in]   uuid - Characteristic uuid.
5255  *
5256  * @remark      None
5257  * @see         None
5258  */
5259 int bluetooth_gatt_get_char_from_uuid(const char *service_handle,
5260                                                 const char *char_uuid);
5261
5262 /**
5263  * @fn int bluetooth_gatt_free_primary_services(bt_gatt_handle_info_t *prim_svc);
5264  *
5265  * @brief Releases the memory allocated by bluetooth_gatt_get_primary_services()
5266  *
5267  * This function is a synchronous call.
5268  * The input parameter is obtained by calling bluetooth_gatt_get_primary_services()
5269  *
5270  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5271  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5272  *
5273  * @exception   None
5274  * @param[in]   prim_svc - GATT handle info structure
5275  *
5276  * @remark      None
5277  * @see         bluetooth_gatt_get_primary_services()
5278  */
5279 int bluetooth_gatt_free_primary_services(bt_gatt_handle_info_t *prim_svc);
5280
5281 /**
5282  * @fn int bluetooth_gatt_free_service_property(bt_gatt_service_property_t *svc_pty);
5283  *
5284  * @brief  Releases the memory allocated by bluetooth_gatt_get_service_property()
5285  *
5286  * This function is a synchronous call.
5287  * The input parameter is obtained by calling bluetooth_gatt_get_service_property()
5288  *
5289  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5290  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5291  *
5292  * @exception   None
5293  * @param[in]   svc_pty - GATT service property structure.
5294  *
5295  * @remark      None
5296  * @see         bluetooth_gatt_get_service_property()
5297  */
5298 int bluetooth_gatt_free_service_property(bt_gatt_service_property_t *svc_pty);
5299
5300 /**
5301  * @fn int bluetooth_gatt_free_char_property(bt_gatt_char_property_t *char_pty);
5302  *
5303  * @brief Provides characteristic value along with properties.
5304  *
5305  * This function is a synchronous call.
5306  * The input parameter is obtained by calling bluetooth_gatt_get_characteristics_property()
5307  *
5308  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5309  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5310  *
5311  * @exception   None
5312  * @param[in]   char_pty - GATT characteristics property structure.
5313  *
5314  * @remark      None
5315  * @see         bluetooth_gatt_get_characteristics_property()
5316  */
5317 int bluetooth_gatt_free_char_property(bt_gatt_char_property_t *char_pty);
5318
5319 /**
5320  * @fn int bluetooth_gatt_free_desc_property(bt_gatt_char_descriptor_property_t *desc_pty);
5321  *
5322  * @brief Releases the memory allocated by bluetooth_gatt_get_char_descriptor_property()
5323  *
5324  * This function is a synchronous call.
5325  * The input parameter is obtained by calling bluetooth_gatt_get_char_descriptor_property()
5326  *
5327  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5328  *              BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5329  *
5330  * @exception   None
5331  * @param[in]   desc_pty - GATT characteristics descriptor property structure.
5332  *
5333  * @remark      None
5334  * @see         bluetooth_gatt_get_char_descriptor_property()
5335  */
5336 int bluetooth_gatt_free_desc_property(bt_gatt_char_descriptor_property_t *desc_pty);
5337
5338 int bluetooth_connect_le(const bluetooth_device_address_t *device_address, gboolean auto_connect);
5339
5340 int bluetooth_disconnect_le(const bluetooth_device_address_t *device_address);
5341
5342  /**
5343  * @fn int bluetooth_gatt_discover_characteristic_descriptor(const char *characteristic_handle);
5344  *
5345  * @brief Discovers the characteristic descriptor value of a characteristic within its definition, asynchronously
5346  *
5347  * The input parameter is obtained by calling bluetooth_gatt_get_characteristics_property()
5348  *
5349  * @return  BLUETOOTH_ERROR_NONE  - Success \n
5350  *                      BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5351  *
5352  * @exception   None
5353  * @param[in]   characteristic_handle - The characteristic handle for which characteristic descriptor has to be discovered.
5354  *
5355  * @remark      None
5356  */
5357 int bluetooth_gatt_discover_characteristic_descriptor(const char *characteristic_handle);
5358
5359 /**
5360  * @fn int bluetooth_gatt_read_descriptor_value(const char *desc_handle)
5361  *
5362  * @brief Read characteristic descriptor value.
5363  *
5364  * This function is a asynchronous call.
5365  *
5366  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5367  *             BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5368  *             BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5369  *             BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5370  *
5371  * @exception  None
5372  * @param[in]  desc_handle - Handle for Characteristic descriptor
5373  *
5374  * @remark     None
5375  * @see        None
5376  */
5377 int bluetooth_gatt_read_descriptor_value(const char *desc_handle);
5378
5379 /**
5380  * @fn int bluetooth_gatt_write_descriptor_value(const char *desc_handle,
5381  *                      const guint8 *value, int length);
5382  *
5383  * @brief Set characteristic descriptor value.
5384  *
5385  * This function is a asynchronous call.
5386  *
5387  * @return   BLUETOOTH_ERROR_NONE  - Success \n
5388  *             BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5389  *             BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5390  *             BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5391  *
5392  * @exception  None
5393  * @param[in]  desc_handle - Handle for Characteristic descriptor
5394  * @param[in]  value - New value to set for characteristic descriptor
5395  * @param[in]  length - Length of the value to be set.
5396  *
5397  * @remark     None
5398  * @see        None
5399  */
5400 int bluetooth_gatt_write_descriptor_value(const char *desc_handle,
5401                         const guint8 *value, int length);
5402
5403 /* @fn int bluetooth_gatt_init(void)
5404 *
5405 * @brief Initializes the gatt service.
5406 *
5407 * This function is a synchronous call.
5408 * @return   BLUETOOTH_ERROR_NONE        - Success \n
5409 *       BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5410 *       BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5411 *       BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5412 *
5413 * @exception     None
5414 * @remark  Adapter should be enabled
5415 * @see  bluetooth_gatt_deinit()
5416 */
5417 int bluetooth_gatt_init(void);
5418
5419 /* @fn int bluetooth_gatt_init(void)
5420 *
5421 * @brief DeInitializes the gatt service.
5422 *
5423 * This function is a synchronous call.
5424 * @return   BLUETOOTH_ERROR_NONE        - Success \n
5425 *       BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5426 *       BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5427 *       BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5428 *
5429 * @exception     None
5430 * @remark  Adapter should be enabled
5431 * @see  bluetooth_gatt_init()
5432 */
5433 int bluetooth_gatt_deinit(void);
5434
5435 /* @fn int bluetooth_gatt_add_service(const char *svc_uuid,
5436                         unsigned char **svc_path)
5437 *
5438 * @brief Exports a new gatt service to the service interface.
5439 *
5440 * This function is a synchronous call.
5441 *
5442 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5443 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5444 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5445 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5446 *
5447 * @exception     None
5448 * @param[in]   svc_uuid  Gatt service uuid.
5449 * @param[out] svc_path  service object path of the exported service.
5450 * @remark  Adapter should be enabled
5451 * @see  bluetooth_gatt_init()
5452 */
5453 int bluetooth_gatt_add_service(const char *svc_uuid,
5454                         char **svc_path);
5455
5456 /* @fn int bluetooth_gatt_add_new_characteristic(
5457                         const char *svc_path, const char *char_uuid,
5458                         bt_gatt_permission_t permissions,
5459                         bt_gatt_characteristic_property_t properties,
5460                         int flags_length, char **char_path);;
5461 *
5462 * @brief Exports a new gatt characteristic to the characteristic interface.
5463 *
5464 * This function is a synchronous call.
5465 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5466 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5467 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5468 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5469 * @exception     None
5470 * @param[in]   svc_path service object path of the exported service.
5471 * @param[in]   char_uuid  Gatt service uuid.
5472 * @param[in]   properties       GATT characteristic properties.
5473 * @param[out] char_path characteristic object path of the exported characteristic.
5474 *
5475 * @remark  Adapter should be enabled
5476 * @see  bluetooth_gatt_add_service()
5477 */
5478 int bluetooth_gatt_add_new_characteristic(
5479                         const char *svc_path, const char *char_uuid,
5480                         bt_gatt_permission_t permissions,
5481                         bt_gatt_characteristic_property_t properties,
5482                         char **char_path);
5483
5484 /* @fn bluetooth_gatt_set_characteristic_value(
5485                         const char *characteristic, const char *char_value,
5486                         int value_length);
5487 *
5488 * @brief adds gatt charactertisic value to the given charactertistic path.
5489 *
5490 * This function is a synchronous call.
5491 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5492 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5493 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5494 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5495 * @exception     None
5496 * @param[in]   char_value Value of the GATT characteristic to be added.
5497 * @param[in]   value_length length of the chantacteristic value..
5498 * @param[out] characteristic characteristic object path..
5499 *
5500 * @remark  Adapter should be enabled
5501 * @see  bluetooth_gatt_add_service()
5502 */
5503 int bluetooth_gatt_set_characteristic_value(
5504                         const char *characteristic, const char *char_value,
5505                         int value_length);
5506
5507 /* @fn  int bluetooth_gatt_add_descriptor(
5508                         const char *char_path, const char *desc_uuid,
5509                         bt_gatt_permission_t permissions,
5510                         char **desc_path);
5511 *
5512 * @brief Exports a new gatt descriptor to the descriptor interface.
5513 *
5514 * This function is a synchronous call.
5515 *
5516 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5517 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5518 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5519 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5520 *
5521 * @exception    None
5522 * @param[in]    desc_uuid  Gatt descriptor uuid.
5523 * @param[in]    desc_value      GATT descriptor value.
5524 * @param[in]    value_length    Length of GATT descriptor value.
5525 * @param[in]    permissions     descriptor permissions.
5526 * @param[in]    properties      GATT descriptor properties.
5527 * @param[in]    char_path       characteristics object path of the exported character.
5528 *
5529 * @remark  Adapter should be enabled
5530 * @see  bluetooth_gatt_add_service()
5531 * @see  bluetooth_gatt_add_characteristics()
5532 */
5533 int bluetooth_gatt_add_descriptor(
5534                         const char *char_path, const char *desc_uuid,
5535                         bt_gatt_permission_t permissions,
5536                         char **desc_path);
5537
5538 /* @fn int bluetooth_gatt_set_descriptor_value(
5539                    const char *desc_path, const char *desc_value,
5540                    int value_length);
5541 *
5542 * @brief Adds value to the given descriptor handle.
5543 *
5544 * This function is a synchronous call.
5545 *
5546 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5547 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5548 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5549 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5550 *
5551 * @exception     None
5552 * @param[in]   desc_value       GATT descriptor value.
5553 * @param[in]   value_length     Length of GATT descriptor value.
5554 * @param[in]   desc_path descriptor path to which the value needs to be added.
5555 *
5556 * @remark  Adapter should be enabled
5557 * @see  bluetooth_gatt_add_service()
5558 * @see  bluetooth_gatt_add_characteristics()
5559 */
5560 int bluetooth_gatt_set_descriptor_value(
5561                    const char *desc_path, const char *desc_value,
5562                    int value_length);
5563
5564 /* @fn int bluetooth_gatt_get_service(const char *svc_uuid);
5565 *
5566 * @brief Reads the Service registered on manager interface.
5567 *
5568 * This function is a synchronous call.
5569 *
5570 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5571 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5572 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5573 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5574 *
5575 * @exception     None
5576 * @param[in]   svc_uuid  Gatt Service uuid.
5577 *
5578 * @remark  Adapter should be enabled and service should be registered.
5579 * @see  bluetooth_gatt_register_service()
5580 */
5581 int bluetooth_gatt_get_service(const char *svc_uuid);
5582
5583 /* @fn int bluetooth_gatt_register_service(const  char *svc_path)
5584 *
5585 * @brief Registers the given service path with the library.
5586 *
5587 * This function is a synchronous call.
5588 *
5589 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5590 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5591 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5592 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5593 *
5594 * @exception     None
5595 * @param[in] svc_path   service object path of the exported service.
5596 *
5597 * @remark  Adapter should be enabled
5598 * @see  bluetooth_gatt_add_service()
5599 * @see  bluetooth_gatt_add_characteristics()
5600 * @see  bluetooth_gatt_add_descriptor()
5601 * @see  bluetooth_gatt_register_application()
5602 */
5603 int bluetooth_gatt_register_service(const char *svc_path);
5604
5605 /* @fn int bluetooth_gatt_register_application(void)
5606 *
5607 * @brief Registers the application with the bluez gatt server.
5608 *
5609 * This function is a synchronous call.
5610 *
5611 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5612 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5613 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5614 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5615 *
5616 * @exception     None
5617 *
5618 * @remark  Adapter should be enabled
5619 * @see  bluetooth_gatt_init()
5620 * @see  bluetooth_gatt_add_service()
5621 * @see  bluetooth_gatt_add_characteristics()
5622 * @see  bluetooth_gatt_add_descriptor()
5623 * @see  bluetooth_gatt_register_service()
5624 */
5625 int bluetooth_gatt_register_application(void);
5626
5627 /* @fn int bluetooth_gatt_unregister_service(const  char *svc_path)
5628 *
5629 * @brief Removes(unregister) service from the bluez gatt server db.
5630 *
5631 * This function is a synchronous call.
5632 *
5633 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5634 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5635 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5636 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5637 *
5638 * @exception     None
5639 * @param[in] svc_path   service object path of the exported service.
5640 *
5641 * @remark  Adapter should be enabled
5642 * @see  bluetooth_gatt_add_service()
5643 * @see  bluetooth_gatt_add_characteristics()
5644 * @see  bluetooth_gatt_add_descriptor()
5645 * @see bluetooth_gatt_register_service()
5646 */
5647 int bluetooth_gatt_unregister_service(const char *svc_path);
5648
5649 /* @fn int bluetooth_gatt_unregister_application(void)
5650 *
5651 * @brief Removes(unregister) the application with the bluez gatt server,
5652 *        and deletes all the service registered.
5653 *
5654 * This function is a synchronous call.
5655 *
5656 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5657 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5658 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5659 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5660 *
5661 * @exception     None
5662 *
5663 * @remark  Adapter should be enabled
5664 * @see  bluetooth_gatt_init()
5665 * @see  bluetooth_gatt_add_service()
5666 * @see  bluetooth_gatt_add_characteristics()
5667 * @see  bluetooth_gatt_add_descriptor()
5668 * @see  bluetooth_gatt_register_service()
5669 * @see  bluetooth_gatt_unregister_service()
5670 */
5671 int bluetooth_gatt_unregister_application(void);
5672
5673 /* @fn int bluetooth_gatt_send_response(int request_id,
5674 *                               int offset, char *value, int value_length)
5675 *
5676 * @brief Updates the attribute value in local attribute list.
5677 *
5678 * This function is a synchronous call.
5679 *
5680 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5681 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5682 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5683 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5684 *
5685 * @exception     None
5686 * @param[in] request_id The identification of a read request
5687 * @param[in] req_type The identification of  request type (TRUE for Read request and FALSE for write request)
5688 * @param[in] resp_state The identification of response state
5689 * @param[in] offset The offset from where a value is read
5690 * @param[in] value The value to be sent. It will be sent from @a offset.
5691 *               If it is NULL, a requested GATT handle's value will be sent from @a offset.
5692 * @param[in] value_length Value Length.
5693 *
5694 * @remark  Adapter should be enabled
5695 * @see  bluetooth_gatt_add_service()
5696 * @see  bluetooth_gatt_add_characteristics()
5697 * @see  bluetooth_gatt_add_descriptor()
5698 * @see bluetooth_gatt_register_service()
5699 */
5700 int bluetooth_gatt_send_response(int request_id, guint req_type,
5701                                 int resp_state, int offset, char *value, int value_length);
5702
5703 /* @fn bluetooth_gatt_server_set_notification(const char *char_path)
5704 *
5705 * @brief Sets the notification property for a characteristic.
5706 *
5707 * This function is a synchronous call.
5708 *
5709 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5710 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5711 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5712 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5713 *
5714 * @exception     None
5715 * @param[in] char_path characteristic object path.
5716 * @param[in]   unicast_address remote device address. if set notification is sent to only one device.
5717 *
5718 * @remark  Adapter should be enabled
5719 * @see  bluetooth_gatt_update_characteristic()
5720 */
5721 int bluetooth_gatt_server_set_notification(const char *char_path,
5722                                 bluetooth_device_address_t *unicast_address);
5723
5724 /* @fn int bluetooth_gatt_delete_services(void)
5725 *
5726 * @brief deletes (unregisters) all services from the gatt server database..
5727 *
5728 * This function is a synchronous call.
5729 *
5730 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5731 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5732 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5733 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5734 *
5735 * @exception     None
5736 *
5737 * @remark  Adapter should be enabled
5738 * @see  bluetooth_gatt_add_service()
5739 * @see  bluetooth_gatt_add_characteristics()
5740 * @see  bluetooth_gatt_add_descriptor()
5741 * @see bluetooth_gatt_register_service()
5742 * @see bluetooth_gatt_unregister_service()
5743 */
5744 int bluetooth_gatt_delete_services(void);
5745
5746 /* @fn int bluetooth_gatt_update_characteristic(void)
5747 *
5748 * @brief updates the given characteristic with a new value
5749 *
5750 * This function is a synchronous call.
5751 *
5752 * @return       BLUETOOTH_ERROR_NONE    - Success \n
5753 *        BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5754 *        BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5755 *        BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5756 *
5757 * @exception     None
5758 *
5759 * @remark  Adapter should be enabled
5760 * @see  bluetooth_gatt_add_service()
5761 * @see  bluetooth_gatt_add_characteristics()
5762 * @see  bluetooth_gatt_add_descriptor()
5763 * @see bluetooth_gatt_register_service()
5764 * @see bluetooth_gatt_unregister_service()
5765 */
5766 int bluetooth_gatt_update_characteristic(const char *char_path,
5767                 const char* char_value, int value_length);
5768
5769 /**
5770  * @fn int bluetooth_set_advertising(int handle, gboolean enable);
5771  *
5772  * @brief Set advertising status.
5773  *
5774  * This function is used to enable or disable LE advertising.
5775  * Once advertising is enabled, Advertising data is transmitted in the advertising packets
5776  *
5777  * This function is a synchronous call.
5778  *
5779  * @return      BLUETOOTH_ERROR_NONE - Success \n
5780  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5781  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5782  *
5783  * @exception   None
5784  * @param[in]   enable - The status of advertising
5785  *
5786  * @remark      None
5787  * @see         bluetooth_set_advertising_data
5788  */
5789 int bluetooth_set_advertising(int handle, gboolean enable);
5790
5791 /**
5792  * @fn int bluetooth_set_custom_advertising(int handle, gboolean enable, bluetooth_advertising_params_t *params);
5793  *
5794  * @brief Set advertising status along with interval value.
5795  *
5796  * This function is used to enable or disable LE advertising.
5797  * Interval_min and Interval_max is used to set the best advertising interval.
5798  * Once advertising is enabled, Advertising data is transmitted in the advertising packets
5799  *
5800  * This function is a synchronous call.
5801  *
5802  * @return      BLUETOOTH_ERROR_NONE - Success \n
5803  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5804  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5805  *
5806  * @exception   None
5807  * @param[in]   enable - The status of advertising
5808  * @param[in]   interval_min - Minimum interval of advertising (msec)
5809  * @param[in]   interval_max - Maximum interval of advertising (msec)
5810  * @param[in]   filter_policy - Advertising filter policy
5811  *
5812  * @remark      None
5813  * @see         bluetooth_set_advertising_data
5814  */
5815 int bluetooth_set_custom_advertising(int handle, gboolean enable,
5816                                         bluetooth_advertising_params_t *params);
5817
5818 /**
5819  * @fn int bluetooth_get_advertising_data(bluetooth_advertising_data_t *value, int *length);
5820  * @brief Get the advertising data
5821  *
5822  * This function is used to get advertising data.
5823  * Before calling this API, the adapter should be enabled.
5824  *
5825  * This function is a synchronous call.
5826  *
5827  * @return      BLUETOOTH_ERROR_NONE - Success \n
5828  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5829  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter (NULL buffer)\n
5830  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5831  *
5832  * @param[out]  value - Advertising data structure.
5833  * @param[out]  length - The length of Advertising data.
5834  *
5835  * @remark      None
5836 @code
5837 bluetooth_advertising_data_t *value = { {0} };
5838 int length;
5839 int ret = 0;
5840 ret = bluetooth_get_advertising_data(&value, &length);
5841 @endcode
5842  */
5843 int bluetooth_get_advertising_data(bluetooth_advertising_data_t *value, int *length);
5844
5845 /**
5846  * @fn int bluetooth_set_advertising_data(int handle, const bluetooth_advertising_data_t *value, int length);
5847  *
5848  * @brief Set advertising data with value
5849  *
5850  * This function is used to set advertising data and Maximum size of advertising data
5851  *  is 28 byte (Except Flag)
5852  *
5853  * This function is a synchronous call.
5854  *
5855  * @return      BLUETOOTH_ERROR_NONE - Success \n
5856  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5857  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5858  *
5859  * @exception   None
5860  * @param[in]   value - Advertising data structure.
5861  *
5862  * @remark      None
5863  */
5864 int bluetooth_set_advertising_data(int handle, const bluetooth_advertising_data_t *value, int length);
5865
5866 /**
5867  * @fn int bluetooth_check_privilege_advertising_parameter(void);
5868  *
5869  * @brief Check the privilege for advertising parameter setting
5870  *
5871  * This function is a synchronous call.
5872  *
5873  * @return      BLUETOOTH_ERROR_NONE - Success \n
5874  *              BLUETOOTH_ERROR_PERMISSION_DEINED - Permission deined \n
5875  *
5876  * @exception   None
5877  *
5878  * @remark      None
5879  */
5880 int bluetooth_check_privilege_advertising_parameter(void);
5881
5882 /**
5883  * @fn int bluetooth_get_scan_response_data(bluetooth_scan_resp_data_t *value, int *length);
5884  * @brief Get the LE scan response data
5885  *
5886  * This function is used to get scan response data.
5887  * Before calling this API, the adapter should be enabled.
5888  *
5889  * This function is a synchronous call.
5890  *
5891  * @return      BLUETOOTH_ERROR_NONE - Success \n
5892  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5893  *              BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter (NULL buffer)\n
5894  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5895  *
5896  * @param[out]  value - Scan response data structure.
5897  * @param[out]  length - The length of Scan response data.
5898  *
5899  * @remark      None
5900 @code
5901 bluetooth_scan_resp_data_t *value = { {0} };
5902 int length;
5903 int ret = 0;
5904 ret = bluetooth_get_scan_response_data(&value, &length);
5905 @endcode
5906  */
5907 int bluetooth_get_scan_response_data(bluetooth_scan_resp_data_t *value, int *length);
5908
5909 /**
5910  * @fn int bluetooth_set_scan_response_data(int handle, const bluetooth_scan_resp_data_t *value, int length);
5911  *
5912  * @brief Set scan response data with value
5913  *
5914  * This function is used to set scan response data and Maximum size of scan response data is 31 byte
5915  *
5916  * This function is a synchronous call.
5917  *
5918  * @return      BLUETOOTH_ERROR_NONE - Success \n
5919  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5920  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5921  *
5922  * @exception   None
5923  * @param[in]   value - LE Scan response data structure.
5924  *
5925  * @remark      None
5926  */
5927 int bluetooth_set_scan_response_data(int handle, const bluetooth_scan_resp_data_t *value, int length);
5928
5929 /**
5930  * @fn int bluetooth_set_scan_parameters(bluetooth_le_scan_params_t *params);
5931  *
5932  * @brief Set scan interval and window
5933  *
5934  * This function is used to set LE scan interval and window size
5935  *
5936  * This function is a synchronous call.
5937  *
5938  * @return      BLUETOOTH_ERROR_NONE - Success \n
5939  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5940  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
5941  *
5942  * @exception   None
5943  * @param[in]   interval - Interval of LE scan (msec)
5944  * @param[in]   window - Window size of LE scan (msec)
5945  *
5946  * @remark      None
5947  */
5948 int bluetooth_set_scan_parameters(bluetooth_le_scan_params_t *params);
5949
5950 /**
5951  * @fn int bluetooth_is_advertising(void)
5952  * @brief Check for the advertising is in-progress or not.
5953  *
5954  * This API is used to check the current status of the advertising procedure.
5955  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
5956  * this API.
5957  *
5958  * This function checks whether the advertising is started or not.
5959  *
5960  * This function is a synchronous call.
5961  *
5962  * @param[out] is_advertising The advertising status: (@c TRUE = in progress, @c  false = not in progress)
5963  *
5964  * @return      BLUETOOTH_ERROR_NONE - Success \n
5965  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5966  *
5967  * @remark      None
5968  * @see         bluetooth_set_advertising, bluetooth_set_custom_advertising
5969
5970 @code
5971 int ret;
5972 gboolean is_advertising = 0;
5973
5974 ret = bluetooth_is_advertising(&is_advertising);
5975 @endcode
5976  */
5977 int bluetooth_is_advertising(gboolean *is_advertising);
5978
5979 /**
5980  * @fn int bluetooth_add_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type)
5981  * @brief Add LE device to white list
5982  *
5983  * This API is used to add LE device to white list
5984  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
5985  * this API.
5986  *
5987  *
5988  * This function is a synchronous call.
5989  *
5990  * @param[in] address The address of remote device
5991  *
5992  * @return      BLUETOOTH_ERROR_NONE - Success \n
5993  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
5994  *
5995  * @remark      None
5996  * @see         bluetooth_set_custom_advertising
5997  */
5998 int bluetooth_add_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type);
5999
6000 /**
6001  * @fn int bluetooth_remove_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type)
6002  * @brief Remove LE device from white list
6003  *
6004  * This API is used to remove LE device from white list
6005  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
6006  * this API.
6007  *
6008  *
6009  * This function is a synchronous call.
6010  *
6011  * @param[in] address The address of remote device
6012  *
6013  * @return      BLUETOOTH_ERROR_NONE - Success \n
6014  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6015  *
6016  * @remark      None
6017  * @see         bluetooth_set_custom_advertising
6018  */
6019 int bluetooth_remove_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type);
6020
6021 /**
6022  * @fn int bluetooth_clear_white_list(void)
6023  * @brief Clear white list
6024  *
6025  * This API is used to clear white list
6026  * Before calling this API, make sure that the adapter is enabled. There is no callback event for
6027  * this API.
6028  *
6029  *
6030  * This function is a synchronous call.
6031  *
6032  * @param[in] address The address of remote device
6033  *
6034  * @return      BLUETOOTH_ERROR_NONE - Success \n
6035  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6036  *
6037  * @remark      None
6038  * @see         bluetooth_set_custom_advertising
6039  */
6040 int bluetooth_clear_white_list(void);
6041
6042 /**
6043  * @fn int bluetooth_le_conn_update(bluetooth_device_address_t *address,
6044  *          const bluetooth_le_connection_param_t *parameters)
6045  * @brief update connection paramter of LE connection.
6046  *
6047  * This function is a synchronous call.
6048  *
6049  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6050  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6051  *
6052  * @exception  None
6053  * @param[in]  address - remote device address value.
6054  * @param[in]  parameters - new connection parameters.
6055  *
6056  * @remark       None
6057  * @see     bluetooth_bond_device
6058  */
6059 int bluetooth_le_conn_update(const bluetooth_device_address_t *address,
6060                 const bluetooth_le_connection_param_t *parameters);
6061
6062 /**
6063  * @fn int bluetooth_enable_le_privacy(gboolean enable_privacy);
6064  *
6065  * @brief Enable/Disable LE Privacy feature.
6066  *
6067  * This function is used to enable or disable LE Privacy feature.
6068  * Once Privacy feature is enabled, Adapter can use Random Address for more security.
6069  *
6070  * This function is a synchronous call.
6071  *
6072  * @return      BLUETOOTH_ERROR_NONE - Success \n
6073  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6074  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6075  *
6076  * @exception   None
6077  * @param[in]   enable_privacy - The status of Privacy feature to be activated/deactivated[True/False].
6078  *
6079  * @remark      None
6080  */
6081 int bluetooth_enable_le_privacy(gboolean enable_privacy);
6082
6083 /**
6084  * @fn int bluetooth_set_le_static_random_address(gboolean enable);
6085  *
6086  * @brief Enable/Disable LE static random address.
6087  *
6088  * This function is used to enable or disable LE static random address.
6089  *
6090  * This function is a synchronous call.
6091  *
6092  * @return      BLUETOOTH_ERROR_NONE - Success \n
6093  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6094  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6095  *
6096  * @exception   None
6097  * @param[in]   enable - The status of LE static random address to be activated/deactivated[True/False].
6098  *
6099  * @remark      None
6100  */
6101 int bluetooth_set_le_static_random_address(gboolean enable);
6102
6103 /**
6104  * @fn int bluetooth_update_le_connection_mode(bluetooth_device_address_t *address,
6105  *                                             bluetooth_le_connection_mode_t mode)
6106  * @brief update connection paramter of LE connection.
6107  *
6108  * This function is a synchronous call.
6109  *
6110  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6111  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6112  *           BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6113  *
6114  * @exception  None
6115  * @param[in]  address - remote device address value.
6116  * @param[in]  mode - new connection mode.
6117  *
6118  * @remark       None
6119  */
6120 int bluetooth_update_le_connection_mode(const bluetooth_device_address_t *address,
6121                 bluetooth_le_connection_mode_t mode);
6122
6123 /**
6124  * @fn int bluetooth_request_att_mtu(const bluetooth_device_address_t *device_address, guint16 mtu)
6125  * @brief Request for new ATT MTU value.
6126  *
6127  * This function is a asynchronous call.
6128  *
6129  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6130  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6131  *           BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6132  *
6133  * @exception  None
6134  * @param[in]  address - remote device address value.
6135  * @param[in]  mtu - MTU value to be set.
6136  *
6137  * @remark       None
6138  */
6139 int bluetooth_request_att_mtu(const bluetooth_device_address_t *device_address, unsigned int mtu);
6140
6141 /**
6142  * @fn int bluetooth_get_att_mtu(const bluetooth_device_address_t *device_address,
6143  *                              unsigned int *mtu)
6144  * @brief Gets the xisting MTU value set for a connection.
6145  *
6146  * This function is a synchronous call.
6147  *
6148  * @return       BLUETOOTH_ERROR_NONE  - Success \n
6149  *                       BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6150  *                       BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6151  *
6152  * @exception  None
6153  * @param[in]  address - remote device address value.
6154  * @param[out]  mtu - MTU value set for the connection.
6155  *
6156  * @remark               None
6157  */
6158 int bluetooth_get_att_mtu(const bluetooth_device_address_t *device_address,
6159                                 unsigned int *mtu);
6160
6161 /**
6162  * @fn int bluetooth_get_device_ida(const bluetooth_device_address_t *device_rpa,
6163  *                                      bluetooth_device_address_t *id_address)
6164  * @brief Gets the Identity address of remote device.
6165  *
6166  * This function is a synchronous call.
6167  *
6168  * @return              BLUETOOTH_ERROR_NONE  - Success \n
6169  *                      BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6170  *                      BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6171  *
6172  * @exception  None
6173  * @param[in]  device_rpa - remote Resolvable private address.
6174  * @param[out] id_address - remote Identity device address value.
6175  *
6176  * @remark               None
6177  */
6178 int bluetooth_get_device_ida(const bluetooth_device_address_t *device_rpa,
6179         bluetooth_device_address_t *id_address);
6180
6181 /**
6182  * @fn int bluetooth_le_read_maximum_data_length()
6183  * @brief reads the maximum LE data length supported in the controller.
6184  *
6185  * This function is a synchronous call.
6186  *
6187  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6188  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6189  *
6190  * @exception  None
6191  *
6192  * @remark       None
6193  */
6194 int bluetooth_le_read_maximum_data_length(
6195                         bluetooth_le_read_maximum_data_length_t *max_le_datalength);
6196 /**
6197  * @fn int bluetooth_le_write_host_suggested_default_data_length()
6198  * @brief writes the host suggested values for the controllers max transmitted no of payload
6199  * octects to be used for new connections.
6200  *
6201  * This function is a synchronous call.
6202  *
6203  * @return   BLUETOOTH_ERROR_NONE  - Success \n
6204  *           BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6205  *
6206  * @exception  None
6207  *
6208  * @remark       None
6209  */
6210 int bluetooth_le_write_host_suggested_default_data_length(
6211                 const unsigned int def_tx_Octets, const unsigned int def_tx_Time);
6212
6213 int bluetooth_le_read_suggested_default_data_length(
6214         bluetooth_le_read_host_suggested_data_length_t *le_data_length);
6215
6216 int bluetooth_le_set_data_length(bluetooth_device_address_t *address,
6217         const unsigned int max_tx_octets, const unsigned int max_tx_time);
6218
6219 int bluetooth_pbap_init(void);
6220 int bluetooth_pbap_deinit(void);
6221 int bluetooth_pbap_connect(const bluetooth_device_address_t *address);
6222 int bluetooth_pbap_disconnect(const bluetooth_device_address_t *address);
6223 int bluetooth_pbap_get_phonebook_size(const bluetooth_device_address_t *address,
6224                 bt_pbap_folder_t *folder);
6225 int bluetooth_pbap_get_phonebook(const bluetooth_device_address_t *address,
6226                 bt_pbap_folder_t *folder, bt_pbap_pull_parameters_t *app_param);
6227 int bluetooth_pbap_get_list(const bluetooth_device_address_t *address,
6228                 bt_pbap_folder_t *folder, bt_pbap_list_parameters_t *app_param);
6229 int bluetooth_pbap_pull_vcard(const bluetooth_device_address_t *address,
6230                 bt_pbap_folder_t *folder, bt_pbap_pull_vcard_parameters_t *app_param);
6231 int bluetooth_pbap_phonebook_search(const bluetooth_device_address_t *address,
6232                 bt_pbap_folder_t *folder, bt_pbap_search_parameters_t *app_param);
6233
6234 /**
6235  * @fn int bluetooth_set_manufacturer_data(const bluetooth_manufacturer_data_t *value);
6236  *
6237  * @brief Set manufacturer data with value
6238  *
6239  * This function is used to set manufacturer data.
6240  *
6241  * This function is a synchronous call.
6242  *
6243  * @return      BLUETOOTH_ERROR_NONE - Success \n
6244  *              BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6245  *              BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6246  *
6247  * @exception   None
6248  * @param[in]   value - Manufacturer data structure.
6249  *
6250  * @remark      None
6251  */
6252 int bluetooth_set_manufacturer_data(const bluetooth_manufacturer_data_t *value);
6253
6254 int bluetooth_set_passkey_notification(gboolean enable);
6255
6256 /**
6257  * @fn int bluetooth_dpm_is_mode_allowed(void);
6258  *
6259  * @brief Checks Restriction for BT mode(BT allowed or not)
6260  *
6261  * This function is a synchronous call.
6262  *
6263  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6264  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6265  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6266  *
6267  * @exception   None
6268  *  @param[in] None
6269  *
6270  * @remark      None
6271  */
6272 int bluetooth_dpm_is_mode_allowed(void);
6273
6274 /**
6275  * @fn int bluetooth_dpm_set_allow_mode(bt_dpm_allow_t value);
6276  *
6277  * @brief Sets Restriction for BT mode(BT allowed or not)
6278  *
6279  * This function is a synchronous call.
6280  *
6281  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6282  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6283  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6284  *
6285  * @exception   None
6286  * @param[in]   value - BT Allow value.
6287  *              BLUETOOTH_DPM_ERROR  = -1,       < bluetooth allowance error
6288  *              BLUETOOTH_DPM_BT_ALLOWED,                < bluetooth allowance allowed
6289  *              BLUETOOTH_DPM_HANDSFREE_ONLY,  < bluetooth allowance handsfree only
6290  *              BLUETOOTH_DPM_BT_RESTRICTED,  < bluetooth allowance restricted
6291  *
6292  * @remark      None
6293  */
6294 int bluetooth_dpm_set_allow_mode(bt_dpm_allow_t value);
6295
6296 /**
6297  * @fn int bluetooth_dpm_get_allow_mode(bt_dpm_allow_t value);
6298  *
6299  * @brief Reads the Restriction for BT mode(BT allowed or not)
6300  *
6301  * This function is a synchronous call.
6302  *
6303  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6304  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6305  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6306  *
6307  * @exception   None
6308  *  @param[in] None
6309  * @param[out]  value - BT Allow value.
6310  *              BLUETOOTH_DPM_ERROR      = -1,   < bluetooth allowance error
6311  *              BLUETOOTH_DPM_BT_ALLOWED,                < bluetooth allowance allowed
6312  *              BLUETOOTH_DPM_HANDSFREE_ONLY,  < bluetooth allowance handsfree only
6313  *              BLUETOOTH_DPM_BT_RESTRICTED,  < bluetooth allowance restricted
6314  *
6315  * @remark      None
6316  */
6317 int bluetooth_dpm_get_allow_mode(bt_dpm_allow_t *value);
6318
6319 /**
6320  * @fn int bluetooth_dpm_activate_device_restriction(bt_dpm_status_t value);
6321  *
6322  * @brief Sets the Restriction for device.
6323  *
6324  * This function is a synchronous call.
6325  *
6326  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6327  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6328  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6329  *
6330  * @exception   None
6331  * @param[in]   value - State value.
6332  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6333  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6334  *
6335  * @remark      None
6336  */
6337 int bluetooth_dpm_activate_device_restriction(bt_dpm_status_t value);
6338
6339 /**
6340  * @fn int bluetooth_dpm_is_device_restriction_active(bt_dpm_status_t *value);
6341  *
6342  * @brief Reads the Restriction for device.
6343  *
6344  * This function is a synchronous call.
6345  *
6346  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6347  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6348  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6349  *
6350  * @exception   None
6351  * @param[in] None
6352  * @param[out]  value - State value.
6353  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6354  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6355  *
6356  * @remark      None
6357  */
6358 int bluetooth_dpm_is_device_restriction_active(bt_dpm_status_t *value);
6359
6360 /**
6361  * @fn int bluetooth_dpm_activate_bluetoooth_uuid_restriction(bt_dpm_status_t value);
6362  *
6363  * @brief Sets the Restriction for uuid.
6364  *
6365  * This function is a synchronous call.
6366  *
6367  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6368  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6369  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6370  *
6371  * @exception   None
6372  * @param[in]   value - State value.
6373  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6374  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6375  *
6376  * @remark      None
6377  */
6378 int bluetooth_dpm_activate_uuid_restriction(bt_dpm_status_t value);
6379
6380 /**
6381  * @fn int bluetooth_dpm_is_uuid_restriction_active(bt_dpm_status_t *value);
6382  *
6383  * @brief Reads the Restriction for uuid.
6384  *
6385  * This function is a synchronous call.
6386  *
6387  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6388  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6389  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6390  *
6391  * @exception   None
6392  * @param[in] None
6393  * @param[out]  value - State value.
6394  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6395  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6396  *
6397  * @remark      None
6398  */
6399 int bluetooth_dpm_is_uuid_restriction_active(bt_dpm_status_t *value);
6400
6401 /**
6402  * @fn int bluetooth_dpm_add_devices_to_blacklist(const bluetooth_device_address_t *device_address);
6403  *
6404  * @brief Adds the device to blacklist.
6405  *
6406  * This function is a synchronous call.
6407  *
6408  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6409  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6410  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6411  *
6412  * @exception   None
6413  * @param[in]   device_address - Device address
6414  *
6415  * @remark      None
6416  */
6417 int bluetooth_dpm_add_devices_to_blacklist(const bluetooth_device_address_t *device_address);
6418
6419 /**
6420  * @fn int bluetooth_dpm_add_devices_to_whitelist(const bluetooth_device_address_t *device_address);
6421  *
6422  * @brief Adds the device to whitelist.
6423  *
6424  * This function is a synchronous call.
6425  *
6426  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6427  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6428  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6429  *
6430  * @exception   None
6431  * @param[in]   device_address - Device address
6432  *
6433  * @remark      None
6434  */
6435 int bluetooth_dpm_add_devices_to_whitelist(const bluetooth_device_address_t *device_address);
6436
6437 /**
6438  * @fn int bluetooth_dpm_add_uuids_to_blacklist(const char *service_uuid);
6439  *
6440  * @brief Adds the Service UUIDS to blacklist.
6441  *
6442  * This function is a synchronous call.
6443  *
6444  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6445  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6446  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6447  *
6448  * @exception   None
6449  * @param[in]   service_uuids - profile or custom service uuids
6450  *
6451  * @remark      None
6452  */
6453 int bluetooth_dpm_add_uuids_to_blacklist(const char *service_uuid);
6454
6455 /**
6456  * @fn int bluetooth_dpm_add_uuids_to_whitelist(const char *service_uuid);
6457  *
6458  * @brief Adds the Service UUIDS to whitelist.
6459  *
6460  * This function is a synchronous call.
6461  *
6462  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6463  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6464  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6465  *
6466  * @exception   None
6467  * @param[in]   service_uuids - profile or custom service uuids
6468  *
6469  * @remark      None
6470  */
6471 int bluetooth_dpm_add_uuids_to_whitelist(const char *service_uuid);
6472
6473 /**
6474  * @fn int bluetooth_dpm_clear_devices_from_blacklist();
6475  *
6476  * @brief Clears the devices from blacklist.
6477  *
6478  * This function is a synchronous call.
6479  *
6480  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6481  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6482  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6483  *
6484  * @exception   None
6485  * @param[in]   None
6486  *
6487  * @remark      None
6488  */
6489 int bluetooth_dpm_clear_devices_from_blacklist(void);
6490
6491 /**
6492  * @fn int bluetooth_dpm_clear_devices_from_whitelist();
6493  *
6494  * @brief Clears the devices from whitelist.
6495  *
6496  * This function is a synchronous call.
6497  *
6498  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6499  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6500  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6501  *
6502  * @exception   None
6503  * @param[in]   None
6504  *
6505  * @remark      None
6506  */
6507 int bluetooth_dpm_clear_devices_from_whitelist(void);
6508
6509 /**
6510  * @fn int bluetooth_dpm_clear_uuids_from_blacklist();
6511  *
6512  * @brief Clears the uuids from blacklist.
6513  *
6514  * This function is a synchronous call.
6515  *
6516  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6517  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6518  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6519  *
6520  * @exception   None
6521  * @param[in]   None
6522  *
6523  * @remark      None
6524  */
6525 int bluetooth_dpm_clear_uuids_from_blacklist(void);
6526
6527 /**
6528  * @fn int bluetooth_dpm_clear_uuids_from_whitelist();
6529  *
6530  * @brief Clears the uuids from whitelist.
6531  *
6532  * This function is a synchronous call.
6533  *
6534  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6535  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6536  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6537  *
6538  * @exception   None
6539  * @param[in]   None
6540  *
6541  * @remark      None
6542  */
6543 int bluetooth_dpm_clear_uuids_from_whitelist(void);
6544
6545 /**
6546  * @fn int bluetooth_dpm_get_devices_from_blacklist(bt_dpm_device_list_t *device_list);
6547  *
6548  * @brief reads the devices from blacklist.
6549  *
6550  * This function is a synchronous call.
6551  *
6552  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6553  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6554  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6555  *
6556  * @exception   None
6557  * @param[out]  device_list - list of devices
6558  *
6559  * @remark      None
6560  */
6561 int bluetooth_dpm_get_devices_from_blacklist(bt_dpm_device_list_t *device_list);
6562
6563 /**
6564  * @fn int bluetooth_dpm_get_devices_from_whitelist(bt_dpm_device_list_t *device_list);
6565  *
6566  * @brief reads the devices from whitelist.
6567  *
6568  * This function is a synchronous call.
6569  *
6570  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6571  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6572  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6573  *
6574  * @exception   None
6575  * @param[out]  device_list - list of devices
6576  *
6577  * @remark      None
6578  */
6579 int bluetooth_dpm_get_devices_from_whitelist(bt_dpm_device_list_t *device_list);
6580
6581 /**
6582  * @fn int bluetooth_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
6583  *
6584  * @brief reads the uuids from blacklist.
6585  *
6586  * This function is a synchronous call.
6587  *
6588  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6589  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6590  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6591  *
6592  * @exception   None
6593  * @param[in]   uuid_list - list of uuids
6594  *
6595  * @remark      None
6596  */
6597 int bluetooth_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
6598
6599 /**
6600  * @fn int bluetooth_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
6601  *
6602  * @brief reads the uuids from whitelist.
6603  *
6604  * This function is a synchronous call.
6605  *
6606  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6607  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6608  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6609  *
6610  * @exception   None
6611  * @param[in]   uuid_list - list of uuids
6612  *
6613  * @remark      None
6614  */
6615 int bluetooth_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
6616
6617 /**
6618  * @fn int bluetooth_dpm_remove_device_from_whitelist(const bluetooth_device_address_t *device_address);
6619  *
6620  * @brief Removes the device from whitelist.
6621  *
6622  * This function is a synchronous call.
6623  *
6624  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6625  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6626  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6627  *
6628  * @exception   None
6629  * @param[in]   device_address - Device address
6630  *
6631  * @remark      None
6632  */
6633 int bluetooth_dpm_remove_device_from_whitelist(const bluetooth_device_address_t *device_address);
6634
6635 /**
6636  * @fn int bluetooth_dpm_remove_device_from_blacklist(const bluetooth_device_address_t *device_address);
6637  *
6638  * @brief Removes the device from blacklist.
6639  *
6640  * This function is a synchronous call.
6641  *
6642  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6643  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6644  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6645  *
6646  * @exception   None
6647  * @param[in]   device_address - Device address
6648  *
6649  * @remark      None
6650  */
6651 int bluetooth_dpm_remove_device_from_blacklist(const bluetooth_device_address_t *device_address);
6652
6653 /**
6654  * @fn int bluetooth_dpm_remove_uuid_from_whitelist(const char *service_uuid);
6655  *
6656  * @brief Removes the Service UUIDS from whitelist.
6657  *
6658  * This function is a synchronous call.
6659  *
6660  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6661  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6662  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6663  *
6664  * @exception   None
6665  * @param[in]   service_uuids - profile or custom service uuids
6666  *
6667  * @remark      None
6668  */
6669 int bluetooth_dpm_remove_uuid_from_whitelist(const char *service_uuid);
6670
6671 /**
6672  * @fn int bluetooth_dpm_remove_uuid_from_blacklist(const char *service_uuid);
6673  *
6674  * @brief Removes the Service UUIDS from blacklist.
6675  *
6676  * This function is a synchronous call.
6677  *
6678  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6679  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6680  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6681  *
6682  * @exception   None
6683  * @param[in]   service_uuids - profile or custom service uuids
6684  *
6685  * @remark      None
6686  */
6687 int bluetooth_dpm_remove_uuid_from_blacklist(const char *service_uuid);
6688
6689 /**
6690  * @fn int bluetooth_dpm_set_allow_outgoing_call(bt_dpm_status_t value);
6691  *
6692  * @brief Sets the Restriction for outgoing call.
6693  *
6694  * This function is a synchronous call.
6695  *
6696  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6697  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6698  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6699  *
6700  * @exception   None
6701  * @param[in]   value - State value.
6702  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6703  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6704  *
6705  * @remark      None
6706  */
6707 int bluetooth_dpm_set_allow_outgoing_call(bt_dpm_status_t value);
6708
6709 /**
6710  * @fn int bluetooth_dpm_get_allow_outgoing_call(bt_dpm_status_t *value);
6711  *
6712  * @brief Reads the Restriction for  outgoing call.
6713  *
6714  * This function is a synchronous call.
6715  *
6716  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6717  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6718  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6719  *
6720  * @exception   None
6721  * @param[in] None
6722  * @param[out]  value - State value.
6723  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6724  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6725  *
6726  * @remark      None
6727  */
6728 int bluetooth_dpm_get_allow_outgoing_call(bt_dpm_status_t *value);
6729
6730 /**
6731  * @fn int bluetooth_dpm_set_pairing_state(bt_dpm_status_t value);
6732  *
6733  * @brief Sets the Restriction for Pairing.
6734  *
6735  * This function is a synchronous call.
6736  *
6737  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6738  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6739  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6740  *
6741  * @exception   None
6742  * @param[in]   value - State value.
6743  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6744  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6745  *
6746  * @remark      None
6747  */
6748 int bluetooth_dpm_set_pairing_state(bt_dpm_status_t value);
6749
6750 /**
6751  * @fn int bluetooth_dpm_get_pairing_state(bt_dpm_status_t *value);
6752  *
6753  * @brief Reads the Restriction for Pairing
6754  *
6755  * This function is a synchronous call.
6756  *
6757  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6758  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6759  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6760  *
6761  * @exception   None
6762  * @param[in] None
6763  * @param[out]  value - State value.
6764  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6765  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6766  *
6767  * @remark      None
6768  */
6769 int bluetooth_dpm_get_pairing_state(bt_dpm_status_t *value);
6770
6771 /**
6772  * @fnint bluetooth_dpm_set_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
6773  *
6774  * @brief Sets the Restriction for using Profiles.
6775  *
6776  * This function is a synchronous call.
6777  *
6778  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6779  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6780  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6781  *
6782  * @exception   None
6783  * @param[in]profile - Profile.
6784  *              BLUETOOTH_DPM_POLICY_A2DP_PROFILE_STATE,
6785  *              BLUETOOTH_DPM_POLICY_AVRCP_PROFILE_STATE,
6786  *              BLUETOOTH_DPM_POLICY_BPP_PROFILE_STATE,
6787  *              BLUETOOTH_DPM_POLICY_DUN_PROFILE_STATE,
6788  *              BLUETOOTH_DPM_POLICY_FTP_PROFILE_STATE,
6789  *              BLUETOOTH_DPM_POLICY_HFP_PROFILE_STATE,
6790  *              BLUETOOTH_DPM_POLICY_HSP_PROFILE_STATE,
6791  *              BLUETOOTH_DPM_POLICY_PBAP_PROFILE_STATE,
6792  *              BLUETOOTH_DPM_POLICY_SAP_PROFILE_STATE,
6793  *              BLUETOOTH_DPM_POLICY_SPP_PROFILE_STATE,
6794  *              BLUETOOTH_DPM_PROFILE_NONE
6795  * @param[in]   value - State value.
6796  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6797  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6798  *
6799  * @remark      None
6800  */
6801 int bluetooth_dpm_set_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
6802
6803 /**
6804  * @fn int bluetooth_dpm_get_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
6805  *
6806  * @brief Reads the Restriction for using Profiles.
6807  *
6808  * This function is a synchronous call.
6809  *
6810  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6811  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6812  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6813  *
6814  * @exception   None
6815  * @param[in]profile - Profile.
6816  *              BLUETOOTH_DPM_POLICY_A2DP_PROFILE_STATE,
6817  *              BLUETOOTH_DPM_POLICY_AVRCP_PROFILE_STATE,
6818  *              BLUETOOTH_DPM_POLICY_BPP_PROFILE_STATE,
6819  *              BLUETOOTH_DPM_POLICY_DUN_PROFILE_STATE,
6820  *              BLUETOOTH_DPM_POLICY_FTP_PROFILE_STATE,
6821  *              BLUETOOTH_DPM_POLICY_HFP_PROFILE_STATE,
6822  *              BLUETOOTH_DPM_POLICY_HSP_PROFILE_STATE,
6823  *              BLUETOOTH_DPM_POLICY_PBAP_PROFILE_STATE,
6824  *              BLUETOOTH_DPM_POLICY_SAP_PROFILE_STATE,
6825  *              BLUETOOTH_DPM_POLICY_SPP_PROFILE_STATE,
6826  *              BLUETOOTH_DPM_PROFILE_NONE
6827  * @param[out]  value - State value.
6828  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6829  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6830  *
6831  * @remark      None
6832  */
6833 int bluetooth_dpm_get_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
6834
6835 /**
6836  * @fn int bluetooth_dpm_set_desktop_connectivity_state(bt_dpm_status_t value);
6837  *
6838  * @brief Sets the Restriction for Desktop Connectivity.
6839  *
6840  * This function is a synchronous call.
6841  *
6842  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6843  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6844  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6845  *
6846  * @exception   None
6847  * @param[in]   value - State value.
6848  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6849  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6850  *
6851  * @remark      None
6852  */
6853 int bluetooth_dpm_set_desktop_connectivity_state(bt_dpm_status_t value);
6854
6855 /**
6856  * @fn int bluetooth_dpm_get_desktop_connectivity_state(bt_dpm_status_t *value);
6857  *
6858  * @brief Reads the Restriction for Desktop Connectivity.
6859  *
6860  * This function is a synchronous call.
6861  *
6862  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6863  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6864  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6865  *
6866  * @exception   None
6867  * @param[in] None
6868  * @param[out]  value - State value.
6869  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6870  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6871  *
6872  * @remark      None
6873  */
6874 int bluetooth_dpm_get_desktop_connectivity_state(bt_dpm_status_t *value);
6875
6876 /**
6877  * @fn int bluetooth_dpm_set_discoverable_state(bt_dpm_status_t value);
6878  *
6879  * @brief Sets the Restriction for Discoverable state.
6880  *
6881  * This function is a synchronous call.
6882  *
6883  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6884  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6885  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6886  *
6887  * @exception   None
6888  * @param[in]   value - State value.
6889  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6890  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6891  *
6892  * @remark      None
6893  */
6894 int bluetooth_dpm_set_discoverable_state(bt_dpm_status_t value);
6895
6896 /**
6897  * @fn int bluetooth_dpm_get_discoverable_state(bt_dpm_status_t *value);
6898  *
6899  * @brief Reads the Restriction for Discoverable state.
6900  *
6901  * This function is a synchronous call.
6902  *
6903  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6904  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6905  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6906  *
6907  * @exception   None
6908  * @param[in] None
6909  * @param[out]  value - State value.
6910  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6911  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6912  *
6913  * @remark      None
6914  */
6915 int bluetooth_dpm_get_discoverable_state(bt_dpm_status_t *value);
6916
6917 /**
6918  * @fn int bluetooth_dpm_set_limited_discoverable_state(bt_dpm_status_t value);
6919  *
6920  * @brief Sets the Restriction for linited discoverable state..
6921  *
6922  * This function is a synchronous call.
6923  *
6924  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6925  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6926  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6927  *
6928  * @exception   None
6929  * @param[in]   value - State value.
6930  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6931  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6932  *
6933  * @remark      None
6934  */
6935 int bluetooth_dpm_set_limited_discoverable_state(bt_dpm_status_t value);
6936
6937 /**
6938  * @fn int bluetooth_dpm_get_limited_discoverable_state(bt_dpm_status_t *value);
6939  *
6940  * @brief Reads the Restriction for limited discoverable state.
6941  *
6942  * This function is a synchronous call.
6943  *
6944  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6945  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6946  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6947  *
6948  * @exception   None
6949  * @param[in] None
6950  * @param[out]  value - State value.
6951  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6952  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6953  *
6954  * @remark      None
6955  */
6956 int bluetooth_dpm_get_limited_discoverable_state(bt_dpm_status_t *value);
6957 /**
6958  * @fn int bluetooth_dpm_set_data_transfer_state(bt_dpm_status_t value);
6959  *
6960  * @brief Sets the Restriction for Data trasnfer.
6961  *
6962  * This function is a synchronous call.
6963  *
6964  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6965  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6966  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6967  *
6968  * @exception   None
6969  * @param[in]   value - State value.
6970  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6971  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6972  *
6973  * @remark      None
6974  */
6975 int bluetooth_dpm_set_data_transfer_state(bt_dpm_status_t value);
6976
6977
6978 /**
6979  * @fn int bluetooth_dpm_get_data_transfer_state(bt_dpm_status_t *value);
6980  *
6981  * @brief Reads the Restriction for Data trasnfer.
6982  *
6983  * This function is a synchronous call.
6984  *
6985  * @return      BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6986  *              BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6987  *              BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6988  *
6989  * @exception   None
6990  * @param[in] None
6991  * @param[out]  value - State value.
6992  *              BLUETOOTH_DPM_ALLOWED           = 0,    < DPM Policy status allowed.
6993  *              BLUETOOTH_DPM_RESTRICTED                = 1,    < DPM Policy status restricted.
6994  *
6995  * @remark      None
6996  */
6997 int bluetooth_dpm_get_data_transfer_state(bt_dpm_status_t *value);
6998
6999 /**
7000  * @fn int bluetooth_proximity_monitor_set_property(const bluetooth_device_address_t *device_address,
7001  *                                              bluetooth_pxp_poperty_t property, int value);
7002  *
7003  * @brief Sets the Proximity alert level/properties for monitor role.
7004  *
7005  * This function is a synchronous call.
7006  *
7007  * @return   BLUETOOTH_ERROR_NONE - Success \n
7008  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7009  *               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7010  *               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7011  *
7012  * @exception   None
7013  * @param[in] device_address remote device address
7014  * @param[in] property proximity profile property
7015  * @param[in] value alert level/property value to be set
7016  * @param[out] None
7017  *
7018  * @remark      None
7019  */
7020 int bluetooth_proximity_monitor_set_property(const bluetooth_device_address_t *device_address,
7021                                                         bluetooth_pxp_poperty_t property, int value);
7022
7023 /**
7024  * @fn int bluetooth_proximity_monitor_get_property(const bluetooth_device_address_t *device_address,
7025  *                                              bluetooth_pxp_poperty_t property, int *value);
7026  *
7027  * @brief Reads the Proximity alert level/properties for monitor role.
7028  *
7029  * This function is a synchronous call.
7030  *
7031  * @return   BLUETOOTH_ERROR_NONE - Success \n
7032  *               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7033  *               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7034  *               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7035  *
7036  * @exception   None
7037  * @param[in] device_address remote device address
7038  * @param[in] property proximity profile property
7039  * @param[out] value alert level/property value
7040  *
7041  * @remark      None
7042  */
7043 int bluetooth_proximity_monitor_get_property(const bluetooth_device_address_t *device_address,
7044                                                         bluetooth_pxp_poperty_t property, int *value);
7045
7046 /**
7047  * @fn int bluetooth_proximity_monitor_get_supported_services(const bluetooth_device_address_t *device_address,
7048  *                                              int *services_supported);
7049  *
7050  * @brief Reads the Proximity Monitor profile supported properties/services.
7051  *
7052  * This function is a synchronous call.
7053  *
7054  * @return       BLUETOOTH_ERROR_NONE - Success \n
7055  *                               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7056  *                               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7057  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7058  *
7059  * @exception   None
7060  * @param[in] device_address remote device address
7061  * @param[out] services_supported proximity profile property/service
7062  *
7063  * @remark      None
7064  */
7065 int bluetooth_proximity_monitor_get_supported_services(const bluetooth_device_address_t *device_address,
7066                                                         int *services_supported);
7067
7068 /**
7069  * @fn int bluetooth_proximity_reporter_register();
7070  *
7071  * @brief Register all proximity related services in BlueZ.
7072  *
7073  * This function is a synchronous call.
7074  *
7075  * @return       BLUETOOTH_ERROR_NONE - Success \n
7076  *                       BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7077  *
7078  * @exception   None
7079  *
7080  * @remark      None
7081  */
7082 int bluetooth_proximity_reporter_register(void);
7083
7084 /**
7085  * @fn int bluetooth_proximity_reporter_unregister();
7086  *
7087  * @brief Unregister all proximity related services in BlueZ.
7088  *
7089  * This function is a synchronous call.
7090  *
7091  * @return       BLUETOOTH_ERROR_NONE - Success \n
7092  *                       BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7093  *
7094  * @exception   None
7095  *
7096  * @remark      None
7097  */
7098 int bluetooth_proximity_reporter_unregister(void);
7099
7100 /**
7101  * @fn int bluetooth_proximity_reporter_get_property(const bluetooth_device_address_t *device_address,
7102  *                                              bluetooth_pxp_poperty_t property, int *value);
7103  *
7104  * @brief Reads the Proximity alert level/properties for reporter role.
7105  *
7106  * This function is a synchronous call.
7107  *
7108  * @return       BLUETOOTH_ERROR_NONE - Success \n
7109  *                               BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7110  *                               BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7111  *                               BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7112  *
7113  * @exception   None
7114  * @param[in] device_address remote device address
7115  * @param[in] property proximity profile property
7116  * @param[out] value alert level/property value
7117  *
7118  * @remark      None
7119  */
7120 int bluetooth_proximity_reporter_get_property(const bluetooth_device_address_t *device_address,
7121                                                         bluetooth_pxp_poperty_t property, int *value);
7122
7123 /**
7124  * @}
7125  */
7126
7127 #ifdef __cplusplus
7128 }
7129 #endif                          /* __cplusplus */
7130 #endif                          /* _BLUETOOTH_API_H_*/