コード例 #1
0
ファイル: NetworkSocket.php プロジェクト: icicleio/socket
 /**
  * @param resource $socket Stream socket resource.
  * @param bool $autoClose True to close the resource on destruct, false to leave it open.
  */
 public function __construct($socket, bool $autoClose = true)
 {
     parent::__construct($socket, $autoClose);
     try {
         list($this->remoteAddress, $this->remotePort) = getName($socket, true);
         list($this->localAddress, $this->localPort) = getName($socket, false);
     } catch (FailureException $exception) {
         $this->close();
     }
 }