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