History log of /PHP-8.2/ext/openssl/tests/gh10495.phpt (Results 1 – 2 of 2)
Revision Date Author Comments
# 100258ff 21-Dec-2023 Jakub Zelenka

Fix test for GH-10495: feof on OpenSSL stream hangs


# c1bd9a93 21-Dec-2023 Jakub Zelenka

Fix GH-10495: feof on OpenSSL stream hangs indefinitely

This fixes the issue with unbounded waiting on SSL_peek which can happen
when only part of the record is fetched. It makes socket

Fix GH-10495: feof on OpenSSL stream hangs indefinitely

This fixes the issue with unbounded waiting on SSL_peek which can happen
when only part of the record is fetched. It makes socket non blocking so
it is possible to verify if OpenSSL is expecting some more data or if
there is an error.

This also fixes bug #79501

Closes GH-13487

show more ...