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