[glib] Add support for g_socket_client_add_application_proxy()
- From: Nicolas Dufresne <nicolasd src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] Add support for g_socket_client_add_application_proxy()
- Date: Thu, 19 Aug 2010 21:06:00 +0000 (UTC)
commit 0958e663175fe51361aa1e6a87a3f3c5de08bebf
Author: Nicolas Dufresne <nicolas dufresne collabora co uk>
Date: Thu Aug 19 16:23:50 2010 -0400
Add support for g_socket_client_add_application_proxy()
This allow application to take control over certain proxy protocol
handling. When a proxy protocol must be used and is found in the
application proxies, GSocketClient will simply TCP connect to the proxy
server and return the connection.
Reviewed-by: Dan Winship <danw gnome org>
docs/reference/gio/gio-sections.txt | 1 +
gio/gio.symbols | 1 +
gio/gsocketclient.c | 41 +++++++++++++++++++++++++++++++++-
gio/gsocketclient.h | 2 +
4 files changed, 43 insertions(+), 2 deletions(-)
---
diff --git a/docs/reference/gio/gio-sections.txt b/docs/reference/gio/gio-sections.txt
index 62a4ac4..a4cb185 100644
--- a/docs/reference/gio/gio-sections.txt
+++ b/docs/reference/gio/gio-sections.txt
@@ -1778,6 +1778,7 @@ GSocketPrivate
<FILE>gsocketclient</FILE>
<TITLE>GSocketClient</TITLE>
GSocketClient
+g_socket_client_add_application_proxy
g_socket_client_new
g_socket_client_connect
g_socket_client_connect_async
diff --git a/gio/gio.symbols b/gio/gio.symbols
index 9b1a687..a21bab6 100644
--- a/gio/gio.symbols
+++ b/gio/gio.symbols
@@ -1370,6 +1370,7 @@ g_socket_client_set_protocol
g_socket_client_set_socket_type
g_socket_client_set_timeout
g_socket_client_set_enable_proxy
+g_socket_client_add_application_proxy
#endif
#endif
diff --git a/gio/gsocketclient.c b/gio/gsocketclient.c
index aa4ff38..604522b 100644
--- a/gio/gsocketclient.c
+++ b/gio/gsocketclient.c
@@ -89,6 +89,7 @@ struct _GSocketClientPrivate
GSocketAddress *local_address;
guint timeout;
gboolean enable_proxy;
+ GHashTable *app_proxies;
};
static GSocket *
@@ -147,6 +148,10 @@ g_socket_client_init (GSocketClient *client)
G_TYPE_SOCKET_CLIENT,
GSocketClientPrivate);
client->priv->type = G_SOCKET_TYPE_STREAM;
+ client->priv->app_proxies = g_hash_table_new_full (g_str_hash,
+ g_str_equal,
+ g_free,
+ NULL);
}
/**
@@ -175,6 +180,8 @@ g_socket_client_finalize (GObject *object)
if (G_OBJECT_CLASS (g_socket_client_parent_class)->finalize)
(*G_OBJECT_CLASS (g_socket_client_parent_class)->finalize) (object);
+
+ g_hash_table_unref (client->priv->app_proxies);
}
static void
@@ -735,7 +742,8 @@ g_socket_client_connect (GSocketClient *client,
g_object_unref (old_connection);
g_object_unref (proxy);
}
- else
+ else if (!g_hash_table_lookup_extended (client->priv->app_proxies,
+ protocol, NULL, NULL))
{
g_set_error (&last_error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
_("Proxy protocol '%s' is not supported."),
@@ -1044,7 +1052,8 @@ g_socket_client_proxy_connect (GSocketClientAsyncConnectData *data)
data);
g_object_unref (proxy);
}
- else
+ else if (!g_hash_table_lookup_extended (data->client->priv->app_proxies,
+ protocol, NULL, NULL))
{
g_clear_error (&data->last_error);
@@ -1441,3 +1450,31 @@ g_socket_client_connect_to_uri_finish (GSocketClient *client,
{
return g_socket_client_connect_finish (client, result, error);
}
+
+/**
+ * g_socket_client_add_application_proxy:
+ * @client: a #GSocketClient
+ * @protocol: The proxy protocol
+ *
+ * Enable proxy protocols to be handled by the application. When the
+ * indicated proxy protocol is returned by the #GProxyResolver,
+ * #GSocketClient will consider this protocol as supported but will
+ * not try find a #GProxy instance to handle handshaking. The
+ * application must check for this case by calling
+ * g_socket_connection_get_remote_address() on the returned
+ * #GSocketConnection, and seeing if it's a #GProxyAddress of the
+ * appropriate type, to determine whether or not it needs to handle
+ * the proxy handshaking itself.
+ *
+ * This should be used for proxy protocols that are dialects of
+ * another protocol such as HTTP proxy. It also allows cohabitation of
+ * proxy protocols that are reused between protocols. A good example
+ * is HTTP. It can be used to proxy HTTP, FTP and Gopher and can also
+ * be use as generic socket proxy through the HTTP CONNECT method.
+ */
+void
+g_socket_client_add_application_proxy (GSocketClient *client,
+ const gchar *protocol)
+{
+ g_hash_table_insert (client->priv->app_proxies, g_strdup (protocol), NULL);
+}
diff --git a/gio/gsocketclient.h b/gio/gsocketclient.h
index 0fa7970..2586f70 100644
--- a/gio/gsocketclient.h
+++ b/gio/gsocketclient.h
@@ -144,6 +144,8 @@ void g_socket_client_connect_to_uri_async (GSocket
GSocketConnection * g_socket_client_connect_to_uri_finish (GSocketClient *client,
GAsyncResult *result,
GError **error);
+void g_socket_client_add_application_proxy (GSocketClient *client,
+ const gchar *protocol);
G_END_DECLS
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]