gproxy.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
  2. /* GIO - GLib Input, Output and Streaming Library
  3. *
  4. * Copyright (C) 2010 Collabora Ltd.
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General
  17. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  18. *
  19. * Author: Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
  20. */
  21. #ifndef __G_PROXY_H__
  22. #define __G_PROXY_H__
  23. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  24. #error "Only <gio/gio.h> can be included directly."
  25. #endif
  26. #include <gio/giotypes.h>
  27. G_BEGIN_DECLS
  28. #define G_TYPE_PROXY (g_proxy_get_type ())
  29. #define G_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_PROXY, GProxy))
  30. #define G_IS_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_PROXY))
  31. #define G_PROXY_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_PROXY, GProxyInterface))
  32. /**
  33. * G_PROXY_EXTENSION_POINT_NAME:
  34. *
  35. * Extension point for proxy functionality.
  36. * See [Extending GIO][extending-gio].
  37. *
  38. * Since: 2.26
  39. */
  40. #define G_PROXY_EXTENSION_POINT_NAME "gio-proxy"
  41. /**
  42. * GProxy:
  43. *
  44. * Interface that handles proxy connection and payload.
  45. *
  46. * Since: 2.26
  47. */
  48. typedef struct _GProxyInterface GProxyInterface;
  49. /**
  50. * GProxyInterface:
  51. * @g_iface: The parent interface.
  52. * @connect: Connect to proxy server and wrap (if required) the #connection
  53. * to handle payload.
  54. * @connect_async: Same as connect() but asynchronous.
  55. * @connect_finish: Returns the result of connect_async()
  56. * @supports_hostname: Returns whether the proxy supports hostname lookups.
  57. *
  58. * Provides an interface for handling proxy connection and payload.
  59. *
  60. * Since: 2.26
  61. */
  62. struct _GProxyInterface
  63. {
  64. GTypeInterface g_iface;
  65. /* Virtual Table */
  66. GIOStream * (* connect) (GProxy *proxy,
  67. GIOStream *connection,
  68. GProxyAddress *proxy_address,
  69. GCancellable *cancellable,
  70. GError **error);
  71. void (* connect_async) (GProxy *proxy,
  72. GIOStream *connection,
  73. GProxyAddress *proxy_address,
  74. GCancellable *cancellable,
  75. GAsyncReadyCallback callback,
  76. gpointer user_data);
  77. GIOStream * (* connect_finish) (GProxy *proxy,
  78. GAsyncResult *result,
  79. GError **error);
  80. gboolean (* supports_hostname) (GProxy *proxy);
  81. };
  82. GLIB_AVAILABLE_IN_ALL
  83. GType g_proxy_get_type (void) G_GNUC_CONST;
  84. GLIB_AVAILABLE_IN_ALL
  85. GProxy *g_proxy_get_default_for_protocol (const gchar *protocol);
  86. GLIB_AVAILABLE_IN_ALL
  87. GIOStream *g_proxy_connect (GProxy *proxy,
  88. GIOStream *connection,
  89. GProxyAddress *proxy_address,
  90. GCancellable *cancellable,
  91. GError **error);
  92. GLIB_AVAILABLE_IN_ALL
  93. void g_proxy_connect_async (GProxy *proxy,
  94. GIOStream *connection,
  95. GProxyAddress *proxy_address,
  96. GCancellable *cancellable,
  97. GAsyncReadyCallback callback,
  98. gpointer user_data);
  99. GLIB_AVAILABLE_IN_ALL
  100. GIOStream *g_proxy_connect_finish (GProxy *proxy,
  101. GAsyncResult *result,
  102. GError **error);
  103. GLIB_AVAILABLE_IN_ALL
  104. gboolean g_proxy_supports_hostname (GProxy *proxy);
  105. G_END_DECLS
  106. #endif /* __G_PROXY_H__ */