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 3B7B741000 for ; Sun, 13 Jul 2025 19:27:52 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id E4D3E68E372; Sun, 13 Jul 2025 22:25:50 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id 32DBC68E311 for ; Sun, 13 Jul 2025 22:25:28 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 65C4327FD377D; 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=4EA92XmJalz7nx+fla0z4lXgkiAIn6uKy+Gio7566sE=; b=mN3g0LNhP1koncsFtG4eoJeKHhTgdc2hga5kJotYQ7aGl80M5FpGuox1xKtt+sWqI+s5EY fbwSVYSV+Hh+kPXLD7ZPqtjI1wlLU4nnBWIz6+jpOStw2Phr88tsQD//rQVNIN0+Ek6cq3 /xnC2NfhlxzChIWoD6IkWvIm/V2a2+qDRPRZeulmQDATn57A4PY4Nf0cPmgskpKFVJaDz3 TWXHGbomGaOoaCjf1nYEQoUINpIw26/5YQhzGNdft8X/jw9ITobZB8mlQclUx3yQYV8S13 AXGaRjbYNMjc8+CTaYOFGftaR2m2i18k8dHkHE1x1Kf5Di/GPdg34FHp0hWtVA== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Sun, 13 Jul 2025 21:24:44 +0200 Message-ID: <20250713192512.928390-10-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 10/14] avformat/tls_openssl: don't enable read_ahead 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: OpenSSL docs say: These functions have no impact when used with DTLS. --- libavformat/tls_openssl.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavformat/tls_openssl.c b/libavformat/tls_openssl.c index 63fc085e28..c58044b46b 100644 --- a/libavformat/tls_openssl.c +++ b/libavformat/tls_openssl.c @@ -790,9 +790,6 @@ static int dtls_start(URLContext *h, const char *url, int flags, AVDictionary ** if (!c->listen && !c->numerichost) SSL_set_tlsext_host_name(p->ssl, c->host); - /* Whether we should read as many input bytes as possible (for non-blocking reads) or not. */ - SSL_CTX_set_read_ahead(p->ctx, 1); - /* Setup the SRTP context */ if (SSL_CTX_set_tlsext_use_srtp(p->ctx, profiles)) { av_log(p, AV_LOG_ERROR, "TLS: Init SSL_CTX_set_tlsext_use_srtp failed, profiles=%s, %s\n", -- 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".