We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b84e6a commit 5de4837Copy full SHA for 5de4837
tests/FunctionalTest.php
@@ -39,6 +39,10 @@ public function testPlainGoogleDoesNotAcceptConnectMethod()
39
40
public function testSecureGoogleDoesNotAcceptConnectMethod()
41
{
42
+ if (!function_exists('stream_socket_enable_crypto')) {
43
+ $this->markTestSkipped('TLS not supported on really old platforms (HHVM < 3.8)');
44
+ }
45
+
46
$secure = new SecureConnector($this->dnsConnector, $this->loop);
47
$proxy = new ProxyConnector('google.com:443', $secure);
48
0 commit comments