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