Enhance logging for secure address
[platform/core/connectivity/bluetooth-frwk.git] / bt-service-emul / bt-service-audio.c
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *              http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #include <glib.h>
19 #include <dlog.h>
20 #include <string.h>
21
22 #include "bluetooth-api.h"
23 #include "bt-internal-types.h"
24
25 #include "bt-service-audio.h"
26 #include "bt-service-common.h"
27 #include "bt-service-device.h"
28 #include "bt-service-util.h"
29
30
31 int _bt_audio_connect(int request_id, int type,
32                 bluetooth_device_address_t *device_address,
33                 GArray **out_param1)
34 {
35         BT_CHECK_PARAMETER(device_address, return);
36
37         return BLUETOOTH_ERROR_NOT_SUPPORT;
38 }
39
40 int _bt_audio_disconnect(int request_id, int type,
41                 bluetooth_device_address_t *device_address,
42                 GArray **out_param1)
43 {
44         BT_CHECK_PARAMETER(device_address, return);
45
46         return BLUETOOTH_ERROR_NOT_SUPPORT;
47 }
48
49 int _bt_hf_connect(int request_id,
50                 bluetooth_device_address_t *device_address,
51                 GArray **out_param1)
52 {
53         BT_CHECK_PARAMETER(device_address, return);
54
55         return BLUETOOTH_ERROR_NOT_SUPPORT;
56 }
57
58 int _bt_hf_disconnect(int request_id,
59                 bluetooth_device_address_t *device_address,
60                 GArray **out_param1)
61 {
62         BT_CHECK_PARAMETER(device_address, return);
63
64         return BLUETOOTH_ERROR_NOT_SUPPORT;
65 }
66
67 int _bt_audio_set_content_protect(gboolean status)
68 {
69         return BLUETOOTH_ERROR_NOT_SUPPORT;
70 }