summaryrefslogtreecommitdiff
path: root/src/bytestream-factory.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-12-04 12:22:54 +0000
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-12-07 10:43:05 +0000
commitbeefba0328a8d2dbcbf0ccb0f94899616360bd49 (patch)
tree0a30e3dd0b9362e1435dd47443b32ae1d01b6ba3 /src/bytestream-factory.c
parent7372e05b592298e4478d8f0f975dd72fe47e60d5 (diff)
downloadtelepathy-gabble-beefba0328a8d2dbcbf0ccb0f94899616360bd49.tar.gz
gabble_bytestream_factory_get_socks5_proxies: stop randomizing proxies
The newer proxies have to be put first in the SOCKS5 stanza.
Diffstat (limited to 'src/bytestream-factory.c')
-rw-r--r--src/bytestream-factory.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bytestream-factory.c b/src/bytestream-factory.c
index 0008ce4fb..1c38d9774 100644
--- a/src/bytestream-factory.c
+++ b/src/bytestream-factory.c
@@ -2170,10 +2170,6 @@ gabble_bytestream_factory_get_socks5_proxies (GabbleBytestreamFactory *self)
GabbleBytestreamFactoryPrivate *priv = GABBLE_BYTESTREAM_FACTORY_GET_PRIVATE (
self);
- /* randomize fallback proxies to avoid to use always the same one */
- priv->socks5_fallback_proxies = randomize_g_slist (
- priv->socks5_fallback_proxies);
-
return g_slist_concat (g_slist_copy (priv->socks5_proxies),
g_slist_copy (priv->socks5_fallback_proxies));
}