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 3F088500C8 for ; Mon, 7 Jul 2025 21:43:24 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 835AD69172D; Tue, 8 Jul 2025 00:43:21 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id 8C43F691638 for ; Tue, 8 Jul 2025 00:43:14 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 0288E27FFCCB0 for ; Mon, 07 Jul 2025 23:43:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1751924594; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ri96Czpycum96dpqT3M6+zXlxc4X7HptttWAoNh7Iqg=; b=kU1yiTsdBm/dZZNSCF0xaSPL8rAisOamm5N+gq5geQyegFolJ5UCauYoXCF6Gyf9bMk0Bs Aq4NfTw6RfAs2yUlxzuii1By1wPZCguwA4bHnn2ckpWeD/RVIlsUa/s1c+9adQLm6Yjhaq N82eVXluo8afnVfP6Ei6zNG4okvnq7ajQ8va2skPfTrO4cL3IohEBDukFC6NeoduukeftO mCUDq0LK0deIELTzDvZBeDWJdjVjIjyExHgoq0Br+Mkya/T2ZYRsi4C56MSpyQ/cgUw1ZX Ddf5e/ry2pf1EGHfscdBhTjMyg5ir47sJ+FE+ynjaDYx+D0Jr1YR44eoDqm/TQ== Message-ID: <86ddccad-2804-4eb0-a046-2209071f3c05@rothenpieler.org> Date: Mon, 7 Jul 2025 23:43:13 +0200 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird To: ffmpeg-devel@ffmpeg.org References: <20250707214110.8205-1-epirat07@gmail.com> Content-Language: en-US From: Timo Rothenpieler In-Reply-To: <20250707214110.8205-1-epirat07@gmail.com> Subject: Re: [FFmpeg-devel] [PATCH] avformat/tls: rename accidentally change options 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 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On 07.07.2025 23:41, Marvin Scholz wrote: > This was accidentally renamed back to the old names in > ba9817df9df5911ceb2edff37d9ec970c29329e2 > --- > libavformat/tls.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavformat/tls.h b/libavformat/tls.h > index 3644b64fe2..6b6d06ab2d 100644 > --- a/libavformat/tls.h > +++ b/libavformat/tls.h > @@ -92,8 +92,8 @@ typedef struct TLSShared { > {"http_proxy", "Set proxy to tunnel through", offsetof(pstruct, options_field . http_proxy), AV_OPT_TYPE_STRING, .flags = TLS_OPTFL }, \ > {"use_external_udp", "Use external UDP from muxer or demuxer", offsetof(pstruct, options_field . use_external_udp), AV_OPT_TYPE_INT, { .i64 = 0}, 0, 1, .flags = TLS_OPTFL }, \ > {"mtu", "Maximum Transmission Unit", offsetof(pstruct, options_field . mtu), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, .flags = TLS_OPTFL}, \ > - {"cert_buf", "The optional certificate buffer for DTLS", offsetof(pstruct, options_field . cert_buf), AV_OPT_TYPE_STRING, .flags = TLS_OPTFL}, \ > - {"key_buf", "The optional private key buffer for DTLS", offsetof(pstruct, options_field . key_buf), AV_OPT_TYPE_STRING, .flags = TLS_OPTFL}, \ > + {"cert_pem", "Certificate PEM string", offsetof(pstruct, options_field . cert_buf), AV_OPT_TYPE_STRING, .flags = TLS_OPTFL }, \ > + {"key_pem", "Private key PEM string", offsetof(pstruct, options_field . key_buf), AV_OPT_TYPE_STRING, .flags = TLS_OPTFL }, \ > FF_TLS_CLIENT_OPTIONS(pstruct, options_field) > > int ff_tls_open_underlying(TLSShared *c, URLContext *parent, const char *uri, AVDictionary **options); LGTM _______________________________________________ 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".