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