-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathSecureConnector.php
More file actions
30 lines (25 loc) · 922 Bytes
/
SecureConnector.php
File metadata and controls
30 lines (25 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
namespace React\SocketClient;
use React\EventLoop\LoopInterface;
use React\Stream\Stream;
class SecureConnector implements ConnectorInterface
{
private $connector;
private $streamEncryption;
public function __construct(ConnectorInterface $connector, LoopInterface $loop)
{
$this->connector = $connector;
$this->streamEncryption = new StreamEncryption($loop);
}
public function create($host, $port)
{
return $this->connector->create($host, $port)->then(function (Stream $stream) {
// (unencrypted) connection succeeded => try to enable encryption
return $this->streamEncryption->enable($stream)->then(null, function ($error) use ($stream) {
// establishing encryption failed => close invalid connection and return error
$stream->close();
throw $error;
});
});
}
}