summaryrefslogtreecommitdiff
path: root/include/bluetooth_internal.h
blob: cd3e8230cdf96bdd6a4ce1ea0262c6be452fb068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
/*
 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
 *
 * Licensed under the Apache License, Version 2.0 (the License);
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an AS IS BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


#ifndef __TIZEN_NETWORK_BLUETOOTH_INTERNAL_H__
#define __TIZEN_NETWORK_BLUETOOTH_INTERNAL_H__

#include <glib.h>
#include "bluetooth_type.h"
#include "bluetooth_type_internal.h"

#ifndef TIZEN_DEPRECATED_API
#define TIZEN_DEPRECATED_API __attribute__((__visibility__("default"), deprecated))
#endif

#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */

/**
 * @file        bluetooth_internal.h
 */

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Enables the local Bluetooth adapter, asynchronously.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @details This function enables Bluetooth protocol stack and hardware.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_ALREADY_DONE  Already enabled
 * @retval #BT_ERROR_NOW_IN_PROGRESS  Operation now in progress
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre Bluetooth service must be initialized with bt_initialize().
 * @pre The state of local Bluetooth must be #BT_ADAPTER_DISABLED
 * @post This function invokes bt_adapter_state_changed_cb().
 *
 * @see bt_initialize()
 * @see bt_adapter_get_state()
 * @see bt_adapter_set_state_changed_cb()
 * @see bt_adapter_unset_state_changed_cb()
 * @see bt_adapter_state_changed_cb()
 *
 */
int bt_adapter_enable(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Synchronously provides details about bluetooth usage
 * @since_tizen 5.5
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @details This function provides details such as session start time, session end time as well as total scan time and total connected time in a session
 *
 * @remarks An pointer of type bt_battery_info_s must be passed as argument which will contain the relevant information as the function returns.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_NOW_IN_PROGRESS  Operation now in progress
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED
 * @post
 *
 */
int bt_adapter_read_battery_info(bt_battery_info_s *data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Disables the local Bluetooth adapter, asynchronously.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @details This function disables Bluetooth protocol stack and hardware.
 *
 * @remarks You should disable Bluetooth adapter, which is helpful for saving power.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_NOW_IN_PROGRESS  Operation now in progress
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED
 * @post This function invokes bt_adapter_state_changed_cb().
 *
 * @see bt_adapter_get_state()
 * @see bt_adapter_state_changed_cb()
 * @see bt_adapter_set_state_changed_cb()
 * @see bt_adapter_unset_state_changed_cb ()
 *
 */
int bt_adapter_disable(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Initializes and activates battery monitor
 * @since_tizen5.5
 *
 * @param[in] callback Address of callback function
 * @param[in] user_data user
 *
 * @pre This function will initialize and activate the battery monitor feature.
 * It sets a callback function that will be called when bluetooth adapter
 * is disabled.
 *
 * @see *bt_adapter_disable_battery_cb
 */
int bt_adapter_init_battery_monitor(bt_adapter_disable_battery_cb callback,
                                                        void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Deinitializes and disables battery monitor.
 * @since_tizen5.5
 *
 * @pre This function will disable the battery monitor feature
 * and unset the related callback function
 *
 * @see bt_adapter_init_battery_monitor
 * @see *bt_adapter_disable_battery_cb
 */
int bt_adapter_deinit_battery_monitor();

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Recover the local Bluetooth adapter, asynchronously.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @details This function does recovery logic, disables Bluetooth protocol stack and hardware, then enables after a few seconds.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_NOW_IN_PROGRESS  Operation now in progress
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED
 * @post This function invokes bt_adapter_state_changed_cb().
 *
 * @see bt_adapter_get_state()
 * @see bt_adapter_state_changed_cb()
 * @see bt_adapter_set_state_changed_cb()
 * @see bt_adapter_unset_state_changed_cb ()
 *
 */
int bt_adapter_recover(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_MODULE
 * @brief  A2DP source/sink role is switched using this API
 * @since_tizen 4.0
 * @param[in] Role for A2DP
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_OPERATION_FAILED Internal Error
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_initialize()
 * @see bt_audio_initialize()
 */
int bt_audio_select_role(bt_audio_role_e role);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_MODULE
 * @brief  Absolute Volume of the remote headset is set using this API
 * @since_tizen 6.0
 * @param[in] The absolute volume of the remote headset (0 ~ 150)
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED Internal Error
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_initialize()
 * @see bt_audio_initialize()
 */
int bt_audio_set_absolute_volume(unsigned int volume);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_MODULE
 * @brief  Get Absolute Volume of the remote headset using this API
 * @since_tizen 6.0
 * @param[out] The absolute volume of the remote headset (0 ~ 150)
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED Internal Error
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_initialize()
 * @see bt_audio_initialize()
 */
int bt_audio_get_absolute_volume(unsigned int *volume);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AVRCP_MODULE
 * @brief  Registers a callback function that will be invoked when the volume is changed.
 * @since_tizen 6.0
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_initialize()
 * @see bt_audio_initialize()
 */
int bt_audio_set_absolute_volume_changed_cb(bt_audio_absolute_volume_changed_cb callback, void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AVRCP_MODULE
 * @brief  Unregisters a callback function that will be invoked when the volume is changed.
 * @since_tizen 6.0
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The AVRCP service must be initialized with bt_avrcp_target_initialize() or bt_avrcp_control_initialize().
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_initialize()
 * @see bt_audio_initialize()
 */
int bt_audio_unset_absolute_volume_changed_cb(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_MODULE
 * @brief  Get Absolute Volume Control status using this API
 * @since_tizen 6.0
 * @param[out] Activated infomation
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_OPERATION_FAILED Internal Error
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_initialize()
 * @see bt_audio_initialize()
 */
int bt_audio_is_avc_activated(bool *activated);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AVRCP_MODULE
 * @brief  Registers a callback function that will be invoked when the absolute volume control status is changed.
 * @since_tizen 6.0
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_initialize()
 * @see bt_audio_initialize()
 */
int bt_audio_set_avc_status_changed_cb(bt_audio_avc_status_changed_cb callback, void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AVRCP_MODULE
 * @brief  Unregisters a callback function that will be invoked when the absolute volume control status is changed.
 * @since_tizen 6.0
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_initialize()
 * @see bt_audio_initialize()
 */
int bt_audio_unset_avc_status_changed_cb(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Reset the local Bluetooth adapter, synchronously.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @details This function resets Bluetooth protocol and values.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_OPERATION_FAILED Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre Bluetooth service must be initialized with bt_initialize().
 * @post bt_adapter_state_changed_cb() will be invoked if The state of local Bluetooth was #BT_ADAPTER_ENABLED.
 *
 * @see bt_initialize()
 * @see bt_adapter_get_state()
 * @see bt_adapter_set_state_changed_cb()
 * @see bt_adapter_unset_state_changed_cb()
 * @see bt_adapter_state_changed_cb()
 *
 */
int bt_adapter_reset(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Gets the version of local Bluetooth adapter.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @remarks The @a local_version must be released with free() by you.
 *
 * @param[out] local_version The version of local Bluetooth adapter
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OUT_OF_MEMORY  Out of memory
 * @retval #BT_ERROR_OPERATION_FAILED Operation failed
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 */
int bt_adapter_get_version(char **local_version);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Gets the information regarding local Bluetooth adapter.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @remarks The @a all parameters must be released with free() by you.
 *
 * @param[out] chipset Chipset name of local Bluetooth adapter
 * @param[out] firmware Firmware info. of local Bluetooth adapter
 * @param[out] stack_version Bluetooth stack version
 * @param[out] profiles The profile list of local Bluetooth adapter
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OUT_OF_MEMORY  Out of memory
 * @retval #BT_ERROR_OPERATION_FAILED Operation failed
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 */
int bt_adapter_get_local_info(char **chipset, char **firmware, char **stack_version, char **profiles);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Sets the visibility mode.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @remarks #BT_ADAPTER_VISIBILITY_MODE_LIMITED_DISCOVERABLE will change to #BT_ADAPTER_VISIBILITY_MODE_NON_DISCOVERABLE
 * after the given @a duration goes.
 *
 * @param[in] discoverable_mode The Bluetooth visibility mode to set
 * @param[in] duration The duration until the visibility mode is changed to #BT_ADAPTER_VISIBILITY_MODE_NON_DISCOVERABLE (in seconds).
 * @a duration is used only for #BT_ADAPTER_VISIBILITY_MODE_LIMITED_DISCOVERABLE mode.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 * @post bt_adapter_visibility_mode_changed_cb() will be invoked if this function returns #BT_ERROR_NONE.
 *
 * @see bt_adapter_get_visibility()
 * @see bt_adapter_visibility_mode_changed_cb()
 * @see bt_adapter_set_visibility_mode_changed_cb()
 * @see bt_adapter_unset_visibility_mode_changed_cb()
 */
int bt_adapter_set_visibility(bt_adapter_visibility_mode_e discoverable_mode, int duration);

/**
 * @deprecated Deprecated since 5.5
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Registers a callback function that will be invoked when remote device requests authentication.
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 * @pre The Bluetooth service must be initialized by bt_initialize().
 * @param[in] callback  callback function to be set when a request is received.
 * @param[in] user_data data from application which will be provided in callback.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @see bt_initialize()
 * @see bt_adapter_set_authentication_req_cb()
 */
int bt_adapter_set_authentication_req_cb(bt_adapter_authentication_req_cb callback, void *user_data);

/**
 * @since_tizen 5.5
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Registers a callback with a incoming parameter to describe direction of pairing request that will be invoked when remote device requests authentication.
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 * @pre The Bluetooth service must be initialized by bt_initialize().
 * @param[in] callback  callback function to be set when a request is received.
 * @param[in] user_data data from application which will be provided in callback.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @see bt_initialize()
 * @see bt_adapter_authentication_request_cb()
 */

int bt_adapter_set_authentication_request_cb(bt_adapter_authentication_request_cb callback, void *user_data);

/**
 * @deprecated Deprecated since 5.5
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Unregisters a callback function that will be invoked when remote device requests authentication.
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 * @pre The Bluetooth service must be initialized by bt_initialize().
 * @see bt_initialize()
 * @see bt_adapter_set_authentication_req_cb()
 */
int bt_adapter_unset_authentication_req_cb(void);

/**
 * @since_tizen 5.5
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Unregisters a callback function with incoming parameter that will be invoked when remote device requests authentication.
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 * @pre The Bluetooth service must be initialized by bt_initialize().
 * @see bt_initialize()
 * @see bt_adapter_set_authentication_request_cb()
 */

int bt_adapter_unset_authentication_request_cb(void);


/**
 * @ingroup  CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief  API to reply with PIN or PASSKEY with authentication type - TRUE or FALSE.
 * @remarks  This function can be called by application when remote device requests PIN or PASSKEY from
 *           local adapter.
 * @param[in]  passkey  The passkey to be provided by application when remote devices requests for it.
 * @param[in]  authentication_reply This indicates whether application wants to accept or cancel the on-going pairing
 * @pre  This function can only be called when application receieves authentication event (BT_AUTH_PIN_REQUEST)
 *       from remote device.
 * @see  bt_adapter_set_authentication_req_cb()
 */
int bt_adapter_passkey_reply(char *passkey, bool authentication_reply);

/**
 * @ingroup  CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief  API to reply to the PASSKEY confirmation for on-going pairing with remote device.
 * @remarks  This function can be called by application, when local adapter wants PASSKEY confirmation from user.
 * @param[in]  confirmation_reply This indicates whether application wants to accepts or cancels the on-going pairing
 *             confirmation_reply : TRUE will indicate that Application has confirmed the PASSKEY
 *             confirmation_reply : FALSE will indicate that Application has failed to confirm the PASSKEY. In this situation
 *             the pairing will be failed.
 * @pre  This function can only be called when application receives authentication event (BT_AUTH_PASSKEY_CONFIRM_REQUEST)
 *       from remote device.
 * @see  bt_adapter_set_authentication_req_cb()
 */
int bt_adapter_passkey_confirmation_reply(bool confirmation_reply);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief  Registers a callback function to be invoked when the connectable state changes.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 *
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 *
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @post bt_adapter_connectable_changed_cb() will be invoked.
 *
 * @see bt_initialize()
 * @see bt_adapter_connectable_changed_cb()
 * @see bt_adapter_unset_connectable_changed_cb()
 */
int bt_adapter_set_connectable_changed_cb(bt_adapter_connectable_changed_cb callback, void *user_data);

/**
 * @internal
 * @ingroup  CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief  Unregisters the callback function.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 *
 * @return  0 on success, otherwise a negative error value.
 * @retval  #BT_ERROR_NONE  Successful
 * @retval  #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval  #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre  The Bluetooth service must be initialized with bt_initialize().
 *
 * @see  bt_initialize()
 * @see  bt_adapter_set_connectable_changed_cb()
 */
int bt_adapter_unset_connectable_changed_cb(void);

/**
 * @internal
 * @ingroup  CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief  Gets the connectable state of local Bluetooth adapter.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 *
 * @remarks When connectable state is false, no device can connect to this device and visibility mode cannot be changed.
 *
 * @param[out] connectable The connectable state of local Bluetooth adapter
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 *
 * @see bt_adapter_set_connectable()
 */
int bt_adapter_get_connectable(bool *connectable);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief  Sets the connectable state of local Bluetooth adapter.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @remarks When connectable state is false, no device can connect to this device and visibility mode cannot be changed.
 *
 * @param[in] connectable The connectable state to set
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 * @post bt_adapter_connectable_changed_cb() will be invoked if this function returns #BT_ERROR_NONE.
 *
 * @see bt_adapter_get_connectable()
 * @see bt_adapter_connectable_changed_cb()
 * @see bt_adapter_set_connectable_changed_cb()
 * @see bt_adapter_unset_connectable_changed_cb()
 */
int bt_adapter_set_connectable(bool connectable);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Sets the manufacturer data of local Bluetooth adapter.
 * @since_tizen 2.3
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]   data	The manufacturer specific data of the Bluetooth device.
 * @param[in]   len	The length of @a data.Maximaum length is 240 bytes.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 * @post bt_adapter_manufacturer_data_changed_cb() will be invoked
 * if this function returns #BT_ERROR_NONE.
 *
 * @see bt_adapter_manufacturer_data_changed_cb
 * @see bt_adapter_set_manufacturer_data_changed_cb()
 * @see bt_adapter_unset_manufacturer_data_changed_cb()
 */
int bt_adapter_set_manufacturer_data(char *data, int len);

/**
 * @brief Checks scan filter feature is supported or not.
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 *
 * @param[out] is_supported The Scan Filter feature support: (@c true = supported , @c  false = not supported)
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Adapter is not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 */
int bt_adapter_le_is_scan_filter_supported(bool *is_supported);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Parse the samsung specific manufacturer data of discovered device.
 *
 * @remarks bt_adapter_free_manufacturer_data should be invoked
 * to free the memory associated with parsed data
 *
 * @param[in]   manufacturer_data	The manufacturer specific data of the discovered Bluetooth device.
 * @param[in]   len		length of the received manufacturer data
 * @param[out] data Parsed manufacturer data
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 *
 * @see bt_adapter_free_manufacturer_data()
 */
int bt_adapter_parse_manufacturer_data(bt_manufacturer_data *data,
		char *manufacturer_data, int manufacturer_data_len);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Free the memory associated with parsed manufacturer data
 *
 * @param[in] data parsed manufactrer data
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 *
 *
 * @see bt_adapter_parse_manufacturer_data()
 */
int bt_adapter_free_manufacturer_data(bt_manufacturer_data *data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief  Registers a callback function to be invoked
 * when the manufacturer data of Bluetooth adapter changes.
 * @since_tizen 2.3
 *
 * @param[in]   callback	The callback function to invoke
 * @param[in]   user_data	The user data to be passed to the callback function
 *
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @post  bt_adapter_manufacturer_data_changed_cb() will be invoked.
 *
 * @see bt_initialize()
 * @see bt_adapter_unset_manufacturer_data_changed_cb()
 */
int bt_adapter_set_manufacturer_data_changed_cb(
		bt_adapter_manufacturer_data_changed_cb callback,
		void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief	Unregisters the callback function.
 * @since_tizen 2.3
 *
 * @return	0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 *
 * @see bt_initialize()
 * @see bt_adapter_set_manufacturer_data_changed_cb()
 */
int bt_adapter_unset_manufacturer_data_changed_cb(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Enables the local Bluetooth le adapter, asynchronously.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @details This function enables Bluetooth protocol stack and hardware.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_ALREADY_DONE  Already enabled
 * @retval #BT_ERROR_NOW_IN_PROGRESS  Operation now in progress
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre Bluetooth service must be initialized with bt_initialize().
 * @post This function invokes bt_adapter_le_state_changed_cb().
 *
 * @see bt_initialize()
 * @see bt_adapter_le_get_state()
 * @see bt_adapter_le_set_state_changed_cb()
 * @see bt_adapter_le_unset_state_changed_cb()
 * @see bt_adapter_le_state_changed_cb()
 *
 */
int bt_adapter_le_enable(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Disables the local Bluetooth le adapter, asynchronously.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @details This function disables Bluetooth le protocol stack and hardware.
 *
 * @remarks
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_NOW_IN_PROGRESS  Operation now in progress
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_LE_ENABLED
 * @post This function invokes bt_adapter_le_state_changed_cb().
 *
 * @see bt_adapter_le_get_state()
 * @see bt_adapter_le_state_changed_cb()
 * @see bt_adapter_le_set_state_changed_cb()
 * @see bt_adapter_le_unset_state_changed_cb ()
 *
 */
int bt_adapter_le_disable(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Gets the current state of local Bluetooth adapter.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 *
 * @param[out] adapter_le_state The current adapter le state
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre Bluetooth service must be initialized with bt_initialize().
 *
 * @see bt_initialize()
 */
int bt_adapter_le_get_state(bt_adapter_le_state_e *adapter_le_state);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief  Registers a callback function to be invoked when the Bluetooth adapter le state changes.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 *
 * @param[in] callback	The callback function to invoke
 * @param[in] user_data	The user data to be passed to the callback function
 *
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @post bt_adapter_le_state_changed_cb() will be invoked.
 *
 * @see bt_initialize()
 * @see bt_adapter_le_state_changed_cb()
 * @see bt_adapter_le_unset_state_changed_cb()
 */
int bt_adapter_le_set_state_changed_cb(bt_adapter_le_state_changed_cb callback, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief	Unregisters the callback function.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 *
 * @return	0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 *
 * @see bt_initialize()
 * @see bt_adapter_le_set_state_changed_cb()
 */
int bt_adapter_le_unset_state_changed_cb(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Sets Bluetooth LE scan type
 * @since_tizen 5.5
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @param[in]  scan_type  The scan type
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED Adapter is not enabled
 * @retval #BT_ERROR_INVALID_PARAMETER Parameter is invalid
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 * @pre The Bluetooth service must be initialized with bt_initialize().
 */
int bt_adapter_le_set_scan_type(bt_adapter_le_scan_type_e scan_type);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Sets Bluetooth LE customized scan mode
 * @since_tizen 7.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @param[in]  scan_interval  The scan interval
 * @param[in]  scan_window  The scan window
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED Adapter is not enabled
 * @retval #BT_ERROR_INVALID_PARAMETER Parameter is invalid
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 * @pre The Bluetooth service must be initialized with bt_initialize().
 */
int bt_adapter_le_set_customized_scan_mode(float scan_interval, float scan_window);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Sets the RSSI for the advertisements filter.
 * @details Advertiser will be reported only if the signal is higher than specified rssi.
 * @since_tizen 6.0
 *
 * @param[in] scan_filter The scan filter handle
 * @param[in] rssi The RSSI signal which advertisements will be filtered
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 *
 */
int bt_adapter_le_scan_filter_set_rssi_high_threshold(bt_scan_filter_h scan_filter, int rssi);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief add address to whitelist for accepting scanning request.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @remarks If the adress is in the whitelist then other LE devices are able to
 * search this device. Before calling this API, make sure that the adapter is
 * enabled. There is no callback event for this API.

 * @param[in] address The other device's address
 * @param[in] address_type The other device's address type
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Adapter is not enabled
 * @retval #BT_ERROR_RESOURCE_BUSY  Device or resource busy
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 *
 * @see bt_adapter_le_start_advertising_new()
 * @see bt_adapter_le_stop_advertising()
 */
int bt_adapter_le_add_white_list(const char *address, bt_device_address_type_e address_type);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief remove address from the whitelist for not accepting scanning request.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @remarks If the adress is in the whitelist then other LE devices are able to
 * search this device. Before calling this API, make sure that the adapter is
 * enabled. There is no callback event for this API.
 *
 * @param[in] address The other device's address
 * @param[in] address_type The other device's address type
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Adapter is not enabled
 * @retval #BT_ERROR_RESOURCE_BUSY  Device or resource busy
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 *
 * @see bt_adapter_le_start_advertising_new()
 * @see bt_adapter_le_stop_advertising()
 */
int bt_adapter_le_remove_white_list(const char *address, bt_device_address_type_e address_type);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief  Sets the Privacy feature state of local Bluetooth adapter.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] enable_privacy The privacy feature to set/unset.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 * @pre The state of local Bluetooth must be #BT_ADAPTER_LE_ENABLED.
 *
 */
int bt_adapter_le_enable_privacy(bool enable_privacy);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Gets the Confirmation and Random value, synchronously.
 * @since_tizen 5.5
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @remarks The @a local_address, confirmation and random must be released using free()
 *
 * @param[out] local_address Local device address
 * @param[out] address_type Local device address type
 * @param[out] confirmation The confirmation value
 * @param[out] random The random value
 * @param[out] confirmation_len The length of @a confirmation
 * @param[out] random_len The length of @a random
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @see bt_initialize()
 */
int bt_adapter_le_get_local_oob_ext_data(char **local_address, bt_device_address_type_e *address_type,
		unsigned char **confirmation, unsigned char **random,
		int *confirmation_len, int *random_len);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Sets the Hash and Randomizer value, synchronously for LE OOB pairing.
 * @since_tizen 4.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] remote_address Remote device address
 * @param[in] address_type Remote device address type
 * @param[in] hash256 The P-256 hash value received via OOB from remote device
 * @param[in] randomizer256 The P-256 randomizer value received via OOB from remote device
 * @param[in] hash256_len The length of @a hash256
 * @param[in] randomizer256_len The length of @a randomizer256
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @see bt_initialize()
 */
int bt_adapter_le_set_remote_oob_ext_data(const char *remote_address,
		bt_device_address_type_e address_type,
		const unsigned char *hash256, const unsigned char *randomizer256,
		int hash256_len, int randomizer256_len);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Set advertising filter policy to use white list
 * @since_tizen 2.4
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 *
 * @param[in] advertiser The handle of advertiser
 * @param[in] filter_policy The filter policy of advertising
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_NOW_IN_PROGRESS  Operation is now in progress
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 *
 * @see bt_adapter_le_start_advertising_new()
 */
int bt_adapter_le_set_advertising_filter_policy(bt_advertiser_h advertiser, bt_adapter_le_advertising_filter_policy_e filter_policy);


/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Set advertise Tx power level to control the transmission power level for the advertising
 * @since_tizen 5.5
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] advertiser The handle of advertiser
 * @param[in] tx_power_level Transmission power level of advertising. The valid range is [-127 ~ 1]
 *			Recommended values are bt_adapter_le_advertising_tx_power_level_e
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_NOW_IN_PROGRESS  Operation is now in progress
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 *
 * @see bt_adapter_le_start_advertising_new()
 * @see bt_adapter_le_advertising_tx_power_level_e
 */
int bt_adapter_le_set_advertising_custom_tx_power_level(bt_advertiser_h advertiser, int tx_power_level);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Set advertising intervals to set custom advertising intervals (min & max)
 * @since_tizen 6.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] advertiser The handle of advertiser
 * @param[in] interval_min The minimum LE advertising interval, in 0.625ms unit
 * @param[in] interval_max The maximum LE advertising interval, in 0.625ms unit
 *			Valid range for interval_min and interval_max is from 32(20ms) to 16,384(10.24sec)
 * 			The interval_min shall be less than or equal to the interval_max
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 *
 * @see bt_adapter_le_start_advertising_new()
 */
int bt_adapter_le_set_advertising_interval(bt_advertiser_h advertiser, int interval_min, int interval_max);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_LE_MODULE
 * @brief Set advertising transport discovery data(TDS)
 * @since_tizen 6.5
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] advertiser The handle of advertiser
 * @param[in] pkt_type The packet type
 * @param[in] org_id Organization identifier
 * @param[in] tds_flags The TDS flags. Table 3.3, TDS Specification
 * @param[in] transport_data The transport data
 * @param[in] transport_data_len The length of the transport data
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER Invalid parameter
 * @retval #BT_ERROR_PERMISSION_DENIED Permission denied
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 *
 * @see bt_adapter_le_create_advertiser()
 * @see bt_adapter_le_start_advertising_new()
 */
int bt_adapter_le_set_advertising_transport_discovery_data(bt_advertiser_h advertiser,
		bt_adapter_le_packet_type_e pkt_type,
		bt_tds_transport_e org_id, char tds_flags,
		unsigned char *transport_data, unsigned int transport_data_len);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_ADAPTER_MODULE
 * @brief Retrieves the address of the devices connected with the specific profile.
 * @since_tizen 4.0
 *
 * @param[in] profile_uuid The UUID of profile service uuid of the connected device
 * @param[in] callback The callback function to invoke
 * @param[in] user_data The user data passed from the foreach function
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER	Invalid parameter
 * @retval #BT_ERROR_OUT_OF_MEMORY	Out of memory
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  There is no connected device
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_NOT_SUPPORTED	Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 * @post This function invokes bt_adapter_profile_connected_devices_cb().
 *
 * @see bt_adapter_profile_connected_devices_cb()
 */
int bt_adapter_foreach_profile_connected_devices(const char *profile_uuid,
	bt_adapter_profile_connected_devices_cb callback, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Disconnects a remote Bluetooth device.
 * @since_tizen 4.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] remote_address The address of the remote Bluetooth device
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_device_set_connection_state_changed_cb()
 */
int bt_device_disconnect(const char *remote_address);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Gets a connection state
 * @since_tizen @if WEARABLE @else 2.4 @endif
 *
 * @param[in] remote_address The address of the remote Bluetooth device
 * @param[in] link_type The link type to get a connection state
 * @param[out] connected The connection state
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED   Operation failed
 */
int bt_device_get_connection_state(const char *remote_address, bt_device_connection_link_type_e link_type, bool *connected);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Creates a bond with a remote Bluetooth device, asynchronously.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @remarks A bond can be destroyed by bt_device_destroy_bond().\n
 * The bonding request can be cancelled by bt_device_cancel_bonding().
 *
 * @param[in] remote_address The address of the remote Bluetooth device with which the bond should be created
 * @param[in] conn_type The connection type(LE or BREDR) to create bond with remote device
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_RESOURCE_BUSY     Device or resource busy
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 * @pre The remote device must be discoverable with bt_adapter_start_device_discovery().
 * @post This function invokes bt_device_bond_created_cb().
 *
 * @see bt_adapter_start_device_discovery()
 * @see bt_device_create_bond()
 * @see bt_device_bond_created_cb()
 * @see bt_device_cancel_bonding()
 * @see bt_device_destroy_bond()
 * @see bt_device_set_bond_created_cb()
 * @see bt_device_unset_bond_created_cb()
 */
int bt_device_create_bond_by_type(const char *remote_address,
				  bt_device_connection_link_type_e conn_type);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Cancels service search process.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_BONDED  Remote device not bonded
 * @retval #BT_ERROR_NOT_IN_PROGRESS  Operation not in progress
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The service search must be in progress by bt_device_start_service_search().
 *
 * @see bt_device_start_service_search()
 * @see bt_device_service_searched_cb()
 * @see bt_device_set_service_searched_cb()
 * @see bt_device_unset_service_searched_cb()
 */
int bt_device_cancel_service_search(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Gets a connection state
 * @since_tizen @if WEARABLE 2.4 @endif
 *
 * @param[in] remote_address The address of the remote Bluetooth device
 * @param[in] link_type The link type to get a connection state
 * @param[out] connected The connection state
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED   Operation failed
 */
int bt_device_get_connection_state(const char *remote_address, bt_device_connection_link_type_e link_type, bool *connected);

/**
 * @internal
 * @deprecated Deprecated since 4.0. Use bt_device_set_profile_trusted instead.
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Sets a profile restricted connection for a device
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_BONDED  Remote device not bonded
 * @retval #BT_ERROR_NOT_IN_PROGRESS  Operation not in progress
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 */
int bt_device_set_profile_restricted(const char *device_address, bt_restricted_profile_t profile, bool restricted);

/**
 * @internal
 * @deprecated Deprecated since 4.0. Use bt_device_get_profile_trusted instead.
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Gets a profile restricted connection for a device
 * @since_tizen 3.0
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_BONDED  Remote device not bonded
 * @retval #BT_ERROR_NOT_IN_PROGRESS  Operation not in progress
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 */
int bt_device_get_profile_restricted(const char *device_address, bt_restricted_profile_t profile, int *restricted);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief   Set a profile trusted or untrusted for a device.
 * @since_tizen 4.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INTERNAL Internal Error
 * @retval #BT_ERROR_NOT_INITIALIZED  Not supported
 * @retval #BT_ERROR_INVALID_PARAMETER Invalid Parameter
 * @retval #BT_ERROR_NOT_ENABLED Invalid Parameter
 */
int bt_device_set_profile_trusted(const char *device_address, bt_trusted_profile_t profile, bool trust);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief   Gets a profile is trusted or untrusted for a device.
 * @since_tizen 4.0
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INTERNAL Internal Error
 * @retval #BT_ERROR_NOT_INITIALIZED  Not supported
 * @retval #BT_ERROR_NOT_ENABLED Invalid Parameter
 * @retval #BT_ERROR_INVALID_PARAMETER Invalid Parameter
 */
int bt_device_get_profile_trusted(const char *device_address, bt_trusted_profile_t profile, int *trust);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief   Registers a callback function to be invoked when Trusted Profiles are changed.
 * @since_tizen 2.4
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not supported
 * @retval #BT_ERROR_INVALID_PARAMETER Invalid Parameter
 */
int bt_device_set_trusted_profile_cb(bt_device_trusted_profiles_cb callback, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief   Unregisters the callback function registered with bt_device_set_trusted_profile_cb().
 * @since_tizen 2.4
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not supported
 */
int bt_device_unset_trusted_profile_cb(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Gets the ID address of the remote device
 * @since_tizen 6.0
 *
 * @remarks The id_address must be released with free() by you.
 *
 * @param[in] remote_rpa The Resolvable private address of the remote device
 * @param[out] id_address The Identity address of the remote device
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED   Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED      Not supported
 */
int bt_device_get_id_address(const char *remote_rpa, char **id_address);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Gets the rssi value when link loss occurs.
 * @since_tizen 6.0
 *
 * @remarks This function should be called in bt_device_connection_state_changed_cb()
 * when the device is disconnected
 *
 * @param[out] rssi Link loss rssi
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 *
 * @see bt_device_set_connection_state_changed_cb()
 * @see bt_device_connection_state_changed_cb()
 */
int bt_device_get_link_loss_rssi(int *rssi);

/**
 * @deprecated Deprecated since 4.0. Use bt_gatt_client_request_att_mtu_change instead.
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Request to change ATT MTU value
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] remote_address The address of the remote Bluetooth device
 * @param[in] mtu New MTU value to be changed
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED   Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 */
int bt_device_request_att_mtu(const char *remote_address, unsigned int mtu) TIZEN_DEPRECATED_API;

/**
 * @deprecated Deprecated since 4.0. Use bt_gatt_client_get_att_mtu instead.
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Gets the ATT MTU value set for a connection
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] remote_address The address of the remote Bluetooth device
 * @param[ot] mtu MTU value set for a connection
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	Invalid parameter
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED	Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED	Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED	Not supported
 */
int bt_device_get_att_mtu(const char *remote_address, unsigned int *mtu) TIZEN_DEPRECATED_API;

/**
 * @deprecated Deprecated since 4.0. Use bt_gatt_client_set_att_mtu_changed_cb instead.
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief  Registers a callback function to be invoked when the ATT MTU is changed.
 * @since_tizen 3.0
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @post bt_device_connection_state_changed_cb() will be invoked.
 * @see bt_initialize()
 * @see bt_device_unset_att_mtu_changed_cb()
 */
int bt_device_set_att_mtu_changed_cb(bt_device_att_mtu_changed_cb callback, void *user_data) TIZEN_DEPRECATED_API;

/**
 * @deprecated Deprecated since 4.0. Use bt_gatt_client_unset_att_mtu_changed_cb instead.
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief	Unregisters the callback function to be invoked when the ATT MTU is changed.
 * @since_tizen 3.0
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @see bt_initialize()
 * @see bt_device_set_att_mtu_changed_cb()
 */
int bt_device_unset_att_mtu_changed_cb(void) TIZEN_DEPRECATED_API;

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_SOCKET_MODULE
 * @brief Registers a rfcomm server socket with a specific UUID. Activation by dbus is possible when the profile is connected.
 * @since_tizen 2.4
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @remarks A socket can be destroyed by bt_socket_destroy_rfcomm_ex().
 * Application should call this API to receive a connection event when launched again by dbus.
 *
 * @param[in] uuid The UUID of service to provide
 * @param[in] bus_name bus_name of the application which is provided in service file.
 * @param[in] object_path dbus of the application
 * @return 0 on success, otherwise a negative error value.
 *
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_NOW_IN_PROGRESS  Already registered
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 *
 * @see bt_socket_listen_and_accept_rfcomm_ex()
 * @see bt_socket_destroy_rfcomm_ex()
 */
int bt_socket_create_rfcomm_ex(const char *uuid, const char *bus_name, const char *object_path);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_SOCKET_MODULE
 * @brief Removes the rfcomm server socket which was created using bt_socket_create_rfcomm_ex().
 * @since_tizen 2.4
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @remarks If callback function bt_socket_connection_state_changed_cb() is set and the remote Bluetooth device is connected,
 * then bt_socket_connection_state_changed_cb() will be called when this function is finished successfully.
 *
 * @param[in] uuid The UUID (which was created using bt_socket_create_rfcomm()) to destroy
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The socket must be created with bt_socket_create_rfcomm_ex().
 * @post If callback function bt_socket_connection_state_changed_cb() is set and the remote Bluetooth device is connected,
 * then bt_socket_connection_state_changed_cb() will be called.
 * @see bt_socket_create_rfcomm_ex()
 * @see bt_socket_connection_state_changed_cb()
 * @see bt_socket_set_connection_state_changed_cb()
 * @see bt_socket_unset_connection_state_changed_cb()
 */
int bt_socket_destroy_rfcomm_ex(const char *uuid);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_SOCKET_MODULE
 * @brief Starts listening on passed rfcomm socket and accepts connection requests. Activation by dbus is possible when the profile is connected.
 * @since_tizen 2.4
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @details Pop-up is shown automatically when a RFCOMM connection is requested.
 * bt_socket_connection_state_changed_cb() will be called with
 * #BT_SOCKET_CONNECTED if you click "yes" and connection is finished successfully.
 * @param[in] uuid The UUID of service to provide
 * @param[in] max_pending_connections The maximum number of pending connections
 * @param[in] bus_name bus_name of the application which is provided in service file.
 * @param[in] object_path dbus of the application
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The socket must be created with bt_socket_create_rfcomm_ex().
 * @post If callback function bt_socket_connection_state_changed_cb() is set,
 * then bt_socket_connection_state_changed_cb() will be called when the remote Bluetooth device is connected.
 * @see bt_socket_create_rfcomm_ex()
 * @see bt_socket_connection_state_changed_cb()
 * @see bt_socket_set_connection_state_changed_cb()
 * @see bt_socket_unset_connection_state_changed_cb()
 */
int bt_socket_listen_and_accept_rfcomm_ex(const char *uuid, int max_pending_connections, const char* bus_name, const char *object_path);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_SOCKET_MODULE
 * @brief Starts listening on passed rfcomm socket.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @details bt_socket_connection_requested_cb() will be called when a RFCOMM connection is requested.
 *
 * @param[in] socket_fd  The file descriptor socket on which start to listen
 * @param[in] max_pending_connections  The number of pending connections
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The socket must be created with bt_socket_create_rfcomm().
 * @post This function invokes bt_socket_connection_state_changed_cb().
 *
 * @see bt_socket_create_rfcomm()
 * @see bt_socket_set_connection_requested_cb()
 * @see bt_socket_unset_connection_requested_cb()
 * @see bt_socket_connection_requested_cb()
 */
int bt_socket_listen(int socket_fd, int max_pending_connections);

/**
 * @internal
 * @ingroup  CAPI_NETWORK_BLUETOOTH_SOCKET_MODULE
 * @brief  Accepts a connection request.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @param[in] requested_socket_fd  The file descriptor of socket on which a connection is requested
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The connection is requested by bt_socket_connection_requested_cb().
 * @see bt_socket_create_rfcomm()
 * @see bt_socket_connection_requested_cb()
 * @see bt_socket_listen()
 * @see bt_socket_reject()
*/
int bt_socket_accept(int requested_socket_fd);

/**
 * @internal
 * @ingroup  CAPI_NETWORK_BLUETOOTH_SOCKET_MODULE
 * @brief  Rejects a connection request.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @param[in] socket_fd  The file descriptor of socket on which a connection is requested
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The connection is requested by bt_socket_connection_requested_cb().
 * @see bt_socket_create_rfcomm()
 * @see bt_socket_connection_requested_cb()
 * @see bt_socket_listen()
 * @see bt_socket_accept()
 */
int bt_socket_reject(int socket_fd);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_OPP_SERVER_MODULE
 * @brief Initializes the Bluetooth OPP server requested by bt_opp_server_push_requested_cb().
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @details The popup appears when an OPP connection is requested from a remote device.
 * If you accept the request, then connection will be established and bt_opp_server_push_requested_cb() will be called.
 * At that time, you can call either bt_opp_server_accept() or bt_opp_server_reject().
 * @remarks This function must be called to start Bluetooth OPP server. You must free all resources of the Bluetooth service
 * by calling bt_opp_server_deinitialize() if Bluetooth OPP service is no longer needed.
 * @param[in] destination  The destination path
 * @param[in] push_requested_cb  The callback called when a push is requested
 * @param[in] user_data The user data to be passed to the callback function
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_RESOURCE_BUSY  Device or resource busy
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_NOT_SUPPORTED   Not supported
 *
 * @see  bt_opp_server_push_requested_cb()
 * @see  bt_opp_server_deinitialize()
 * @see  bt_opp_server_accept()
 * @see  bt_opp_server_reject()
 */
int bt_opp_server_initialize(const char *destination, bt_opp_server_push_requested_cb push_requested_cb, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_OPP_MODULE
 * @brief Gets the percentage progress for ongoing transfers.
 * @since_tizen 3.0
 * @exception   None
 * @param[in] transfer_type	Transfer Type: (@c BLUETOOTH_TRANSFER_INBOUND = receiving , @c  BLUETOOTH_TRANSFER_OUTBOUND = sending)
 * @param[in] transfer_id	Transfer ID
 * @param[out] progress		Percentage Progress
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED	Operation failed
 */
int bt_opp_get_transfer_progress(bt_opp_transfer_type_t transfer_type,
		int transfer_id, unsigned char *progress);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief Notifies the call event to the remote bluetooth device.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @remarks Before notifying #BT_AG_CALL_EVENT_ANSWERED or #BT_AG_CALL_EVENT_DIALING, you should open SCO(Synchronous Connection Oriented link)
 * if Bluetooth Hands-Free need SCO connection.
 * @param[in] event  The call event
 * @param[in] call_id  The call ID
 * @param[in] phone_number  The phone number. You must set this value in case of #BT_AG_CALL_EVENT_DIALING and #BT_AG_CALL_EVENT_INCOMING.
 * In other cases, this value can be NULL.
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth audio device must be connected with bt_audio_connect().
 * @see bt_audio_connect()
 */
int bt_ag_notify_call_event(bt_ag_call_event_e event, unsigned int call_id, const char *phone_number);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief Notifies the call list to the remote bluetooth device.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @param[in] list  The call list
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth audio device must be connected with bt_audio_connect().
 * @see bt_audio_connect()
 */
int bt_ag_notify_call_list(bt_call_list_h list);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief Notifies the state of voice recognition.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @param[in] state  The state of voice recognition: (@c true = enabled, @c  false = disabled)
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth audio device must be connected with bt_audio_connect().
 * @see bt_audio_connect()
 */
int bt_ag_notify_voice_recognition_state(bool state);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief  Registers a callback function that will be invoked when a call handling event happened from Hands-Free.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_audio_initialize()
 * @see bt_ag_call_handling_event_cb()
 * @see bt_ag_unset_call_handling_event_cb()
 */
int bt_ag_set_call_handling_event_cb(bt_ag_call_handling_event_cb callback, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief  Unregisters a callback function that will be invoked when a call handling event happened from Hands-Free.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_audio_initialize()
 * @see bt_ag_call_handling_event_cb()
 * @see bt_ag_set_call_handling_event_cb()
 */
int bt_ag_unset_call_handling_event_cb(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief  Registers a callback function that will be invoked when a multi call handling event happened from Hands-Free.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_audio_initialize()
 * @see bt_ag_multi_call_handling_event_cb()
 * @see bt_ag_unset_multi_call_handling_event_cb()
 */
int bt_ag_set_multi_call_handling_event_cb(bt_ag_multi_call_handling_event_cb callback, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief  Unregisters a callback function that will be invoked when a multi call handling event happened from Hands-Free.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_audio_initialize()
 * @see bt_ag_multi_call_handling_event_cb()
 * @see bt_ag_set_multi_call_handling_event_cb()
 */
int bt_ag_unset_multi_call_handling_event_cb(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief  Registers a callback function that will be invoked when a DTMF(Dual Tone Multi Frequency) is transmitted from Hands-Free.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_audio_initialize()
 * @see bt_ag_dtmf_transmitted_cb()
 * @see bt_ag_unset_dtmf_transmitted_cb()
 */
int bt_ag_set_dtmf_transmitted_cb(bt_ag_dtmf_transmitted_cb callback, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief  Unregisters a callback function that will be invoked when a DTMF(Dual Tone Multi Frequency) is transmitted from Hands-Free.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_audio_initialize()
 * @see bt_ag_dtmf_transmitted_cb()
 * @see bt_ag_set_dtmf_transmitted_cb()
 */
int bt_ag_unset_dtmf_transmitted_cb(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief Checks whether the remoted device enables NREC(Noise Reduction and Echo Canceling) or not.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @param[out] enabled The NREC status: (@c true = enabled, @c  false = not enabled)
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The remote device is connected by bt_audio_connect() with #BT_AUDIO_PROFILE_TYPE_HSP_HFP service.
 * @see bt_audio_connect()
 */
int bt_ag_is_nrec_enabled(bool *enabled);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_CALL_MODULE
 * @brief Creates a handle of call list.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @param[out] list  The handle of call list
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_OUT_OF_MEMORY  Out of memory
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_call_list_destroy()
 */
int bt_call_list_create(bt_call_list_h *list);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_CALL_MODULE
 * @brief Destroys the handle of call list.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @param[in] list  The handle of call list
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_call_list_create()
 */
int bt_call_list_destroy(bt_call_list_h list);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_CALL_MODULE
 * @brief Resets the handle of call list.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @param[in] list  The handle of call list
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_call_list_create()
 */
int bt_call_list_reset(bt_call_list_h list);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_CALL_MODULE
 * @brief Adds a call to the handle of call list.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @param[in] list  The handle of call list
 * @param[in] call_id  The call ID
 * @param[in] state  The state of audio gate call
 * @param[in] phone_number The phone number. You must set this value in case of #BT_AG_CALL_EVENT_DIALING and      #BT_AG_CALL_EVENT_INCOMING.
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_OUT_OF_MEMORY  Out of memory
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_call_list_create()
 */
int bt_call_list_add(bt_call_list_h list, unsigned int call_id, bt_ag_call_state_e state, const char *phone_number);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief  Registers a callback function that will be invoked when a XSATvendor AT command is transmitted from Hands-Free.
 * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_audio_initialize()
 * @see bt_ag_vendor_cmd_cb()
 * @see bt_ag_unset_vendor_cmd_cb()
 */
int bt_ag_set_vendor_cmd_cb(bt_ag_vendor_cmd_cb callback, void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief  Unregisters a callback function that will be invoked when a XSATvendor AT command is transmitted from Hands-Free
 * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_audio_initialize()
 * @see bt_ag_vendor_cmd_cb()
 * @see bt_ag_set_vendor_cmd_cb()
 */
int bt_ag_unset_vendor_cmd_cb(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief Checks whether the remoted device is wbs (Wide Band Speech) mode or not.
 * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
 * @param[out] wbs_mode The wbs status: (@c true = wide band speech, @c  false = narrow band speech)
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @pre The remote device is connected by bt_audio_connect() with #BT_AUDIO_PROFILE_TYPE_HSP_HFP service.
 * @see bt_audio_connect()
 */
int bt_ag_is_wbs_mode(bool *wbs_mode);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief Gets the HF(Hands-Free) profile connected status for AG role.
 * @since_tizen 2.4
 * @param[out] connected the connected status: (@c true = connected , @c  false = not connected )
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 */
int bt_ag_is_connected(bool *connected);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_AG_MODULE
 * @brief Switch between the connected headsets for AG role.
 * @since_tizen 3.0
 * @param[out]
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED	Operation failed
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Not connected
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 */
int bt_ag_switch_headset(const char *remote_addr);

/**
 * @ingroup  CAPI_NETWORK_BLUETOOTH_AUDIO_A2DP_MODULE
 * @brief  Sets copy protection. streaming application that needs to have the copy protection for the streaming data, shall invoke this API.
 * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @param[in] status - TRUE/FALSE
 * @return  0 on success, otherwise negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_OPERATION_FAILED  on failure
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 */
int bt_a2dp_set_content_protection(bool status);


/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AVRCP_CONTROL_MODULE
 * @brief Sends a command to the target device.
 * @since_tizen 5.5
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @param[in] cmd The commands, one of: Play, Pause, Next, Rewind.
 * @param[in] remote_address The address of the remote Bluetooth device
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 * @pre The Bluetooth audio service must be initialized with bt_avrcp_control_initialize().
 * @see bt_avrcp_control_initialize()
 * @see bt_avrcp_control_connect()
 */
int bt_avrcp_control_send_player_command_to(bt_avrcp_player_command_e cmd, char *remote_address);


/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_GATT_MODULE
 * @brief Gets the specification name from the UUID
 * @since_tizen 2.4
 *
 * @remarks @a name must be released with free() by you.
 *
 * @param[in] uuid The UUID
 * @param[out] name The specification name which defined from www.bluetooth.org
 * @return  0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_gatt_get_uuid()
 */
int bt_gatt_get_uuid_specification_name(const char *uuid, char **name);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_GATT_SERVER_MODULE
 * @brief  Updates the permissions which a characteristic or descriptor's GATT handle has.
 * @since_tizen 3.0
 *
 * @param[in] gatt_handle The handle of a characteristic or descriptor
 * @param[in] permissions The permissions to be updated
 * @return  0 on success, otherwise a negative error value
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_gatt_characteristic_create()
 * @see bt_gatt_descriptor_create()
 * @see bt_gatt_permission_e
 */
int bt_gatt_set_permissions(bt_gatt_h gatt_handle, int permissions);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_GATT_SERVER_MODULE
 * @brief  Updates the properties which a characteristic's GATT handle has.
 * @since_tizen 3.0
 *
 * @param[in] characteristic The characteristic's GATT handle
 * @param[in] properties The properties to be updated
 * @return  0 on success, otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_gatt_property_e
 */
int bt_gatt_characteristic_set_properties(bt_gatt_h characteristic, int properties);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_GATT_SERVER_MODULE
 * @brief  Registers a callback function to be invoked when the remote device enables or disables the Notification/Indication for particular characteristics.
 * @since_tizen 6.5
 *
 * @param[in] gatt_handle The GATT handle of a characteristic
 * @param[in] callback The callback to be invoked
 * @param[in] user_data The user data to be passed to @a callback function
 * @return      0 on success, otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED      Not supported
 *
 * @see bt_gatt_server_characteristic_notif_state_changed_cb()
 */
int bt_gatt_server_set_characteristic_notif_state_change_cb(bt_gatt_h gatt_handle,
				bt_gatt_server_characteristic_notif_state_changed_cb callback,
				void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_GATT_MODULE
 * @brief Destroys the GATT handle
 * @since_tizen 2.4
 *
 * @param[in] gatt_handle The handle of service, characteristic or descriptor
 * @return  0 on success, otherwise a negative error value
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_gatt_service_create()
 * @see bt_gatt_characteristic_create()
 * @see bt_gatt_descriptor_create()
 */
int bt_gatt_destroy(bt_gatt_h gatt_handle);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_GATT_SERVER_MODULE
 * @brief  Registers a callback function to be invoked when the ATT MTU is changed.
 * @since_tizen 5.5
 * @param[in] server The created GATT server's handle
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @post bt_device_connection_state_changed_cb() will be invoked.
 * @see bt_initialize()
 * @see bt_gatt_server_initialize()
 * @see bt_gatt_server_create()
 * @see bt_gatt_server_unset_att_mtu_changed_cb()
 */
int bt_gatt_server_set_att_mtu_changed_cb(bt_gatt_server_h server, bt_gatt_server_att_mtu_changed_cb callback, void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_GATT_SERVER_MODULE
 * @brief Unregisters the callback function to be invoked when the ATT MTU is changed.
 * @since_tizen 5.5
 * @param[in] server The created GATT server's handle
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @see bt_initialize()
 * @see bt_gatt_server_set_att_mtu_changed_cb()
 */
int bt_gatt_server_unset_att_mtu_changed_cb(bt_gatt_server_h server);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_MODULE
 * @brief  Registers a callback function that will be invoked when the A2DP Source connection state is changed.
 * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_audio_initialize()
 * @see bt_audio_connection_state_changed_cb()
 */
int bt_a2dp_source_audio_set_connection_state_changed_cb(bt_audio_connection_state_changed_cb callback, void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AUDIO_MODULE
 * @brief  Unregisters a callback function that will be invoked when the A2DP Source connection state is changed.
 * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth audio service must be initialized with bt_audio_initialize().
 * @see bt_audio_initialize()
 * @see bt_audio_connection_state_changed_cb()
 * @see bt_audio_set_connection_state_changed_cb()
 */
int bt_a2dp_source_audio_unset_connection_state_changed_cb(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_PAN_NAP_MODULE
 * @brief Activates the NAP(Network Access Point).
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_ALREADY_DONE  Operation is already done
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED
 * @see bt_nap_deactivate()
 */
int bt_nap_activate(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_PAN_NAP_MODULE
 * @brief Deactivates the NAP(Network Access Point).
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_ALREADY_DONE  Operation is already done
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth NAP service must be activated with bt_nap_activate().
 * @see bt_nap_activate()
 */
int bt_nap_deactivate(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_PAN_NAP_MODULE
 * @brief Disconnects the all PANUs(Personal Area Networking User) which are connected to you.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth NAP service must be activated with bt_nap_activate().
 * @see bt_nap_activate()
 */
int bt_nap_disconnect_all(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_PAN_NAP_MODULE
 * @brief Disconnects the specified PANU(Personal Area Networking User) which is connected to you.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] remote_address  The remote address
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth NAP service must be activated with bt_nap_activate().
 * @see bt_nap_activate()
 */
int bt_nap_disconnect(const char *remote_address);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_PAN_NAP_MODULE
 * @brief  Registers a callback function that will be invoked when the connection state changes.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @post bt_nap_connection_state_changed_cb() will be invoked.
 * @see bt_initialize()
 * @see bt_nap_connection_state_changed_cb()
 * @see bt_nap_unset_connection_state_changed_cb()
 */
int bt_nap_set_connection_state_changed_cb(bt_nap_connection_state_changed_cb callback, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_PAN_NAP_MODULE
 * @brief  Unregisters a callback function that will be invoked when the connection state changes.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @post bt_nap_connection_state_changed_cb() will be invoked.
 * @see bt_initialize()
 * @see bt_nap_connection_state_changed_cb()
 * @see bt_nap_set_connection_state_changed_cb()
 */
int bt_nap_unset_connection_state_changed_cb(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_PAN_PANU_MODULE
 * @brief  Registers a callback function that will be invoked when the connection state changes.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @post bt_nap_connection_state_changed_cb() will be invoked.
 * @see bt_initialize()
 * @see bt_panu_connection_state_changed_cb()
 * @see bt_panu_unset_connection_state_changed_cb()
 */
int bt_panu_set_connection_state_changed_cb(bt_panu_connection_state_changed_cb callback, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_PAN_PANU_MODULE
 * @brief  Unregisters a callback function that will be invoked when the connection state changes.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @post bt_nap_connection_state_changed_cb() will be invoked.
 * @see bt_initialize()
 * @see bt_panu_connection_state_changed_cb()
 * @see bt_panu_set_connection_state_changed_cb()
 */
int bt_panu_unset_connection_state_changed_cb(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_PAN_PANU_MODULE
 * @brief Connects the remote device with the PAN(Personal Area Networking) service, asynchronously.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] remote_address  The remote address
 * @param[in] type  The type of PAN service
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OUT_OF_MEMORY  Out of memory
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The local device must be bonded with the remote device by bt_device_create_bond().
 * @post bt_panu_connection_state_changed_cb() will be invoked.
 * @see bt_panu_disconnect()
 * @see bt_panu_connection_state_changed_cb()
 */
int bt_panu_connect(const char *remote_address, bt_panu_service_type_e type);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_PAN_PANU_MODULE
 * @brief Disconnects the remote device with the PAN(Personal Area Networking) service, asynchronously.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] remote_address  The remote address
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_OUT_OF_MEMORY  Out of memory
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The remote device must be connected by bt_panu_connect().
 * @post bt_panu_connection_state_changed_cb() will be invoked.
 * @see bt_panu_connect()
 * @see bt_panu_connection_state_changed_cb()
 */
int bt_panu_disconnect(const char *remote_address);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief   update LE connection.
 * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The Bluetooth service must be initialized by bt_initialize().
 * @pre The remote device must be connected with bt_gatt_connect().
 */
int bt_device_le_conn_update(const char *device_address,
			     const bt_le_conn_update_s *parameters);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE
 * @brief Gets the is_alias_set property of a bonded device.
 * @since_tizen 3.0
 *
 * @param[in] remote_address The address of remote device
 * @param[out] is_alias_set The is_alias_set property of device
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_OUT_OF_MEMORY  Out of memory
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
  * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 */
int bt_adapter_get_bonded_device_is_alias_set(const char *remote_address, gboolean *is_alias_set);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Sets Restriction for BT mode(BT allowed or not).
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	value - BT Allow value.
 *		BT_DPM_ERROR	 = -1,	 < bluetooth allowance error
 *		BT_DPM_BT_ALLOWED,		 < bluetooth allowance allowed
 *		BT_DPM_HANDSFREE_ONLY,  < bluetooth allowance handsfree only
 *		BT_DPM_BT_RESTRICTED,  < bluetooth allowance restricted
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre none.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_set_allow_bluetooth_mode(bt_dpm_allow_e value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads Restriction for BT mode(BT allowed or not).
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] none
 * @param[out]	value - BT Allow value.
 *		BT_DPM_ERROR	 = -1,	 < bluetooth allowance error
 *		BT_DPM_BT_ALLOWED,		 < bluetooth allowance allowed
 *		BT_DPM_HANDSFREE_ONLY,	< bluetooth allowance handsfree only
 *		BT_DPM_BT_RESTRICTED,  < bluetooth allowance restricted
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre none.
 * @see bt_dpm_set_allow_bluetooth_mode()
 */
int bt_dpm_get_allow_bluetooth_mode(bt_dpm_allow_e *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Sets the Restriction for device.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_activate_device_restriction(bt_dpm_status_e value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the Restriction for device.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_is_device_restriction_active(bt_dpm_status_e *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Sets the Restriction for uuid.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_activate_uuid_restriction(bt_dpm_status_e value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the Restriction for uuid.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_is_uuid_restriction_active(bt_dpm_status_e *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Adds the device to blacklist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	device_address - Device address
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_add_devices_to_blacklist(const char *device_address);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Adds the device to whitelist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	device_address - Device address
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_add_devices_to_whitelist(const char *device_address);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Adds the uuids to blacklist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	service_uuids - profile or custom service uuids
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_add_uuids_to_blacklist(const char *service_uuid);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Adds the uuid to whitelist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	service_uuids - profile or custom service uuids
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_add_uuids_to_whitelist(const char *service_uuid);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Clears the device from blacklist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	none
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_clear_devices_from_blacklist(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Clears the device from whitelist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	none
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_clear_devices_from_whitelist(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Clears the uuids from blacklist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	none
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_clear_uuids_from_blacklist(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Clears the uuids from whitelist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	none
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_clear_uuids_from_whitelist(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the devices from blacklist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out] device_list - list of devices
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_get_devices_from_blacklist(bt_dpm_device_list_s **device_list);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the devices from whitelist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out] device_list - list of devices
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_get_devices_from_whitelist(bt_dpm_device_list_s **device_list);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the uuids from blacklist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out] uuid_list - list of uuids
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_s **uuid_list);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the uuids from whitelist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out] uuid_list - list of uuids
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_s **uuid_list);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Removes the devices from whitelist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	device_address - Device address
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_remove_device_from_whitelist(const char *device_address);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Removes the devices from blacklist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	device_address - Device address
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_remove_device_from_blacklist(const char *device_address);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Removes the uuids from whitelist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	service_uuids - profile or custom service uuids
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_remove_uuid_from_whitelist(const char *service_uuid);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Removes the uuids from blacklist.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	service_uuids - profile or custom service uuids
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_remove_uuid_from_blacklist(const char *service_uuid);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Sets the Restriction for  outgoing call.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_set_allow_outgoing_call(bt_dpm_status_e value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the Restriction for  outgoing call.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_get_allow_outgoing_call(bt_dpm_status_e *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Sets the Restriction for pairing.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_set_pairing_state(bt_dpm_status_e value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the Restriction for pairing.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_get_pairing_state(bt_dpm_status_e *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Sets the Restriction for profiles.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]profile - Profile.
 *		BT_DPM_POLICY_A2DP_PROFILE_STATE,
 *		BT_DPM_POLICY_AVRCP_PROFILE_STATE,
 *		BT_DPM_POLICY_BPP_PROFILE_STATE,
 *		BT_DPM_POLICY_DUN_PROFILE_STATE,
 *		BT_DPM_POLICY_FTP_PROFILE_STATE,
 *		BT_DPM_POLICY_HFP_PROFILE_STATE,
 *		BT_DPM_POLICY_HSP_PROFILE_STATE,
 *		BT_DPM_POLICY_PBAP_PROFILE_STATE,
 *		BT_DPM_POLICY_SAP_PROFILE_STATE,
 *		BT_DPM_POLICY_SPP_PROFILE_STATE,
 *		BT_DPM_PROFILE_NONE
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_set_profile_state(bt_dpm_profile_e profile, bt_dpm_status_e value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the Restriction for profiles.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]profile - Profile.
 *		BT_DPM_POLICY_A2DP_PROFILE_STATE,
 *		BT_DPM_POLICY_AVRCP_PROFILE_STATE,
 *		BT_DPM_POLICY_BPP_PROFILE_STATE,
 *		BT_DPM_POLICY_DUN_PROFILE_STATE,
 *		BT_DPM_POLICY_FTP_PROFILE_STATE,
 *		BT_DPM_POLICY_HFP_PROFILE_STATE,
 *		BT_DPM_POLICY_HSP_PROFILE_STATE,
 *		BT_DPM_POLICY_PBAP_PROFILE_STATE,
 *		BT_DPM_POLICY_SAP_PROFILE_STATE,
 *		BT_DPM_POLICY_SPP_PROFILE_STATE,
 *		BT_DPM_PROFILE_NONE
 * @param[out]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_get_profile_state(bt_dpm_profile_e profile, bt_dpm_status_e *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Sets the Restriction for desktop connectivity.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_set_desktop_connectivity_state(bt_dpm_status_e value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the Restriction for desktop connectivity.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_get_desktop_connectivity_state(bt_dpm_status_e *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Sets the Restriction for discoverable mode.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_set_discoverable_state(bt_dpm_status_e value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the Restriction for discoverable mode.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_get_discoverable_state(bt_dpm_status_e *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Sets the Restriction for limited discoverable mode.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */

int bt_dpm_set_limited_discoverable_state(bt_dpm_status_e value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the Restriction for limited discoverable mode.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_get_limited_discoverable_state(bt_dpm_status_e *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Sets the Restriction for Data transfer.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_set_data_transfer_state(bt_dpm_status_e value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_DPM_MODULE
 * @brief Reads the Restriction for Data transfer.
 * @since_tizen 3.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out]	value - State value.
 *		BT_DPM_ALLOWED		= 0,	< DPM Policy status allowed.
 *		BT_DPM_RESTRICTED		= 1,	< DPM Policy status restricted.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER	invalid paramter
 * @retval #BT_ERROR_NOT_SUPPORTED	Not suported
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED operation failed
 *
 * @pre bt_dpm_set_allow_bluetooth_mode must be allowed.
 * @see bt_dpm_get_allow_bluetooth_mode()
 */
int bt_dpm_get_data_transfer_state(bt_dpm_status_e *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PBAP_MODULE
 * @brief Gets the pbap connected status.
 * @since_tizen 3.0
 * @param[in] remote_address The address of the remote device
 * @param[out] connected_status the connected status
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_BONDED	Remote device not bonded
 * @retval #BT_ERROR_OPERATION_FAILED	Operation failed
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The state of local Bluetooth must be #BT_ADAPTER_ENABLED.
 */
int bt_pbap_client_is_connected(const char *address, bool *connected_status);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_HID_MODULE
 * @brief Sends the custom event data.
 * @since_tizen @if WEARABLE 3.0 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] remote_address device address of remote device.
 * @param[in] report_id  reoport id need to be passed to remote device
 * @param[in] data  The data need to be passed to remote device
 * @param[in] data_len  The length of the data
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 *
 * @pre The HID connection must be established.
 * @see bt_hid_device_connection_state_changed_cb()
 */
int bt_hid_device_send_custom_event(const char *remote_address,
		unsigned char report_id, const char *data, unsigned int data_len);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AVRCP_CONTROL_MODULE
 * @brief  Sends the volume change request to the remote device.
 * @since_tizen 4.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @param[in] value The new volume level
 * @return  0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The remote device must be connected.
 * @see bt_avrcp_target_connection_state_changed_cb()
 * @see bt_avrcp_target_initialize()
 */
int bt_avrcp_control_set_absolute_volume(unsigned int value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AVRCP_CONTROL_MODULE
 * @brief  Sends the volume up request to the remote device.
 * @since_tizen 5.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @return  0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The remote device must be connected.
 * @see bt_avrcp_control_connect()
 * @see bt_avrcp_control_initialize()
 */
int bt_avrcp_control_increase_volume(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AVRCP_CONTROL_MODULE
 * @brief  Sends the volume down request to the remote device.
 * @since_tizen 5.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @return  0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The remote device must be connected.
 * @see bt_avrcp_control_connect()
 * @see bt_avrcp_control_initialize()
 */
int bt_avrcp_control_decrease_volume(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AVRCP_CONTROL_MODULE
 * @brief  Sends the delay report to the remote device.
 * @since_tizen 5.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @param[in] value The new delay level
 * @return  0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The remote device must be connected.
 * @see bt_avrcp_target_connection_state_changed_cb()
 * @see bt_avrcp_target_initialize()
 */
int bt_avrcp_control_send_delay_report(unsigned int value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AVRCP_MODULE
 * @brief  Registers a callback function that will be invoked when the delay is changed.
 * @since_tizen 5.0
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The AVRCP service must be initialized with bt_avrcp_target_initialize() or bt_avrcp_control_initialize().
 * @see bt_avrcp_target_initialize()
 * @see bt_avrcp_control_initialize()
 */
int bt_avrcp_set_delay_changed_cb(bt_avrcp_delay_changed_cb callback, void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_AVRCP_MODULE
 * @brief  Unregisters a callback function that will be invoked when the delay is changed.
 * @since_tizen 5.0
 * @return   0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @pre The AVRCP service must be initialized with bt_avrcp_target_initialize() or bt_avrcp_control_initialize().
 * @see bt_avrcp_target_initialize()
 * @see bt_avrcp_control_initialize()
 * @see bt_avrcp_set_delay_changed_cb()
 */
int bt_avrcp_unset_delay_changed_cb(void);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Creates the Proximity Profile Reporter Role.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] None
 * @param[out] reporter proximity reporter server handle
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_ALREADY_DONE Already Enabled
 * @retval #BT_ERROR_OUT_OF_MEMORY out Of Memory
 */
int bt_proximity_reporter_create(bt_proximity_reporter_h *reporter);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Destroys the Proximity Profile Reporter Role.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] reporter proximity reporter server handle
 * @return @c 0 on success,
 *		   otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 */
int bt_proximity_reporter_destroy(bt_proximity_reporter_h reporter);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Creates the Proximity Profile Monitor Role.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] remote address
 * @param[out] monitor proximity monitor handle
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_ALREADY_DONE Already Enabled
 * @retval #BT_ERROR_OUT_OF_MEMORY out Of Memory
 */
int bt_proximity_monitor_create(const char *remote_address, bt_proximity_monitor_h *monitor);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Creates the Proximity Profile Monitor Role.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] monitor proximity monitor handle
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED Device not Connected
 */
int bt_proximity_monitor_destroy(bt_proximity_monitor_h monitor);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Proximity Monitor initiates the connection to remote reporter device.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] monitor proximity monitor handle
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 */
int bt_proximity_monitor_connect(bt_proximity_monitor_h monitor);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Proximity Monitor disconnects with the remote reporter device.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] proximity monitor handle
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED Not initialized
 */
int bt_proximity_monitor_disconnect(bt_proximity_monitor_h monitor);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Sets proximity monitor connection state changed event change callback.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] proximity monitor handle
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED Device not Connected
 */
int bt_proximity_monitor_set_connection_state_changed_cb(bt_proximity_monitor_h monitor,
				bt_proximity_monitor_connection_state_changed_cb callback, void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Unsets proximity monitor connection state changed event change callback.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] proximity monitor handle
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED Device not Connected
 */
int bt_proximity_monitor_unset_connection_state_changed_cb(bt_proximity_monitor_h monitor);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Sets proximity reporter connection state changed event change callback.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] reporter proximity reporter handle
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 */
int bt_proximity_reporter_set_connection_state_changed_cb(bt_proximity_reporter_h reporter,
				bt_proximity_reporter_connection_state_changed_cb callback, void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Unsets proximity reporter connection state changed event change callback.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] proximity reporter handle
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 */
int bt_proximity_reporter_unset_connection_state_changed_cb(bt_proximity_reporter_h reporter);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Sets proximity reporter properties change callback.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] reporter proximity reporter handle
 * @param[in] callback The callback function to register
 * @param[in] user_data The user data to be passed to the callback function
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 */
int bt_proximity_reporter_set_property_changed_cb(bt_proximity_reporter_h reporter,
				bt_proximity_reporter_property_changed_cb callback, void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Unsets proximity reporter properties change callback.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] reporter proximity reporter handle
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 */
int bt_proximity_reporter_unset_property_changed_cb(bt_proximity_reporter_h reporter);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Set the Proximity Profile monitor linkloss alert value.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] monitor proximity monitor handle
 * @param[in] value The value to be set for link loss alert
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED Device not Connected
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 */
int bt_proximity_monitor_set_linkloss_alert(bt_proximity_monitor_h monitor, int value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Set the Proximity Profile monitor immediate alert value.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] monitor proximity monitor handle
 * @param[in] value The value to be set for immediate alert
 * @return @c 0 on success,
 *		   otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED Device not Connected
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 */
int bt_proximity_monitor_set_immediate_alert(bt_proximity_monitor_h monitor, int value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Read the Proximity Profile monitor linkloss alert value.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] monitor proximity monitor handle
 * @param[out] value value read for the linkloss alert.
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED Device not Connected
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 */
int bt_proximity_monitor_get_linkloss_alert(bt_proximity_monitor_h monitor, int *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Read the Proximity Profile monitor immediate alert value.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] monitor proximity monitor handle
 * @param[out] value value read for the immedaite alert.
 * @return @c 0 on success,
 *		   otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED Device not Connected
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 */
int bt_proximity_monitor_get_immediate_alert(bt_proximity_monitor_h monitor, int *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Read the Proximity Profile monitor Signal level value.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] monitor proximity monitor handle
 * @param[out] value value read for the signal level.
 * @return @c 0 on success,
 *		   otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED Device not Connected
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 */
int bt_proximity_monitor_get_signal_level(bt_proximity_monitor_h monitor, int *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Read the Proximity Profile reporter linkloss alert value.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] remote_address remote device reporter address
 * @param[out] value value read for the linkloss alert.
 * @return @c 0 on success,
 *		   otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 */
int bt_proximity_reporter_get_linkloss_alert(const char *remote_address, int *value);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_PROXIMITY_MODULE
 * @brief Read the Proximity Profile reporter immediate alert value.
 * @since_tizen 4.0
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth
 * @param[in] remote_address remote device reporter address
 * @param[out] value value read for the immediate alert.
 * @return @c 0 on success,
 *		   otherwise a negative error value
 * @retval #BT_ERROR_NONE Successful
 * @retval #BT_ERROR_NOT_INITIALIZED not initialized
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 */
int bt_proximity_reporter_get_immediate_alert(const char *remote_address, int *value);

/* This internal API will be removed */
/**
 * @internal
 * @deprecated Deprecated since 4.0. Use bt_adapter_le_scan_filter_unregister instead.
 * @brief API to Unset the Proximity uuids scan report
 */
int bt_adapter_le_scan_filter_unset_proximity_uuid(bt_scan_filter_h scan_filter) TIZEN_DEPRECATED_API;

/**
 * @internal
 * @brief API to register TDS provider.
 * @since_tizen @if WEARABLE 3.0 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] None
 * @param[out] None
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 *
 * @see bt_initialize()
 * @see bt_tds_provider_unregister()
 */
int bt_tds_provider_register(void);

/**
 * @internal
 * @brief API to unregister TDS provider.
 * @since_tizen @if WEARABLE 3.0 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] None
 * @param[out] None
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre TDS provider must be registered with bt_tds_provider_register().
 *
 * @see bt_initialize()
 * @see bt_tds_provider_register()
 */
int bt_tds_provider_unregister(void);

/**
 * @internal
 * @brief API to create TDS provider.
 * @since_tizen @if WEARABLE 3.0 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] transport Transport to be discovered over BLE.
 * @param[out] provider The handle associated with the newly created provider.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre TDS provider must be registered with bt_tds_provider_register().
 *
 * @see bt_initialize()
 * @see bt_tds_provider_register()
 * @see bt_tds_provider_unregister()
 * @see bt_tds_provider_destroy()
 */
int bt_tds_provider_create(bt_tds_provider_h *provider, bt_tds_transport_e transport);

/**
 * @internal
 * @brief API to destroy TDS provider.
 * @since_tizen @if WEARABLE 3.0 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] provider The handle associated with the provider
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre TDS provider must be registered with bt_tds_provider_register().
 * @pre TDS provider must be created with bt_tds_provider_create().
 *
 * @see bt_initialize()
 * @see bt_tds_provider_register()
 * @see bt_tds_provider_create()
 */
int bt_tds_provider_destroy(bt_tds_provider_h provider);

/**
 * @internal
 * @brief API to set transport block data for transport provider.
 * @since_tizen @if WEARABLE 3.0 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] provider The handle associated with the provider
 * @param[in] transport_state State of transport
 * @param[in] buf transport block data
 * @param[in] length transport block data length
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre TDS provider must be registered with bt_tds_provider_register().
 * @pre TDS provider must be created with bt_tds_provider_create().
 *
 * @see bt_initialize()
 * @see bt_tds_provider_register()
 * @see bt_tds_provider_create()
 */
int bt_tds_provider_set_transport_data(bt_tds_provider_h provider,
		bt_tds_transport_state_e transport_state, unsigned char *buf, int length);

/**
 * @internal
 * @brief API to set TDS provider manufacturer specific data.
 * @since_tizen @if WEARABLE 3.0 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] buf manufacturer specific data
 * @param[in] length manufacturer data length
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre TDS provider must be registered with bt_tds_provider_register().
 *
 * @see bt_initialize()
 * @see bt_tds_provider_register()
 * @see bt_tds_provider_create()
 */
int bt_tds_provider_set_manufacturer_data(unsigned char *buf, int length);

/**
 * @internal
 * @brief API to send activation response to TDS seeker.
 * @since_tizen @if WEARABLE 3.0 @endif
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] address Remote device bluetooth address
 * @param[in] result Result of activation request
 *		BT_ERROR_NONE: success
 *		BT_ERROR_INVALID_PARAMETER: Invalid data in activation request
 *		BT_ERROR_OPERATION_FAILED: Operation failed
 * @param[in] provider The handle associated with the provider
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @pre TDS provider must be registered with bt_tds_provider_register().
 *
 * @see bt_initialize()
 * @see bt_tds_provider_register()
 * @see bt_tds_activation_requested_cb()
 * @see bt_tds_set_transport_activation_requested_cb()
 * @see bt_tds_unset_transport_activation_requested_cb()
 */
int bt_tds_provider_send_activation_resp(char *address, int result, bt_tds_provider_h provider);

/**
 * @internal
 * @brief API to set activation requeste callback.
 * @since_tizen @if WEARABLE 3.0 @endif
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] callback  The callback function to invoke
 * @param[in] user_data The user data to be passed to the callback function
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 *
 * @pre The Bluetooth service must be initialized with bt_initialize().
 * @post bt_tds_activation_requested_cb() will be invoked.
 *
 * @see bt_initialize()
 * @see bt_tds_activation_requested_cb()
 * @see bt_tds_unset_transport_activation_requested_cb()
 */
int bt_tds_set_transport_activation_requested_cb(
		bt_tds_activation_requested_cb callback, void *user_data);

/**
 * @internal
 * @brief API to unset activation requeste callback.
 * @since_tizen @if WEARABLE 3.0 @endif
 * @privlevel public
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] None
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_SUPPORTED Not supported
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 *
 * @see bt_initialize()
 * @see bt_tds_set_transport_activation_requested_cb()
 */
int bt_tds_unset_transport_activation_requested_cb(void);

/**
 * @internal
 * @brief TDS Seeker Profile API to start seeking Remote TDS providers only
 */
int bt_tds_start_seeking_providers(bt_tds_provider_scan_result_cb cb, void *user_data);

/**
 * @internal
 * @brief TDS Seeker Profile API to stop seeking Remote TDS providers
 */
int bt_tds_stop_seeking_providers(void);

/**
 * @internal
 * @brief TDS Seeker Profile API to create Seeker Role associated with Remote TDS provider
 */
int bt_tds_seeker_create(const char *remote_address, bt_tds_seeker_h *seeker);

/**
 * @internal
 * @brief TDS Seeker Profile API to destroy Seeker Role associated with Remote TDS provider
 */
int bt_tds_seeker_destroy(bt_tds_seeker_h seeker);

/**
 * @internal
 * @brief TDS Seeker Profile API to set connection state changed event associated with Remote TDS provider
 */
int bt_tds_seeker_set_connection_state_changed_cb(bt_tds_seeker_h seeker,
		bt_tds_seeker_connection_state_changed_cb callback, void *user_data);

/**
 * @internal
 * @brief TDS Seeker Profile API to unset connection state changed event associated with Remote TDS provider
 */
int bt_tds_seeker_unset_connection_state_changed_cb(bt_tds_seeker_h seeker);

/**
 * @internal
 * @brief TDS Seeker Profile API to connect to Remote TDS provider
 */
int bt_tds_seeker_connect(bt_tds_seeker_h seeker);

/**
 * @internal
 * @brief TDS Seeker Profile API to disconnect to Remote TDS provider
 */
int bt_tds_seeker_disconnect(bt_tds_seeker_h seeker);

/**
 * @internal
 * @brief TDS Seeker Profile API to read complete TDS block data which is stored in Remote TDS provider's GATT database
 */
int bt_tds_seeker_get_complete_transport_blocks(bt_tds_seeker_h seeker,
		bt_tds_seeker_complete_transport_data_cb callback, void *user_data);

/**
 * @internal
 * @brief TDS Seeker Profile API to Activate ALternate transport supported by Remote TDS provider
 */
int bt_tds_seeker_activate_control_point(bt_tds_seeker_h seeker,
				bt_tds_transport_e transport, unsigned char *buffer, int len,
				bt_tds_control_point_activation_indication_cb callback, void *user_data);

/**
 * @ingroup
 * @brief Starts OTP server on the given directory location.
 */
int bt_otp_server_initialize(const char *directory);

/**
 * @ingroup
 * @brief Stops OTP server.
 */
int bt_otp_server_deinitialize();

/**
 * @ingroup
 * @brief Registers a callback function that will be invoked when the server state is changed.
 */
int bt_otp_set_server_state_changed_cb(bt_otp_server_state_changed_cb callback, void *user_data);

/**
 * @ingroup
 * @brief Registers a callback function that will be invoked when the server state is changed.
 */
int bt_otp_unset_server_state_changed_cb(void);

/**
 * @internal
 * @brief OTP Client Profile API to create Client Role associated with Remote OTP Server
 */
int bt_otp_client_create(const char *remote_address, bt_otp_client_h *otp_client);

/**
 * @internal
 * @brief OTP Client Profile API to destroy Client Role associated with Remote OTP Server
 */
int bt_otp_client_destroy(bt_otp_client_h otp_client);

/**
 * @internal
 * @brief OTP Client Profile API to set connection state changed event associated with Remote OTP Server
 */
int bt_otp_client_set_connection_state_changed_cb(bt_otp_client_h otp_client,
						bt_otp_client_state_changed_cb callback, void *user_data);

/**
 * @internal
 * @brief OTP Client Profile API to unset connection state changed event associated with Remote OTP Server
 */
int bt_otp_client_unset_connection_state_changed_cb(bt_otp_client_h otp_client);

/**
 * @internal
 * @brief OTP client API to connect to Remote OTP Server
 */
int bt_otp_client_connect(bt_otp_client_h otp_client);

/**
 * @internal
 * @brief OTP client API to disconnect to Remote OTP Server
 */
int bt_otp_client_disconnect(bt_otp_client_h otp_client);

/**
 * @internal
 * @brief OTP client API to discover all objects in Remote OTP Server
 */
int bt_otp_client_discover_all_objects(bt_otp_client_h otp_client,
						bt_otp_client_object_discovery_cb callback, void *user_data);

/**
 * @internal
 * @brief OTP client API to select object in Remote OTP Server
 */
int bt_otp_client_select_object(bt_otp_client_h otp_client, unsigned long long id,
							bt_otp_client_object_select_cb callback, void *user_data);
/**
 * @internal
 * @brief OTP client API to read remote objects contents
 */
int bt_otp_client_read_object_contents(bt_otp_client_h otp_client,
					bt_otp_client_read_object_complete_cb callback, void *user_data);
/**
 * @internal
 * @brief OTP client API to create object on remote server
 */
int bt_otp_client_create_object(bt_otp_client_h otp_client,
							const char *file_path,
							bt_otp_client_object_create_cb callback,
							void *user_data);
/**
 * @internal
 * @brief OTP client API to write object contents on remote server
 */
int bt_otp_client_write_object(bt_otp_client_h otp_client,
							const char *file_path,
							int offset, int length, int mode,
							bt_otp_client_object_write_cb callback,
							void *user_data);
/**
 * @internal
 * @brief OTP client API to execute object on remote server
 */
int bt_otp_client_execute_object(bt_otp_client_h otp_client,
							bt_otp_client_object_execute_cb callback,
							void *user_data);
/**
 * @internal
 * @brief OTP client API to delete object on remote server
 */
int bt_otp_client_delete_object(bt_otp_client_h otp_client,
							bt_otp_client_object_delete_cb callback,
							void *user_data);

//======================================================================================

/**
 * @internal
 * @brief HRP Sensor API to set initial heart rate value , will also notify to all connected clients if notification is enabled .
 */
int bt_hrp_sensor_set_heartrate_value(int heartrate);

/**
 * @internal
 * @brief HRP Sensor API to set initial Location value , before creating sensor.
 */
int bt_hrp_sensor_set_location_value(bt_body_sensor_location_e location);

/**
 * @internal
 * @brief HRP Sensor API to set initial energy value (Value Range : 0-9) , before creating sensor.
 */
int bt_hrp_sensor_set_energy_value(int energy_value);

/**
 * @internal
 * @brief HRP Sensor API to set initial rr interval value (Value range : 0-8 If EE is supported,
 * 0-9 if EE not supported) before creating sensor.
 */
int bt_hrp_sensor_set_rr_interval(int interval);

/**
 * @internal
 * @brief HRP Sensor API to set initial contact value , wearable in contact with
 * user or user has removed it, before creating sensor.
 */
int bt_hrp_sensor_set_contact_value(bool enable);

/**
 * @internal
 * @brief HRP Sensor API to set manufacturer name , before creating sensor.
 */
int bt_hrp_sensor_set_device_manufacturer_name(char *manuf_name);

/**
 * @internal
 * @brief HRP Sensor API for creating sensor and services.
 */

int bt_hrp_sensor_create(void);

/**
 * @internal
 * @brief HRP Sensor API to destory heart rate sensor .
 */

int bt_hrp_sensor_destroy(void);

/**
 * @internal
 * @brief HRP collector API to create collector .
 */

int bt_hrp_collector_create(const char *remote_address,
				bt_hrp_collector_h *collector);

/**
 * @internal
 * @brief HRP collector API to destory collector.
 */
int bt_hrp_collector_destory(bt_hrp_collector_h collector);

/**
 * @internal
 * @brief HRP collector API to start scan .
 */
int bt_hrp_collector_start_scan(bt_hrp_collector_scan_result_cb cb, void *user_data);

/**
 * @internal
 * @brief HRP collector API to stop scan.
 */
int bt_hrp_collector_stop_scan(void);

/**
 * @internal
 * @brief HRP collector API to connect to remote sensor .
 */
int bt_hrp_collector_connect(bt_hrp_collector_h collector);

/**
 * @internal
 * @brief HRP collector API to disconnect to remote sensor .
 */
int bt_hrp_collector_disconnect(bt_hrp_collector_h collector);

/**
 * @internal
 * @brief HRP collector API to set notification on / off.
 */
int bt_hrp_collector_set_notification(bt_hrp_collector_h collector,
			bt_hrp_collector_heart_rate_value_changed_cb callback,
			bool isNotify);

/**
 * @internal
 * @brief HRP collector API to read Body Sensor location , fills body sensor location in bsl_location
 */

int bt_hrp_collector_get_body_sensor_location(bt_hrp_collector_h collector,
			bt_hrp_collector_bsl_read_completed_cb bsl_read_cb);


/**
 * @internal
 * @brief HRP collector API to set connection state callback
 */

int bt_hrp_collector_set_connection_state_changed_cb(bt_hrp_collector_h collector,
			bt_hrp_collector_connection_state_changed_cb callback,
			void *user_data);

/**
 * @internal
 * @brief HRP collector API to unset connection state callback
 */

int bt_hrp_collector_unset_connection_state_changed_cb(bt_hrp_collector_h collector);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_GATT_MODULE
 * @brief Gets number of available packets to be used as a threshold for GATT data batching.
 * @since_tizen 5.5.0.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[out] available_packets The number of available packets to be used as a threshold.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_gatt_enable_data_batching()
 */
int bt_gatt_get_data_batching_available_packets(int *available_packets);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_GATT_MODULE
 * @brief Enables GATT data batching.
 * @since_tizen 5.5.0.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 * @remarks GATT data batching is disabled even if the gatt is disconnected or bt adapter is disabled.
 *
 * @param[in] remote_address The address of the remote Bluetooth device for which RSSI is to be monitored.
 * @param[in] packet_threshold The threshold of packet count for receiving data.
 * @param[in] timeout The timeout to flush buffer.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_QUOTA_EXCEEDED  Quota exceeded
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_ALREADY_DONE   Already enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_gatt_get_data_batching_available_packets()
 * @see bt_gatt_disable_data_batching()
 */
int bt_gatt_enable_data_batching(const char *remote_address, int packet_threshold, int timeout);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_GATT_MODULE
 * @brief Disables GATT data batching.
 * @since_tizen 5.5.0.0
 * @privlevel platform
 * @privilege %http://tizen.org/privilege/bluetooth.admin
 *
 * @param[in] remote_address The address of the remote Bluetooth device for which RSSI is to be monitored.
 *
 * @return 0 on success, otherwise a negative error value.
 * @retval #BT_ERROR_NONE  Successful
 * @retval #BT_ERROR_NOT_INITIALIZED  Not initialized
 * @retval #BT_ERROR_INVALID_PARAMETER  Invalid parameter
 * @retval #BT_ERROR_NOT_ENABLED  Not enabled
 * @retval #BT_ERROR_REMOTE_DEVICE_NOT_CONNECTED  Remote device is not connected
 * @retval #BT_ERROR_NOT_IN_PROGRESS  Not enabled
 * @retval #BT_ERROR_OPERATION_FAILED  Operation failed
 * @retval #BT_ERROR_PERMISSION_DENIED  Permission denied
 * @retval #BT_ERROR_NOT_SUPPORTED  Not supported
 *
 * @see bt_gatt_enable_data_batching()
 */
int bt_gatt_disable_data_batching(const char *remote_address);

/* Mesh API */
/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Initializes the Mesh API
 *
 * @remarks This function must be called before starting use BT Mesh API's.
 * You must free all resources of the BT Mesh service by
 * calling bt_mesh_deinitialize()
 * if Mesh service is no longer needed.
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_initialize(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Must be called if BT Mesh service is no longer needed
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_deinitialize(void);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief API to create a arbitrary node.
 * Primary element is mandatory element for any node
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_create(bt_mesh_node_features_s *features,
		bt_mesh_node_h *node_handle);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Destroys the locally created mesh node
 * & all resources contained in it
 *
 * @remarks: It is not allowed to arbitrarily destroy a locally created node,
 * if it is part of a mesh network already.
 * @remarks: Destroying a remote node is not supported.
 * @remarks: In order to reset a remote provisioned node, use bt_mesh_node_reset() API
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_destroy(bt_mesh_node_h node_handle);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Resets the remote node identified by the node handle
 *
 * @remarks: Resetting local node is not allowed
 * @remarks: If reset is successful, node handle will become invalid. Application
 * should not use the node handle after resetting the node.
 *
 * @see bt_mesh_network_provision_device()
 * @see bt_mesh_network_discover_node()
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_reset(bt_mesh_node_h node_handle);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief API to create a mesh element. In case of Mesh Provisioner,
 * it will serve as a element of the local node  of a Mesh Provisioner.
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_create_element(bt_mesh_node_h node_handle,
		bt_mesh_element_h *element_handle);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Destroys the locally created mesh element &
 * all resources contained in it (Ex: models)
 *
 * @remarks: It is not allowed to arbitrarily destroy a
 * locally created element, if it is part of a mesh network already.
 * @remarks: Destroying element of a remote node is not supported.
 * @remarks: In order to reset a remote provisioned node,
 * use bt_mesh_node_reset() API
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_element_destroy(bt_mesh_element_h element_handle);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief API to create a mesh Model instance.
 * In case of Mesh Provisioner, it will serve as a
 * Model of one of the elements of the local node of a Mesh Provisioner.
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_element_create_model(bt_mesh_element_h element_handle,
		bt_mesh_model_id_s *model_id,
				bt_mesh_model_h *model_handle);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Destroys the locally created mesh Model
 *
 * @remarks: It is not allowed to arbitrarily destroy a locally created model,
 * if it is part of a mesh network already.
 * @remarks: Destroying model of a remote element is not supported.
 * @remarks: In order to reset a remote provisioned node,
 * use bt_mesh_node_reset() API
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_destroy(bt_mesh_model_h model);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief API to get Model ID from handle.
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_get_id(bt_mesh_model_h model,
		bt_mesh_model_id_s *model_id);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Get Network instance in which node is contained.
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_get_network(bt_mesh_node_h node,
		bt_mesh_network_h *netkwork);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Get node instance in which element is contained.
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_element_get_node(bt_mesh_element_h element,
		bt_mesh_node_h *node);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Get element instance in which model is contained.
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_get_element(bt_mesh_model_h model,
		bt_mesh_element_h *element);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Get Network instance in which node is contained.
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_appkey_get_netkey(bt_mesh_appkey_h appkey,
		bt_mesh_netkey_h *netkey);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to create a fresh Local Mesh Provisioner.
 * Each Mesh Network will be characterisized
 * by only one Mesh Provisioner. Mesh Provisioner will
 * contain a Mesh Node which be called "local node".
 * CAPI user(application) can create multiple Mesh Network.
 * Each network will have a unique Mesh Provisioner
 *
 * @param: in: config_client, local Mesh Provisioner node
 * @param: in: network_name, Mesh Network user friendly Name
 * @param: out: token, The token parameter is a hexadecimal string
 * of 8 bytes has been assigned to
 * the application when it first got provisioned/joined mesh.
 * order to authenticate itself and attach to the network as a mesh node.
 * @param: out: network, created Mesh Network instance
 *
 * Note: Once the Mesh Network is successfully created
 * OR the 'local Node' is attached, it is *NOT* allowed to
 * change Local Node Hierarchy (Add/Delete Element(s), Add/Delete Model(s) etc.)
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_create(bt_mesh_node_h config_client,
		const char *network_name,
			bt_mesh_network_h *network,
				char **token);


/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to destroy a Mesh Network.
 *
 * @param: in: network, Network handle
 *
 * @remarks: If it is a local Mesh provisioner network, it is
 * recommended to reset the provisioned nodes before destroying the
 * network, otherwise, provisioned nodes will be orphaned and need to be
 * possibly hard-resetted, to make them advertise again as device.
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_destroy(bt_mesh_network_h network);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to create a fresh Local unprovisioned Mesh Node.
 * Mesh node created by join is ready for provisioning,
 *
 * @param: in: node_handle, Mesh node instance
 * @param: in: callback, callback to be called when node provisioned successfully
 *
 * Once a fresh node is created successfully
 * Node is available to attach to network.
 * Note: A Node can be part of only one network at a time.
 *
 * @since_tizen 6.5
 * @privlevel platform
 */
int bt_mesh_node_network_join(bt_mesh_node_h node_handle,
		bt_mesh_join_complete_cb callback, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to cancel an ongoing join Network request.
 *
 * @param: in: node_handle, Local Mesh node
 *
 * @see bt_mesh_node_network_join
 * @since_tizen 6.5
 * @privlevel platform
 */
int bt_mesh_node_cancel_join(bt_mesh_node_h node_handle);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Registers a callback that will be invoked when message is
 * received from any node either remote node or from provisioner node
 *
 * @pre Either bt_mesh_network_provision_device() in case of Provisioner role
 * or bt_mesh_node_network_join() in case of Node role must be called
 *
 * @param[in] callback, callback function which is set, for receiving any message.
 *
 * @see bt_network_provision_device()
 * @see bt_mesh_node_network_join()
 * @since_tizen 6.5
 * @privlevel platform
 */
int bt_mesh_node_model_set_msg_cb(bt_mesh_node_h node_handle,
		bt_mesh_model_msg_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to load a previously created Local Mesh Provisioner.
 * Each Mesh Network will be characterisized
 * by only one Mesh Provisioner. Mesh Provisioner will contain a
 * Mesh Config Node which be called "local node".
 * CAPI user(application) can create multiple Mesh Network.
 * Each network will have a unique Mesh Provisioner
 *
 * @param: in: token, The token parameter is a 8 byte hexadecimal
 * string that has been assigned to the application when it first
 * got provisioned/joined mesh. The API will use the token to
 * authenticate itself and attach to the network as a mesh node.
 * Application should use a valid token to authenticate itself
 * as a Mesh Network Provisioner.
 * @param: out: network, created Mesh Network instance
 *
 * Note: Once the Mesh Network is successfully created OR the
 * 'local Node' is attached,
 * it is *NOT* allowed to change Local Node Hierarchy
 * (Add/Delete Element(s), Add/Delete Model(s) etc.)
 *
 * @see bt_mesh_network_create
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_load(const char *token,
		bt_mesh_network_h *network);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Set Mesh Network's user fiendly name.
 *
 * @see bt_mesh_network_create
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_set_name(bt_mesh_network_h network,
		const char *network_name);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Get Mesh Network's user fiendly name.
 *
 * @see bt_mesh_network_create
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_get_name(bt_mesh_network_h network,
		char **network_name);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to create and associate a mesh Network Key to Mesh Network
 *
 * @see bt_mesh_network_create
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_add_netkey(bt_mesh_network_h network,
		bt_mesh_netkey_h *netkey);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Get all NetKey(s) attached to the Local Network.
 *
 * @see bt_mesh_network_create
 * @see bt_mesh_network_add_netkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_foreach_netkeys(bt_mesh_network_h network,
		bt_mesh_network_netkey_info_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Get global Netkey index from NetKey instance
 *
 * @see bt_mesh_network_add_netkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_netkey_get_index(bt_mesh_netkey_h netkey,
		uint16_t *index);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to update a mesh Network Key.
 *
 * @see bt_mesh_network_add_netkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_netkey_update(bt_mesh_netkey_h netkey);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to delete a mesh Network Key.
 *
 * @remarks It is not allowed to destroy a netkey if it is already
 * added to any of nodes in the Mesh Network
 *
 * @see bt_mesh_network_add_netkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_netkey_delete(bt_mesh_netkey_h netkey);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to create & associate a Application Key to a Network Key
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_netkey_add_appkey(bt_mesh_netkey_h netkey,
		bt_mesh_appkey_h *appkey);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Get all appkeys associated with a NetKey.
 *
 * @see bt_mesh_netkey_add_appkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_netkey_foreach_appkeys(bt_mesh_netkey_h netkey,
		bt_mesh_appkey_info_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Get global AppKey index from AppKey instance.
 *
 * @see bt_mesh_netkey_add_appkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_appkey_get_index(bt_mesh_appkey_h netkey,
		uint16_t *index);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to update a mesh Network Key.
 *
 * @see bt_mesh_netkey_add_appkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_appkey_update(bt_mesh_appkey_h appkey);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to delete a mesh Application Key.
 *
 * @remarks It is not allowed to destroy an AppKey if it is already
 * added to any of nodes in the Mesh Network
 *
 * @see bt_mesh_netkey_add_appkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_appkey_delete(bt_mesh_appkey_h appkey);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to get all devices attached to the network.
 * Node handle along with its primary unicast address will be returned
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_foreach_devices(bt_mesh_network_h network,
		bt_mesh_network_device_info_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Call to get primary unicast address of the node from its handle
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_get_primary_address(bt_mesh_node_h node,
		uint16_t *primary_address);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Find each element present in a node
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_foreach_element(bt_mesh_node_h node,
		bt_mesh_node_element_info_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Find each models present in an element
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_element_foreach_models(bt_mesh_element_h element,
		bt_mesh_element_model_info_cb callback,
			void *user_data);


/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Async call to discover unprovisioned device.
 * Each unprovisioned device will advertise itself with a unique Device UUID
 *
 * @remarks scan result will be NULL when scan state is started or finished.
 * scan result is valid only when scan state is 'device found'
 *
 * @see bt_mesh_scanning_state_e
 * @see bt_mesh_network_scan_unprovisioned_device_result_cb
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_unprovisioned_device_scan(bt_mesh_network_h network,
		bt_mesh_scan_params_s *scan_params,
			bt_mesh_network_scan_unprovisioned_device_result_cb callback,
				void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Stop discovring unprovisioned device.
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_stop_unprovisioned_device_scan(bt_mesh_network_h network);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Set capabilities of a provisioner application.
 * Provisioning capabilities will as per Input/Output capabilities of the
 * device/application creating the provisioner.
 * For e.g, if device/application has Wi-Fi/NFC connectivity and can
 * procure Provisioning keys Out-Of-Band over Wi-Fi network/Remote Web URL/NFC Connectivity,
 * then following capabilities can be set to true, otherwise left false
 * 	a/ bool public_oob b/ bool static_oob
 * Above capabilities indicate whether, Public Key for ECC exchange & Static Key for
 * authentication can be procured out-of-band or not
 *
 * @param: in: network Mesh network instance which represents a provisioner node
 * @param: in: capabilities Provisioner capabilities structure
 *
 * @remarks: A single provisioner network can provision multiple remote devices.
 * During security provisioning, capabilities are selected  *By Provisioner*
 * based on combination of supported capabilities of provisioner & remote nodes together.
 *
 * @remarks: A mesh network instance represents a single Mesh provisioning node
 * & multiple remote provisioned nodes.
 * Therefore, setting capabilities one time, for a network or a provisioner node is sufficient.
 * Normally, Input/output capabilities do not change over time for a device
 * or an application. Incase, it is changed, application is free to refresh the
 * capabilities of the Provisioner at any point of time.
 * The next provisioning process will automatically consider the refreshed capabilities.
 * @remarks: Capabilities can be set one time after local provisioner node is attached to a network.
 *
 * @see: bt_mesh_provisioner_capabilities_s structure
 * @see: bt_mesh_network_create()
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_set_provisioning_capabilities(
		bt_mesh_network_h network,
			bt_mesh_provisioner_capabilities_s *capabilities);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Async call to provision a device to the Mesh Network
 *
 * @remarks: In Tizen, only one provisioning process is allowed,
 * irrespective of Provisioner or node role.
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_provision_device(bt_mesh_network_h network,
		const char *dev_uuid,
			bt_mesh_network_device_provision_cb callback,
				void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Registers a callback that will be invoked when remote
 * device requests authentication, during the provisioning process.
 *
 * @pre Either bt_mesh_network_provision_device() in case of Provisioner role
 * or bt_mesh_node_network_join() in case of Node role must be
 * called (Node role API is not defined yet)
 *
 * @param[in] callback  callback function which is set, for receiving
 * authentication request during provisioning process.
 * @param[in] user_data data from application which will be provided in callback.
 *
 * @remarks: This method is designed common for both Provisioner & Node role.
 * @remarks: This callback is not invoked without the local device initiating the process
 * of either Provisioning(in case of local provisioner) or
 * Joining Network(in case of local node role).
 * Therefore, application will be completely aware, when the callback is invoked.
 * @remarks: In Tizen, only one provisioning process is allowed, irrespective of Provisioner or node role.
 * Therefore, when the callback is invoked, aplication exactly knows following
 *   a/ whether the process is for provisioner role trying to provision a remote device
 *   b/ Or process if for local node role, which is inviting remote provisioners
 * to join itself to a Mesh Network
 *
 * @see bt_network_provision_device()
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_authentication_set_request_cb(
		bt_mesh_authentication_request_cb callback,
			void *user_data);

/**
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Un-registers a callback that will be invoked when
 * remote device requests authentication,during the provisioning process
 *
 * @param[in] callback  callback function to be set when
 * authentication request is received.
 *
 * @remarks: This method is designed common for both Provisioner & Node role.
 * @see bt_mesh_authentication_set_request_cb()
 * @see bt_mesh_authentication_request_cb()
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_authentication_unset_request_cb(
		bt_mesh_authentication_request_cb callback);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief  API to reply authentication request.
 * @remarks  This function can be called by application when remote
 * device requests authentication due to either of following process
 * a/ Local provisioner role trying to provision a remote device
 * b/ Local node role, inviting remote provisioners to join itself to a Mesh Network
 * @param[in]  auth_type   Specific authentiation type, for which reply is being sent
 * @param[in]  value       Reply string corresponding to authentication type
 * @param[in]  auth_reply  Accept or cancel ongoing provisioning process
 * @pre  This function can only be called when application receieves authentication
 *       callback bt_mesh_authentication_request_cb
 * @remarks: value string is valid, when autnetication type is of following
 * 	     a/ BT_MESH_AUTH_REQ_ALPHANUMERIC_INPUT
 *           b/ BT_MESH_AUTH_REQ_NUMERIC_INPUT
 *           c/ BT_MESH_AUTH_REQ_BLINK_COUNT_INPUT
 *           d/ BT_MESH_AUTH_REQ_BEEP_COUNT_INPUT
 *           e/ BT_MESH_AUTH_REQ_VIBRATE_COUNT_INPUT
 *           f/ BT_MESH_AUTH_REQ_OOB_PUBLIC_KEY_INPUT
 *           g/ BT_MESH_AUTH_REQ_OOB_STATIC_KEY_INPUT
 *
 * @remarks: This method is designed common for both Provisioner & Node role.
 * @see  bt_mesh_authentication_set_request_cb()
 * @see  bt_mesh_authentication_request_cb()
 * @see bt_mesh_authentication_type_e
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_authentication_reply(
		bt_mesh_authentication_type_e auth_type,
			const char *value,  bool auth_reply);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Async call to identify the newly provisioned device
 *
 * @remarks: After provisioning is done, device must be
 * discovered first of all in order to
 * use it. If device is successfully discovered, node handle
 * will be returned in the callback.
 * @see bt_mesh_network_provision_device
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_discover_node(bt_mesh_network_h network,
		const char *dev_uuid,
			bt_mesh_node_discover_status_cb callback,
				void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Async call to browse the features of a node.
 * Features of the node are returned in callback
 *
 * @see bt_mesh_network_provision_device
 * @see bt_mesh_network_discover_node
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_get_features(bt_mesh_node_h node,
		bt_mesh_node_features_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Async call to Add/Update/Delete a NetKey to a node
 *
 * @see bt_mesh_network_add_netkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_configure_netkey(bt_mesh_node_h node,
		bt_mesh_node_key_configuration_e netkey_op,
			bt_mesh_netkey_h netkey,
				bt_mesh_netkey_status_cb callback,
					void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Async call to add/update/delete an Application to a node
 *
 * @see bt_mesh_netkey_add_appkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_configure_appkey(bt_mesh_node_h node,
		bt_mesh_node_key_configuration_e appkey_op,
			bt_mesh_appkey_h appkey,
				bt_mesh_appkey_status_cb callback,
					void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Find all NetKey(s) attached to a node
 *
 * @see bt_mesh_node_configure_netkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_foreach_netkeys(bt_mesh_node_h node,
		bt_mesh_node_netkey_info_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Find all AppKey(s) bound to a NetKey in a node
 *
 * @see bt_mesh_node_configure_appkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_foreach_appkeys(bt_mesh_node_h node,
		bt_mesh_netkey_h netkey,
			bt_mesh_node_appkey_info_cb callback,
				void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Query TTL set to a node in the network
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_get_ttl(bt_mesh_node_h node,
		bt_mesh_node_ttl_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Query TTL set to a node in the network
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_node_set_ttl(bt_mesh_node_h node, uint8_t ttl,
		bt_mesh_node_ttl_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Async call to bind a locally created application key
 * to a Model of a node
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_bind_appkey(bt_mesh_model_h model,
		bt_mesh_appkey_h appkey, bt_mesh_model_bind_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Async call to Unbind a locally created application key
 * to a Model of a node
 *
 * @see bt_mesh_model_bind_appkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_unbind_appkey(bt_mesh_model_h model,
		bt_mesh_appkey_h appkey,
			bt_mesh_model_unbind_cb callback,
				void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Async call to find all AppKey(s) bound to a model of a node
 *
 * @see bt_mesh_model_bind_appkey
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_get_appkey_list(bt_mesh_model_h model,
        bt_mesh_model_appkey_list_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Send message originated by a local mesh model.
 *
 * @param: in: model, model handle to which message to be sent
 * @param: in: appkey, appkey to encrypt mesh message
 * appkey must be valid for corresponding model, i.e
 * appkey must be bound to the model
 * @param: in: msg_params, opcode and the message to be sent
 * @param: in: callback, callback to be called for msg response
 *
 * @see bt_mesh_model_msg_params_s
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_send_msg(bt_mesh_model_h model,
	bt_mesh_appkey_h appkey, bt_mesh_model_msg_params_s *msg_params,
	bt_mesh_model_msg_cb callback, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Send response of the message send by provisioner node.
 *
 * @param: in: model, model handle to which message to be sent
 * @param: in: msg_params, opcode and the message to be sent
 *
 * @see bt_mesh_model_msg_params_s
 *
 * @since_tizen 6.5
 * @privlevel platform
 */
int bt_mesh_node_model_send_response(bt_mesh_model_h model,
	bt_mesh_model_msg_params_s *msg_params, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Send Group message originated by a local mesh model.
 *
 * @param: in: group, group handle to which message to be sent
 * @param: in: appkey, appkey to encrypt mesh message
 * appkey must be valid for corresponding model, i.e
 * appkey must be bound to the model
 * @param: in: msg_params, opcode and the message to be sent
 * @param: in: callback, callback to be called for msg response
 *
 * @see bt_mesh_model_msg_params_s
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_group_send_msg(bt_mesh_group_h group,
	bt_mesh_appkey_h appkey, bt_mesh_model_msg_params_s *msg_params,
	bt_mesh_model_msg_cb callback, void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Create a Mesh group with a given group address in the Local Network
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_create_group(bt_mesh_network_h network,
		uint16_t group_addr,
			bt_mesh_group_h *group);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Create a Mesh Virtual group in the Local Network.
 *
 * @remarks Virtual group label (128-bit UUID) is internally managed by Framework.
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_create_virtual_group(bt_mesh_network_h network,
		bt_mesh_group_h *group);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Remove a create Mesh group in the Local Network.
 *
 * @see bt_mesh_network_create_group
 * @see bt_mesh_network_create_virtual_group
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_remove_group(bt_mesh_group_h group);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Find all Mesh group(s), that are created in the Local Network.
 *
 * @remarks Group handles will be returned for each created group.
 * @see bt_mesh_network_create_group
 * @see bt_mesh_network_create_virtual_group
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_network_foreach_groups(bt_mesh_network_h network,
		bt_mesh_network_group_info_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Subscription Add/Delete/Overwrite request to a Model of an element.
 *
 * @param: in: model_op: Add/Delete/Overwrite
 * @param: in: model Model on which subscription operation will be applied
 * @param: in: group Mesh Group handle.
 * @param: in: callback result of model subscription operation
 * request from remote node
 * @param: in: user_data async callback data
 *
 * @see bt_mesh_network_create_group
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_configure_group_subscription(
		bt_mesh_model_subscription_op_e model_op,
			bt_mesh_model_h model, bt_mesh_group_h group,
				bt_mesh_model_subscription_op_cb callback,
					void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Subscription Add/Delete/Overwrite request of a
 * Virtual Group, to Model of an element.
 *
 * @param: in: model_op: Add/Delete/Overwrite
 * @param: in: model Model on which subscription operation will be applied
 * @param: in: group Mesh Group handle.
 * @param: in: callback result of model subscription operation
 * request from remote node
 * @param: in: user_data async callback data
 *
 * @see bt_mesh_network_create_virtual_group
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_configure_virtual_group_subscription(
		bt_mesh_model_subscription_op_e model_op,
			bt_mesh_model_h model, bt_mesh_group_h group,
				bt_mesh_model_subscription_op_cb callback,
					void *user_data);


/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Find all Subscription list of a model in a node.
 * A List of all groups handles will be returned in callback, if success
 *
 * @remarks Group handles will be returned for each created group.
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_get_subscription_list(bt_mesh_model_h model,
		bt_mesh_model_subscription_list_cb callback,
			void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Add a publiation to a Model of a node.
 *
 * @param: in: model Model which will generate the Publication message
 * @param: in: appkey application key handle which will be used to
 * encrypt publication message
 * @param: in: group Mesh Group handle.
 * @param: in: param Model Publication Parameters
 * @param: in: callback result of model publication set request,
 * from remote node
 * @param: in: user_data async callback data
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_set_publication(bt_mesh_model_h model,
		bt_mesh_appkey_h appkey, bt_mesh_group_h group,
			bt_mesh_model_pub_params_s *params,
				bt_mesh_model_publication_status_cb callback,
					void *user_data);

/**
 * @internal
 * @ingroup CAPI_NETWORK_BLUETOOTH_MESH_MODULE
 * @brief Find Publication, set in model of a node, attached to a Network.
 * Publication group handle will be returned in callback, if success
 *
 * @since_tizen 6.0
 * @privlevel platform
 */
int bt_mesh_model_get_publication(bt_mesh_model_h model,
		bt_mesh_model_publication_status_cb callback,
			void *user_data);

/**
 * @}
 */


#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* __TIZEN_NETWORK_BLUETOOTH_INTERNAL_H__ */