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