1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2010 Collabora, Ltd.
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.1 of the License, or (at your option) any later version.
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.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
21 #ifndef __G_PROXY_RESOLVER_H__
22 #define __G_PROXY_RESOLVER_H__
24 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
25 #error "Only <gio/gio.h> can be included directly."
28 #include <gio/giotypes.h>
32 #define G_TYPE_PROXY_RESOLVER (g_proxy_resolver_get_type ())
33 #define G_PROXY_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_PROXY_RESOLVER, GProxyResolver))
34 #define G_IS_PROXY_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_PROXY_RESOLVER))
35 #define G_PROXY_RESOLVER_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), G_TYPE_PROXY_RESOLVER, GProxyResolverInterface))
38 * G_PROXY_RESOLVER_EXTENSION_POINT_NAME:
40 * Extension point for proxy resolving functionality.
41 * See [Extending GIO][extending-gio].
43 #define G_PROXY_RESOLVER_EXTENSION_POINT_NAME "gio-proxy-resolver"
45 typedef struct _GProxyResolverInterface GProxyResolverInterface
;
47 struct _GProxyResolverInterface
{
48 GTypeInterface g_iface
;
51 gboolean (* is_supported
) (GProxyResolver
*resolver
);
53 gchar
** (* lookup
) (GProxyResolver
*resolver
,
55 GCancellable
*cancellable
,
58 void (* lookup_async
) (GProxyResolver
*resolver
,
60 GCancellable
*cancellable
,
61 GAsyncReadyCallback callback
,
64 gchar
** (* lookup_finish
) (GProxyResolver
*resolver
,
70 GType
g_proxy_resolver_get_type (void) G_GNUC_CONST
;
72 GProxyResolver
*g_proxy_resolver_get_default (void);
75 gboolean
g_proxy_resolver_is_supported (GProxyResolver
*resolver
);
77 gchar
**g_proxy_resolver_lookup (GProxyResolver
*resolver
,
79 GCancellable
*cancellable
,
82 void g_proxy_resolver_lookup_async (GProxyResolver
*resolver
,
84 GCancellable
*cancellable
,
85 GAsyncReadyCallback callback
,
88 gchar
**g_proxy_resolver_lookup_finish (GProxyResolver
*resolver
,
95 #endif /* __G_PROXY_RESOLVER_H__ */