コード例 #1
0
ファイル: Connection.php プロジェクト: rakesh-mohanta/Sunrise
 /**
  * @throws RuntimeException
  */
 protected function configureClientInformation()
 {
     $this->ip = $this->socket->getIp();
     $this->port = $this->socket->getPort();
     // Use uniqueid() instead of configureClientId()
     $this->id = uniqid('c');
 }
コード例 #2
0
ファイル: Connection.php プロジェクト: luoshulin/falcon
 /**
  * @throws RuntimeException
  */
 protected function configureClientInformation()
 {
     $this->ip = $this->socket->getIp();
     $this->port = $this->socket->getPort();
     $this->configureClientId();
 }