gsimpleproxyresolver.h 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright 2010, 2013 Red Hat, Inc.
  4. *
  5. * SPDX-License-Identifier: LGPL-2.1-or-later
  6. *
  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.
  11. *
  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.
  16. *
  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/>.
  19. */
  20. #ifndef __G_SIMPLE_PROXY_RESOLVER_H__
  21. #define __G_SIMPLE_PROXY_RESOLVER_H__
  22. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  23. #error "Only <gio/gio.h> can be included directly."
  24. #endif
  25. #include <gio/gproxyresolver.h>
  26. G_BEGIN_DECLS
  27. #define G_TYPE_SIMPLE_PROXY_RESOLVER (g_simple_proxy_resolver_get_type ())
  28. #define G_SIMPLE_PROXY_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_SIMPLE_PROXY_RESOLVER, GSimpleProxyResolver))
  29. #define G_SIMPLE_PROXY_RESOLVER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_SIMPLE_PROXY_RESOLVER, GSimpleProxyResolverClass))
  30. #define G_IS_SIMPLE_PROXY_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_SIMPLE_PROXY_RESOLVER))
  31. #define G_IS_SIMPLE_PROXY_RESOLVER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_SIMPLE_PROXY_RESOLVER))
  32. #define G_SIMPLE_PROXY_RESOLVER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_SIMPLE_PROXY_RESOLVER, GSimpleProxyResolverClass))
  33. typedef struct _GSimpleProxyResolver GSimpleProxyResolver;
  34. typedef struct _GSimpleProxyResolverPrivate GSimpleProxyResolverPrivate;
  35. typedef struct _GSimpleProxyResolverClass GSimpleProxyResolverClass;
  36. struct _GSimpleProxyResolver
  37. {
  38. GObject parent_instance;
  39. /*< private >*/
  40. GSimpleProxyResolverPrivate *priv;
  41. };
  42. struct _GSimpleProxyResolverClass
  43. {
  44. GObjectClass parent_class;
  45. /*< private >*/
  46. /* Padding for future expansion */
  47. void (*_g_reserved1) (void);
  48. void (*_g_reserved2) (void);
  49. void (*_g_reserved3) (void);
  50. void (*_g_reserved4) (void);
  51. void (*_g_reserved5) (void);
  52. };
  53. GIO_AVAILABLE_IN_2_36
  54. GType g_simple_proxy_resolver_get_type (void) G_GNUC_CONST;
  55. GIO_AVAILABLE_IN_2_36
  56. GProxyResolver *g_simple_proxy_resolver_new (const gchar *default_proxy,
  57. gchar **ignore_hosts);
  58. GIO_AVAILABLE_IN_2_36
  59. void g_simple_proxy_resolver_set_default_proxy (GSimpleProxyResolver *resolver,
  60. const gchar *default_proxy);
  61. GIO_AVAILABLE_IN_2_36
  62. void g_simple_proxy_resolver_set_ignore_hosts (GSimpleProxyResolver *resolver,
  63. gchar **ignore_hosts);
  64. GIO_AVAILABLE_IN_2_36
  65. void g_simple_proxy_resolver_set_uri_proxy (GSimpleProxyResolver *resolver,
  66. const gchar *uri_scheme,
  67. const gchar *proxy);
  68. G_END_DECLS
  69. #endif /* __G_SIMPLE_PROXY_RESOLVER_H__ */