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