5cb8d63ef66db96fafba0d65cb83578a611c1b4a
[cascardo/gnio.git] / gnio / gtcpserver.h
1 /* GNIO - GLib Network Layer of GIO
2  *
3  * Copyright (C) 2008 Christian Kellner, Samuel Cormier-Iijima
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Authors: Christian Kellner <gicmo@gnome.org>
21  *          Samuel Cormier-Iijima <sciyoshi@gmail.com>
22  */
23
24 #ifndef G_TCP_SERVER_H
25 #define G_TCP_SERVER_H
26
27 #include <glib-object.h>
28 #include <gio/gio.h>
29
30 #include "ginetsocketaddress.h"
31 #include "gtcpclient.h"
32 #include "gnetworkinputstream.h"
33 #include "gnetworkoutputstream.h"
34
35 G_BEGIN_DECLS
36
37 #define G_TYPE_TCP_SERVER         (g_tcp_server_get_type ())
38 #define G_TCP_SERVER(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_TCP_SERVER, GTcpServer))
39 #define G_TCP_SERVER_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_TCP_SERVER, GTcpServerClass))
40 #define G_IS_TCP_SERVER(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_TCP_SERVER))
41 #define G_IS_TCP_SERVER_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_TCP_SERVER))
42 #define G_TCP_SERVER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_TCP_SERVER, GTcpServer))
43
44 typedef struct _GTcpServer          GTcpServer;
45 typedef struct _GTcpServerClass     GTcpServerClass;
46 typedef struct _GTcpServerPrivate   GTcpServerPrivate;
47
48 struct _GTcpServer
49 {
50   GObject parent;
51
52   GTcpServerPrivate *priv;
53 };
54
55 struct _GTcpServerClass
56 {
57   GObjectClass parent_class;
58 };
59
60 GType               g_tcp_server_get_type      (void) G_GNUC_CONST;
61
62 GTcpServer *        g_tcp_server_new           (GInetSocketAddress  *address,
63                                                 GError             **error);
64
65 GTcpClient *        g_tcp_server_accept        (GTcpServer    *server,
66                                                 GCancellable  *cancellable,
67                                                 GError       **error);
68
69 void                g_tcp_server_accept_async  (GTcpServer          *server,
70                                                 GCancellable        *cancellable,
71                                                 GAsyncReadyCallback  callback,
72                                                 gpointer             user_data);
73
74 GTcpClient *        g_tcp_server_accept_finish (GTcpServer    *server,
75                                                 GAsyncResult  *result,
76                                                 GError       **error);
77
78 void                g_tcp_server_close         (GTcpServer    *server);
79
80 G_END_DECLS
81
82 #endif /* G_TCP_SERVER_H */
83