From bc2d4c4c3161abd8e48a5310de853fd1cc2c7cf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 15 Apr 2016 11:36:36 +0300 Subject: [PATCH] souphttpclientsink: If no proxy is set by properties, use the default libsoup proxy resolver That is, use whatever system settings there might exist. This is the same behaviour we use in the HTTP source. --- ext/soup/gstsouphttpclientsink.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/soup/gstsouphttpclientsink.c b/ext/soup/gstsouphttpclientsink.c index 1b4e6004c4..84be5e8c3d 100644 --- a/ext/soup/gstsouphttpclientsink.c +++ b/ext/soup/gstsouphttpclientsink.c @@ -583,6 +583,7 @@ gst_soup_http_client_sink_start (GstBaseSink * sink) soup_session_async_new_with_options (SOUP_SESSION_ASYNC_CONTEXT, souphttpsink->context, SOUP_SESSION_USER_AGENT, souphttpsink->user_agent, SOUP_SESSION_TIMEOUT, souphttpsink->timeout, + SOUP_SESSION_ADD_FEATURE_BY_TYPE, SOUP_TYPE_PROXY_RESOLVER_DEFAULT, NULL); } else { souphttpsink->session =