Some more TcpClient stuff
[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 G_BEGIN_DECLS
31
32 #define G_TYPE_TCP_SERVER         (g_tcp_server_get_type ())
33 #define G_TCP_SERVER(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_TCP_SERVER, GTcpServer))
34 #define G_TCP_SERVER_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_TCP_SERVER, GTcpServerClass))
35 #define G_IS_TCP_SERVER(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_TCP_SERVER))
36 #define G_IS_TCP_SERVER_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_TCP_SERVER))
37 #define G_TCP_SERVER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_TCP_SERVER, GTcpServer))
38
39 typedef struct _GTcpServer          GTcpServer;
40 typedef struct _GTcpServerClass     GTcpServerClass;
41 typedef struct _GTcpServerPrivate   GTcpServerPrivate;
42
43 #include <gnio/gnio.h>
44 #include <gnio/gtcpclient.h>
45
46 struct _GTcpServer
47 {
48   GObject parent;
49
50   GTcpServerPrivate *priv;
51 };
52
53 struct _GTcpServerClass
54 {
55   GObjectClass parent_class;
56 };
57
58 GType               g_tcp_server_get_type      (void) G_GNUC_CONST;
59
60 GTcpServer *        g_tcp_server_new           (GInetSocketAddress  *address,
61                                                 GError             **error);
62
63 GTcpClient *        g_tcp_server_accept        (GTcpServer    *server,
64                                                 GCancellable  *cancellable,
65                                                 GError       **error);
66
67 void                g_tcp_server_accept_async  (GTcpServer          *server,
68                                                 GCancellable        *cancellable,
69                                                 GAsyncReadyCallback  callback,
70                                                 gpointer             user_data);
71
72 GTcpClient *        g_tcp_server_accept_finish (GTcpServer    *server,
73                                                 GAsyncResult  *result,
74                                                 GError       **error);
75
76 void                g_tcp_server_close         (GTcpServer    *server);
77
78 G_END_DECLS
79
80 #endif /* G_TCP_SERVER_H */
81