Fix build break for rpm
[framework/connectivity/bluez.git] / btio / btio.h
1 /*
2  *
3  *  BlueZ - Bluetooth protocol stack for Linux
4  *
5  *  Copyright (C) 2009-2010  Marcel Holtmann <marcel@holtmann.org>
6  *  Copyright (C) 2009-2010  Nokia Corporation
7  *
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22  *
23  */
24 #ifndef BT_IO_H
25 #define BT_IO_H
26
27 #include <glib.h>
28
29 typedef enum {
30         BT_IO_ERROR_DISCONNECTED,
31         BT_IO_ERROR_CONNECT_FAILED,
32         BT_IO_ERROR_FAILED,
33         BT_IO_ERROR_INVALID_ARGS,
34 } BtIOError;
35
36 #define BT_IO_ERROR bt_io_error_quark()
37
38 GQuark bt_io_error_quark(void);
39
40 typedef enum {
41         BT_IO_L2RAW,
42         BT_IO_L2CAP,
43         BT_IO_L2ERTM,
44         BT_IO_RFCOMM,
45         BT_IO_SCO,
46 } BtIOType;
47
48 typedef enum {
49         BT_IO_OPT_INVALID = 0,
50         BT_IO_OPT_SOURCE,
51         BT_IO_OPT_SOURCE_BDADDR,
52         BT_IO_OPT_DEST,
53         BT_IO_OPT_DEST_BDADDR,
54         BT_IO_OPT_DEST_TYPE,
55         BT_IO_OPT_DEFER_TIMEOUT,
56         BT_IO_OPT_SEC_LEVEL,
57         BT_IO_OPT_KEY_SIZE,
58         BT_IO_OPT_CHANNEL,
59         BT_IO_OPT_SOURCE_CHANNEL,
60         BT_IO_OPT_DEST_CHANNEL,
61         BT_IO_OPT_PSM,
62         BT_IO_OPT_CID,
63         BT_IO_OPT_MTU,
64         BT_IO_OPT_OMTU,
65         BT_IO_OPT_IMTU,
66         BT_IO_OPT_MASTER,
67         BT_IO_OPT_HANDLE,
68         BT_IO_OPT_CLASS,
69         BT_IO_OPT_MODE,
70         BT_IO_OPT_FLUSHABLE,
71         BT_IO_OPT_PRIORITY,
72 } BtIOOption;
73
74 typedef enum {
75         BT_IO_SEC_SDP = 0,
76         BT_IO_SEC_LOW,
77         BT_IO_SEC_MEDIUM,
78         BT_IO_SEC_HIGH,
79 } BtIOSecLevel;
80
81 typedef enum {
82         BT_IO_MODE_BASIC = 0,
83         BT_IO_MODE_RETRANS,
84         BT_IO_MODE_FLOWCTL,
85         BT_IO_MODE_ERTM,
86         BT_IO_MODE_STREAMING
87 } BtIOMode;
88
89 typedef void (*BtIOConfirm)(GIOChannel *io, gpointer user_data);
90
91 typedef void (*BtIOConnect)(GIOChannel *io, GError *err, gpointer user_data);
92
93 gboolean bt_io_accept(GIOChannel *io, BtIOConnect connect, gpointer user_data,
94                                         GDestroyNotify destroy, GError **err);
95
96 gboolean bt_io_set(GIOChannel *io, BtIOType type, GError **err,
97                                                 BtIOOption opt1, ...);
98
99 gboolean bt_io_get(GIOChannel *io, BtIOType type, GError **err,
100                                                 BtIOOption opt1, ...);
101
102 GIOChannel *bt_io_connect(BtIOType type, BtIOConnect connect,
103                                 gpointer user_data, GDestroyNotify destroy,
104                                 GError **err, BtIOOption opt1, ...);
105
106 GIOChannel *bt_io_listen(BtIOType type, BtIOConnect connect,
107                                 BtIOConfirm confirm, gpointer user_data,
108                                 GDestroyNotify destroy, GError **err,
109                                 BtIOOption opt1, ...);
110
111 #endif