From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 775914FDD3 for ; Wed, 2 Jul 2025 17:00:16 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 1BD7C68D493; Wed, 2 Jul 2025 19:57:34 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id 7BE0268D2DC for ; Wed, 2 Jul 2025 19:57:10 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 77F5627FFCCA7; Wed, 02 Jul 2025 18:57:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1751475426; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=r8HfB26WLVOxlEeFUoAGEoGKJVJ3DTkQXlIZg6CJNos=; b=UFjagD83XJUXDZDML07Ycr/E2c6qEekii3UVP6ApdXqf4gB1bKxAnA1W1lLrtDkrjOWvsR ESyFQedfeKDL1Ww24gwV5kwxm0xCg9eS7Wh3QuQ5u8okIexfuIeoo+KItq3m29DqSSWxgd SmpHHjdCgEhqHrKB8DpiO/MLXfh37/UONSNa1g0CmVBZo/ncftyMEOSY2741bAYOOVgGYn uY4qQKQvMO2rnLMZqzpo9ZcSY/LsKTlLHLz8b45NUCXOHZoacdiN/5nTzfhSEerNaP27vK /Xwp1QagQglIee+z7CRepp6H7ssXFEE+ovHH8+ffjm70XEekdelr5eSrQjkAOQ== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Wed, 2 Jul 2025 18:56:35 +0200 Message-ID: <20250702165655.1325-8-timo@rothenpieler.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250702165655.1325-1-timo@rothenpieler.org> References: <20250702165655.1325-1-timo@rothenpieler.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 07/18] avformat/tls: don't use http_proxy for udp sockets X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Timo Rothenpieler Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- libavformat/tls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/tls.c b/libavformat/tls.c index 018b24cd48..5ec4cca58a 100644 --- a/libavformat/tls.c +++ b/libavformat/tls.c @@ -114,7 +114,7 @@ int ff_tls_open_underlying(TLSShared *c, URLContext *parent, const char *uri, AV proxy_path && av_strstart(proxy_path, "http://", NULL); freeenv_utf8(env_no_proxy); - if (use_proxy) { + if (!c->is_dtls && use_proxy) { char proxy_host[200], proxy_auth[200], dest[200]; int proxy_port; av_url_split(NULL, 0, proxy_auth, sizeof(proxy_auth), -- 2.49.0 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".