1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2008 Christian Kellner, Samuel Cormier-Iijima
4 * Copyright © 2009 Codethink Limited
5 * Copyright © 2009 Red Hat, Inc
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General
18 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 * Authors: Christian Kellner <gicmo@gnome.org>
21 * Samuel Cormier-Iijima <sciyoshi@gmail.com>
22 * Ryan Lortie <desrt@desrt.ca>
23 * Alexander Larsson <alexl@redhat.com>
26 #ifndef __G_SOCKET_LISTENER_H__
27 #define __G_SOCKET_LISTENER_H__
29 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
30 #error "Only <gio/gio.h> can be included directly."
33 #include <gio/giotypes.h>
37 #define G_TYPE_SOCKET_LISTENER (g_socket_listener_get_type ())
38 #define G_SOCKET_LISTENER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
39 G_TYPE_SOCKET_LISTENER, GSocketListener))
40 #define G_SOCKET_LISTENER_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
41 G_TYPE_SOCKET_LISTENER, GSocketListenerClass))
42 #define G_IS_SOCKET_LISTENER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
43 G_TYPE_SOCKET_LISTENER))
44 #define G_IS_SOCKET_LISTENER_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
45 G_TYPE_SOCKET_LISTENER))
46 #define G_SOCKET_LISTENER_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
47 G_TYPE_SOCKET_LISTENER, GSocketListenerClass))
49 typedef struct _GSocketListenerPrivate GSocketListenerPrivate
;
50 typedef struct _GSocketListenerClass GSocketListenerClass
;
53 * GSocketListenerClass:
54 * @changed: virtual method called when the set of socket listened to changes
56 * Class structure for #GSocketListener.
58 struct _GSocketListenerClass
60 GObjectClass parent_class
;
62 void (* changed
) (GSocketListener
*listener
);
64 void (* event
) (GSocketListener
*listener
,
65 GSocketListenerEvent event
,
68 /* Padding for future expansion */
69 void (*_g_reserved2
) (void);
70 void (*_g_reserved3
) (void);
71 void (*_g_reserved4
) (void);
72 void (*_g_reserved5
) (void);
73 void (*_g_reserved6
) (void);
76 struct _GSocketListener
78 GObject parent_instance
;
79 GSocketListenerPrivate
*priv
;
83 GType
g_socket_listener_get_type (void) G_GNUC_CONST
;
86 GSocketListener
* g_socket_listener_new (void);
89 void g_socket_listener_set_backlog (GSocketListener
*listener
,
93 gboolean
g_socket_listener_add_socket (GSocketListener
*listener
,
95 GObject
*source_object
,
98 gboolean
g_socket_listener_add_address (GSocketListener
*listener
,
99 GSocketAddress
*address
,
101 GSocketProtocol protocol
,
102 GObject
*source_object
,
103 GSocketAddress
**effective_address
,
105 GLIB_AVAILABLE_IN_ALL
106 gboolean
g_socket_listener_add_inet_port (GSocketListener
*listener
,
108 GObject
*source_object
,
110 GLIB_AVAILABLE_IN_ALL
111 guint16
g_socket_listener_add_any_inet_port (GSocketListener
*listener
,
112 GObject
*source_object
,
115 GLIB_AVAILABLE_IN_ALL
116 GSocket
* g_socket_listener_accept_socket (GSocketListener
*listener
,
117 GObject
**source_object
,
118 GCancellable
*cancellable
,
120 GLIB_AVAILABLE_IN_ALL
121 void g_socket_listener_accept_socket_async (GSocketListener
*listener
,
122 GCancellable
*cancellable
,
123 GAsyncReadyCallback callback
,
125 GLIB_AVAILABLE_IN_ALL
126 GSocket
* g_socket_listener_accept_socket_finish (GSocketListener
*listener
,
127 GAsyncResult
*result
,
128 GObject
**source_object
,
132 GLIB_AVAILABLE_IN_ALL
133 GSocketConnection
* g_socket_listener_accept (GSocketListener
*listener
,
134 GObject
**source_object
,
135 GCancellable
*cancellable
,
138 GLIB_AVAILABLE_IN_ALL
139 void g_socket_listener_accept_async (GSocketListener
*listener
,
140 GCancellable
*cancellable
,
141 GAsyncReadyCallback callback
,
144 GLIB_AVAILABLE_IN_ALL
145 GSocketConnection
* g_socket_listener_accept_finish (GSocketListener
*listener
,
146 GAsyncResult
*result
,
147 GObject
**source_object
,
150 GLIB_AVAILABLE_IN_ALL
151 void g_socket_listener_close (GSocketListener
*listener
);
155 #endif /* __G_SOCKET_LISTENER_H__ */