SVACE Fixes
[platform/core/connectivity/bluetooth-frwk.git] / bt-service-emul / bt-service-rfcomm-client.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
20 #include "bluetooth-api.h"
21 #include "bt-internal-types.h"
22
23 #include "bt-service-common.h"
24 #include "bt-service-event.h"
25 #include "bt-service-util.h"
26 #include "bt-service-rfcomm-client.h"
27
28 int _bt_rfcomm_connect_using_uuid(int request_id,
29                         bluetooth_device_address_t *device_address,
30                         char *remote_uuid)
31 {
32         return BLUETOOTH_ERROR_NOT_SUPPORT;
33 }
34
35 /* Range of the Channel : 0 <= channel <= 30 */
36 int _bt_rfcomm_connect_using_channel(int request_id,
37                         bluetooth_device_address_t *device_address,
38                         char *channel)
39 {
40         return BLUETOOTH_ERROR_NOT_SUPPORT;
41 }
42
43 /* Be used in RFCOMM client /server */
44 int _bt_rfcomm_disconnect(int socket_fd)
45 {
46         return BLUETOOTH_ERROR_NOT_SUPPORT;
47 }
48
49 /* Be used in RFCOMM client /server */
50 int _bt_rfcomm_write(int socket_fd, char *buf, int length)
51 {
52         return BLUETOOTH_ERROR_NOT_SUPPORT;
53 }
54
55 int _bt_rfcomm_cancel_connect(void)
56 {
57         return BLUETOOTH_ERROR_NOT_SUPPORT;
58 }
59
60 int _bt_rfcomm_is_connected(gboolean *connected)
61 {
62         BT_CHECK_PARAMETER(connected, return);
63
64         return BLUETOOTH_ERROR_NOT_SUPPORT;
65 }
66
67 int _bt_rfcomm_is_device_connected(bluetooth_device_address_t *device_address,
68                                         gboolean *connected)
69 {
70         BT_CHECK_PARAMETER(device_address, return);
71         BT_CHECK_PARAMETER(connected, return);
72
73         return BLUETOOTH_ERROR_NOT_SUPPORT;
74 }
75