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