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 E856B4112B for ; Sun, 13 Jul 2025 19:27:37 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 43AE168E368; Sun, 13 Jul 2025 22:25:49 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id E6D0368E311 for ; Sun, 13 Jul 2025 22:25:27 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 1434127FD3772; Sun, 13 Jul 2025 21:25:24 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1752434724; 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=DybIO+e0gc0Uyx8GJJFt/4T4bx5v9Vt1PqeHEdEGztQ=; b=CQ5R3xeJX5r7S54JyQswUmZfsw8Mc0Dw0KhOGeg45O06i+51i0LZS/SSUK2zZ/1b0mH9ur wQcMG2e5Gy+Bv3EOZmJiZdgdIzWhvsPL6THviMv3VtkVVi5OoVUDG5BgsrPvMucqndeBqW 062xBOini5EO1QLFTA5Vg/fv2rJFz/pkRQj/UbdtiIXc80ayjtD4uFkm55yf8Y82tyM9EL /dUtvTq6vS2bVIbDiSZoGlH6pSiaf4qZC/m+7Q3rAROW6snQHvLGfzfqFwz5nKNDi73Gxf LmYcRRJwYDZjbWX155jlMEnpSzldf1wCFayvPt8OkVH14l4OjBJqVpEcopeWHg== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Sun, 13 Jul 2025 21:24:43 +0200 Message-ID: <20250713192512.928390-9-timo@rothenpieler.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250713192512.928390-1-timo@rothenpieler.org> References: <20250713192512.928390-1-timo@rothenpieler.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 09/14] avformar/tls_openssl: use correct info callback in DTLS mode 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_openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/tls_openssl.c b/libavformat/tls_openssl.c index a497d4dfd8..63fc085e28 100644 --- a/libavformat/tls_openssl.c +++ b/libavformat/tls_openssl.c @@ -810,7 +810,7 @@ static int dtls_start(URLContext *h, const char *url, int flags, AVDictionary ** /* Setup the callback for logging. */ SSL_set_ex_data(p->ssl, 0, p); - SSL_set_info_callback(p->ssl, openssl_info_callback); + SSL_CTX_set_info_callback(p->ctx, openssl_info_callback); /** * We have set the MTU to fragment the DTLS packet. It is important to note that the -- 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".