mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Speed up TLS wrapper test for min and max versions
This commit is contained in:
parent
ee4fa7d482
commit
f8850ccd85
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ $serverCode = <<<'CODE'
|
||||||
$server = stream_socket_server('tls://127.0.0.1:64321', $errno, $errstr, $flags, $ctx);
|
$server = stream_socket_server('tls://127.0.0.1:64321', $errno, $errstr, $flags, $ctx);
|
||||||
phpt_notify();
|
phpt_notify();
|
||||||
|
|
||||||
for ($i=0; $i < 6; $i++) {
|
for ($i=0; $i < (phpt_has_sslv3() ? 6 : 5); $i++) {
|
||||||
@stream_socket_accept($server, 3);
|
@stream_socket_accept($server, 3);
|
||||||
}
|
}
|
||||||
CODE;
|
CODE;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue