[kdbus] KDBUS_ITEM_PAYLOAD_OFF items are (once again) relative to msg header
[platform/upstream/glib.git] / gio / gsocketlistener.h
index 9a13209..157c2cd 100644 (file)
@@ -15,9 +15,7 @@
  * 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.
+ * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  *
  * Authors: Christian Kellner <gicmo@gnome.org>
  *          Samuel Cormier-Iijima <sciyoshi@gmail.com>
  *          Alexander Larsson <alexl@redhat.com>
  */
 
+#ifndef __G_SOCKET_LISTENER_H__
+#define __G_SOCKET_LISTENER_H__
+
 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
 #error "Only <gio/gio.h> can be included directly."
 #endif
 
-#ifndef __G_SOCKET_LISTENER_H__
-#define __G_SOCKET_LISTENER_H__
-
 #include <gio/giotypes.h>
 
 G_BEGIN_DECLS
@@ -76,57 +74,75 @@ struct _GSocketListener
   GSocketListenerPrivate *priv;
 };
 
+GLIB_AVAILABLE_IN_ALL
 GType                   g_socket_listener_get_type                      (void) G_GNUC_CONST;
 
+GLIB_AVAILABLE_IN_ALL
 GSocketListener *       g_socket_listener_new                           (void);
 
+GLIB_AVAILABLE_IN_ALL
 void                    g_socket_listener_set_backlog                   (GSocketListener     *listener,
                                                                         int                  listen_backlog);
 
+GLIB_AVAILABLE_IN_ALL
 gboolean                g_socket_listener_add_socket                    (GSocketListener     *listener,
                                                                          GSocket             *socket,
                                                                         GObject             *source_object,
                                                                         GError             **error);
-gboolean                g_socket_listener_add_address                   (GSocketListener      *listener,
+GLIB_AVAILABLE_IN_ALL
+gboolean                g_socket_listener_add_address                   (GSocketListener     *listener,
                                                                          GSocketAddress      *address,
                                                                         GSocketType          type,
-                                                                        const char          *protocol,
+                                                                        GSocketProtocol      protocol,
+                                                                        GObject             *source_object,
+                                                                         GSocketAddress     **effective_address,
+                                                                        GError             **error);
+GLIB_AVAILABLE_IN_ALL
+gboolean                g_socket_listener_add_inet_port                 (GSocketListener     *listener,
+                                                                         guint16              port,
                                                                         GObject             *source_object,
                                                                         GError             **error);
-gboolean                g_socket_listener_add_inet_port                 (GSocketListener      *listener,
-                                                                         int                  port,
+GLIB_AVAILABLE_IN_ALL
+guint16                 g_socket_listener_add_any_inet_port             (GSocketListener     *listener,
                                                                         GObject             *source_object,
                                                                         GError             **error);
 
+GLIB_AVAILABLE_IN_ALL
 GSocket *               g_socket_listener_accept_socket                 (GSocketListener      *listener,
                                                                         GObject             **source_object,
                                                                          GCancellable         *cancellable,
                                                                          GError              **error);
+GLIB_AVAILABLE_IN_ALL
 void                    g_socket_listener_accept_socket_async           (GSocketListener      *listener,
                                                                          GCancellable         *cancellable,
                                                                          GAsyncReadyCallback   callback,
                                                                          gpointer              user_data);
+GLIB_AVAILABLE_IN_ALL
 GSocket *               g_socket_listener_accept_socket_finish          (GSocketListener      *listener,
                                                                          GAsyncResult         *result,
                                                                         GObject             **source_object,
                                                                          GError              **error);
 
 
+GLIB_AVAILABLE_IN_ALL
 GSocketConnection *     g_socket_listener_accept                        (GSocketListener      *listener,
                                                                         GObject             **source_object,
                                                                          GCancellable         *cancellable,
                                                                          GError              **error);
 
+GLIB_AVAILABLE_IN_ALL
 void                    g_socket_listener_accept_async                  (GSocketListener      *listener,
                                                                          GCancellable         *cancellable,
                                                                          GAsyncReadyCallback   callback,
                                                                          gpointer              user_data);
 
+GLIB_AVAILABLE_IN_ALL
 GSocketConnection *     g_socket_listener_accept_finish                 (GSocketListener      *listener,
                                                                          GAsyncResult         *result,
                                                                         GObject             **source_object,
                                                                          GError              **error);
 
+GLIB_AVAILABLE_IN_ALL
 void                    g_socket_listener_close                         (GSocketListener      *listener);
 
 G_END_DECLS