[Spice-devel] [spice-gtk 07/13] Fill g_proxy_address_new() with protocol, user and password
Marc-André Lureau
marcandre.lureau at gmail.com
Mon Feb 3 10:02:38 PST 2014
From: Marc-André Lureau <marcandre.lureau at redhat.com>
This way, the call might eventually support more proxy and
authentication.
---
gtk/spice-session.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gtk/spice-session.c b/gtk/spice-session.c
index 6ac397c..29c84e8 100644
--- a/gtk/spice-session.c
+++ b/gtk/spice-session.c
@@ -1723,8 +1723,11 @@ static void proxy_lookup_ready(GObject *source_object, GAsyncResult *result,
for (it = addresses; it != NULL; it = it->next) {
address = g_proxy_address_new(G_INET_ADDRESS(it->data),
- spice_proxy_get_port(open_host->proxy), "http",
- s->host, open_host->port, NULL, NULL);
+ spice_proxy_get_port(open_host->proxy),
+ spice_proxy_get_protocol(open_host->proxy),
+ s->host, open_host->port,
+ spice_proxy_get_user(open_host->proxy),
+ spice_proxy_get_password(open_host->proxy));
if (address != NULL)
break;
}
--
1.8.4.2
More information about the Spice-devel
mailing list