]> git.ipfire.org Git - thirdparty/tvheadend.git/commit
httpc.c: Fix HTTPS with OpenSSL 3.5 (#1813)
authorMichael Marley <michael@michaelmarley.com>
Tue, 13 May 2025 05:43:04 +0000 (01:43 -0400)
committerGitHub <noreply@github.com>
Tue, 13 May 2025 05:43:04 +0000 (09:43 +0400)
commit728885fbe3019c6896efc474c8cf336bfadaeea5
treebbeb9986a537eb856c27a24ac3b2d0274dca095b
parentcc07e3471e314469dca3086f134bf3384e06fc83
httpc.c: Fix HTTPS with OpenSSL 3.5 (#1813)

The TLS Client Hello message is larger in OpenSSL 3.5 and will not
fit in the previous hc_io_size of 1024 bytes.  This causes the TLS
Client Hello message to be truncated, resulting in HTTPS requests
stalling and eventually timing out.  To fix this, increase
hc_io_size to 2048 bytes.
src/httpc.c