2008-12-29 19:38:28 +01:00
|
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2008 Red Hat, Inc.
|
|
|
|
|
*
|
|
|
|
|
* 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
|
2014-01-23 12:58:29 +01:00
|
|
|
|
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2008-12-29 19:38:28 +01:00
|
|
|
|
*/
|
|
|
|
|
|
2012-12-28 05:43:14 +01:00
|
|
|
|
#ifndef __G_SOCKET_CONNECTABLE_H__
|
|
|
|
|
#define __G_SOCKET_CONNECTABLE_H__
|
|
|
|
|
|
2008-12-29 19:38:28 +01:00
|
|
|
|
#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
|
|
|
|
|
#error "Only <gio/gio.h> can be included directly."
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <gio/giotypes.h>
|
|
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
#define G_TYPE_SOCKET_CONNECTABLE (g_socket_connectable_get_type ())
|
|
|
|
|
#define G_SOCKET_CONNECTABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_SOCKET_CONNECTABLE, GSocketConnectable))
|
|
|
|
|
#define G_IS_SOCKET_CONNECTABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_SOCKET_CONNECTABLE))
|
|
|
|
|
#define G_SOCKET_CONNECTABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_SOCKET_CONNECTABLE, GSocketConnectableIface))
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GSocketConnectable:
|
|
|
|
|
*
|
|
|
|
|
* Interface for objects that contain or generate #GSocketAddress<!-- -->es.
|
2009-05-28 00:20:08 +02:00
|
|
|
|
*/
|
2008-12-29 19:38:28 +01:00
|
|
|
|
typedef struct _GSocketConnectableIface GSocketConnectableIface;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GSocketConnectableIface:
|
|
|
|
|
* @g_iface: The parent interface.
|
|
|
|
|
* @enumerate: Creates a #GSocketAddressEnumerator
|
2010-08-10 22:53:25 +02:00
|
|
|
|
* @proxy_enumerate: Creates a #GProxyAddressEnumerator
|
2015-10-04 16:24:24 +02:00
|
|
|
|
* @to_string: Format the connectable’s address as a string for debugging.
|
2015-10-25 19:43:54 +01:00
|
|
|
|
* Implementing this is optional. (Since: 2.48)
|
2008-12-29 19:38:28 +01:00
|
|
|
|
*
|
|
|
|
|
* Provides an interface for returning a #GSocketAddressEnumerator
|
2010-08-10 22:53:25 +02:00
|
|
|
|
* and #GProxyAddressEnumerator
|
2009-05-28 00:20:08 +02:00
|
|
|
|
*/
|
2008-12-29 19:38:28 +01:00
|
|
|
|
struct _GSocketConnectableIface
|
|
|
|
|
{
|
|
|
|
|
GTypeInterface g_iface;
|
|
|
|
|
|
|
|
|
|
/* Virtual Table */
|
|
|
|
|
|
2010-08-10 22:53:25 +02:00
|
|
|
|
GSocketAddressEnumerator * (* enumerate) (GSocketConnectable *connectable);
|
|
|
|
|
|
|
|
|
|
GSocketAddressEnumerator * (* proxy_enumerate) (GSocketConnectable *connectable);
|
2008-12-29 19:38:28 +01:00
|
|
|
|
|
2015-10-04 16:24:24 +02:00
|
|
|
|
gchar * (* to_string) (GSocketConnectable *connectable);
|
2008-12-29 19:38:28 +01:00
|
|
|
|
};
|
|
|
|
|
|
2012-12-06 20:04:59 +01:00
|
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 19:38:28 +01:00
|
|
|
|
GType g_socket_connectable_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
2012-12-06 20:04:59 +01:00
|
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 19:38:28 +01:00
|
|
|
|
GSocketAddressEnumerator *g_socket_connectable_enumerate (GSocketConnectable *connectable);
|
|
|
|
|
|
2012-12-06 20:04:59 +01:00
|
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2010-08-10 22:53:25 +02:00
|
|
|
|
GSocketAddressEnumerator *g_socket_connectable_proxy_enumerate (GSocketConnectable *connectable);
|
|
|
|
|
|
2015-10-04 16:24:24 +02:00
|
|
|
|
GLIB_AVAILABLE_IN_2_48
|
2015-09-21 19:24:44 +02:00
|
|
|
|
gchar *g_socket_connectable_to_string (GSocketConnectable *connectable);
|
2015-10-04 16:24:24 +02:00
|
|
|
|
|
2008-12-29 19:38:28 +01:00
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __G_SOCKET_CONNECTABLE_H__ */
|