コード例 #1
0
ファイル: Client.php プロジェクト: mszula/php-newcamd
 public function connect()
 {
     $this->socket->connect($this->config->getHost(), $this->config->getPort());
     $initial = $this->receive(14);
     $this->setLoginKey($initial);
     return $this;
 }