Add TcpClient and TcpServer
[cascardo/gnio.git] / gnio / gtcpserver.h
diff --git a/gnio/gtcpserver.h b/gnio/gtcpserver.h
new file mode 100644 (file)
index 0000000..5cb8d63
--- /dev/null
@@ -0,0 +1,83 @@
+/* GNIO - GLib Network Layer of GIO
+ *
+ * Copyright (C) 2008 Christian Kellner, Samuel Cormier-Iijima
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General
+ * Public License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Authors: Christian Kellner <gicmo@gnome.org>
+ *          Samuel Cormier-Iijima <sciyoshi@gmail.com>
+ */
+
+#ifndef G_TCP_SERVER_H
+#define G_TCP_SERVER_H
+
+#include <glib-object.h>
+#include <gio/gio.h>
+
+#include "ginetsocketaddress.h"
+#include "gtcpclient.h"
+#include "gnetworkinputstream.h"
+#include "gnetworkoutputstream.h"
+
+G_BEGIN_DECLS
+
+#define G_TYPE_TCP_SERVER         (g_tcp_server_get_type ())
+#define G_TCP_SERVER(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_TCP_SERVER, GTcpServer))
+#define G_TCP_SERVER_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_TCP_SERVER, GTcpServerClass))
+#define G_IS_TCP_SERVER(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_TCP_SERVER))
+#define G_IS_TCP_SERVER_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_TCP_SERVER))
+#define G_TCP_SERVER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_TCP_SERVER, GTcpServer))
+
+typedef struct _GTcpServer          GTcpServer;
+typedef struct _GTcpServerClass     GTcpServerClass;
+typedef struct _GTcpServerPrivate   GTcpServerPrivate;
+
+struct _GTcpServer
+{
+  GObject parent;
+
+  GTcpServerPrivate *priv;
+};
+
+struct _GTcpServerClass
+{
+  GObjectClass parent_class;
+};
+
+GType               g_tcp_server_get_type      (void) G_GNUC_CONST;
+
+GTcpServer *        g_tcp_server_new           (GInetSocketAddress  *address,
+                                                GError             **error);
+
+GTcpClient *        g_tcp_server_accept        (GTcpServer    *server,
+                                                GCancellable  *cancellable,
+                                                GError       **error);
+
+void                g_tcp_server_accept_async  (GTcpServer          *server,
+                                                GCancellable        *cancellable,
+                                                GAsyncReadyCallback  callback,
+                                                gpointer             user_data);
+
+GTcpClient *        g_tcp_server_accept_finish (GTcpServer    *server,
+                                                GAsyncResult  *result,
+                                                GError       **error);
+
+void                g_tcp_server_close         (GTcpServer    *server);
+
+G_END_DECLS
+
+#endif /* G_TCP_SERVER_H */
+