DPM: Sync API return value with other bt-service modules.
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / include / bt-service-rfcomm-server.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *              http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #ifndef _BT_SERVICE_RFCOMM_SERVER_H_
19 #define _BT_SERVICE_RFCOMM_SERVER_H_
20
21 #include <glib.h>
22 #include <sys/types.h>
23 #include "bluetooth-api.h"
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29
30 #ifdef __cplusplus
31 }
32 #endif /* __cplusplus */
33 #endif /*_BT_SERVICE_RFCOMM_SERVER_H_*/
34
35 typedef struct {
36         int server_id;
37         int accept_id;
38         int server_type;
39         int control_fd;
40         int data_fd;
41         guint control_id;
42         guint data_id;
43         char *serial_path;
44         char *uuid;
45         char *sender;
46         char *remote_address;
47         GIOChannel *control_io;
48         GIOChannel *data_io;
49 //      DBusGProxy *serial_proxy;
50 //      DBusGProxy *manager_proxy;
51 } bt_rfcomm_server_info_t;
52
53 int _bt_rfcomm_create_socket(char *sender, char *uuid);
54
55 int _bt_rfcomm_remove_socket(int socket_fd);
56
57 int _bt_rfcomm_listen(int socket_fd, int max_pending, gboolean is_native);
58
59 int _bt_rfcomm_is_uuid_available(char *uuid, gboolean *available);
60
61 int _bt_rfcomm_accept_connection(void);
62
63 int _bt_rfcomm_reject_connection(void);
64
65 int _bt_rfcomm_server_disconnect(int data_fd);
66
67 bt_rfcomm_server_info_t *_bt_rfcomm_get_server_info_using_uuid(char *uuid);
68
69 int _bt_rfcomm_server_disconnect_all_connection(void);
70
71 int _bt_rfcomm_server_check_existence(gboolean *existence);
72
73 int _bt_rfcomm_server_check_termination(char *name);
74