1 | /* GIO - GLib Input, Output and Streaming Library |
2 | * |
3 | * Copyright 2010, 2013 Red Hat, Inc. |
4 | * |
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. |
9 | * |
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. |
14 | * |
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/>. |
17 | */ |
18 | |
19 | #ifndef __G_SIMPLE_PROXY_RESOLVER_H__ |
20 | #define __G_SIMPLE_PROXY_RESOLVER_H__ |
21 | |
22 | #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) |
23 | #error "Only <gio/gio.h> can be included directly." |
24 | #endif |
25 | |
26 | #include <gio/gproxyresolver.h> |
27 | |
28 | G_BEGIN_DECLS |
29 | |
30 | #define G_TYPE_SIMPLE_PROXY_RESOLVER (g_simple_proxy_resolver_get_type ()) |
31 | #define G_SIMPLE_PROXY_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_SIMPLE_PROXY_RESOLVER, GSimpleProxyResolver)) |
32 | #define G_SIMPLE_PROXY_RESOLVER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_SIMPLE_PROXY_RESOLVER, GSimpleProxyResolverClass)) |
33 | #define G_IS_SIMPLE_PROXY_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_SIMPLE_PROXY_RESOLVER)) |
34 | #define G_IS_SIMPLE_PROXY_RESOLVER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_SIMPLE_PROXY_RESOLVER)) |
35 | #define G_SIMPLE_PROXY_RESOLVER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_SIMPLE_PROXY_RESOLVER, GSimpleProxyResolverClass)) |
36 | |
37 | /** |
38 | * GSimpleProxyResolver: |
39 | * |
40 | * A #GProxyResolver implementation for using a fixed set of proxies. |
41 | **/ |
42 | typedef struct _GSimpleProxyResolver GSimpleProxyResolver; |
43 | typedef struct _GSimpleProxyResolverPrivate GSimpleProxyResolverPrivate; |
44 | typedef struct _GSimpleProxyResolverClass GSimpleProxyResolverClass; |
45 | |
46 | struct _GSimpleProxyResolver |
47 | { |
48 | GObject parent_instance; |
49 | |
50 | /*< private >*/ |
51 | GSimpleProxyResolverPrivate *priv; |
52 | }; |
53 | |
54 | struct _GSimpleProxyResolverClass |
55 | { |
56 | GObjectClass parent_class; |
57 | |
58 | /*< private >*/ |
59 | /* Padding for future expansion */ |
60 | void (*_g_reserved1) (void); |
61 | void (*_g_reserved2) (void); |
62 | void (*_g_reserved3) (void); |
63 | void (*_g_reserved4) (void); |
64 | void (*_g_reserved5) (void); |
65 | }; |
66 | |
67 | GLIB_AVAILABLE_IN_2_36 |
68 | GType g_simple_proxy_resolver_get_type (void) G_GNUC_CONST; |
69 | |
70 | GLIB_AVAILABLE_IN_2_36 |
71 | GProxyResolver *g_simple_proxy_resolver_new (const gchar *default_proxy, |
72 | gchar **ignore_hosts); |
73 | |
74 | GLIB_AVAILABLE_IN_2_36 |
75 | void g_simple_proxy_resolver_set_default_proxy (GSimpleProxyResolver *resolver, |
76 | const gchar *default_proxy); |
77 | |
78 | GLIB_AVAILABLE_IN_2_36 |
79 | void g_simple_proxy_resolver_set_ignore_hosts (GSimpleProxyResolver *resolver, |
80 | gchar **ignore_hosts); |
81 | |
82 | GLIB_AVAILABLE_IN_2_36 |
83 | void g_simple_proxy_resolver_set_uri_proxy (GSimpleProxyResolver *resolver, |
84 | const gchar *uri_scheme, |
85 | const gchar *proxy); |
86 | |
87 | G_END_DECLS |
88 | |
89 | #endif /* __G_SIMPLE_PROXY_RESOLVER_H__ */ |
90 | |