/** * Connects the TeamSpeak3_Transport_Abstract object and performs initial actions on the remote * server. * * @return void */ public function syn() { $this->initTransport($this->options); $this->transport->setAdapter($this); Profiler::init(spl_object_hash($this)); Signal::getInstance()->emit("filetransferConnected", $this); }
/** * Connects the TeamSpeak3_Transport_Abstract object and performs initial actions on the remote * server. * * @return void */ public function syn() { if (!isset($this->options["port"]) || empty($this->options["port"])) { $this->options["port"] = $this->default_port; } $this->initTransport($this->options); $this->transport->setAdapter($this); Profiler::init(spl_object_hash($this)); Signal::getInstance()->emit("tsdnsConnected", $this); }
/** * Connects the TeamSpeak3_Transport_Abstract object and performs initial actions on the remote * server. * * @throws UpdateException * @return void */ public function syn() { if (!isset($this->options["host"]) || empty($this->options["host"])) { $this->options["host"] = $this->default_host; } if (!isset($this->options["port"]) || empty($this->options["port"])) { $this->options["port"] = $this->default_port; } $this->initTransport($this->options, "TeamSpeak3_Transport_UDP"); $this->transport->setAdapter($this); Profiler::init(spl_object_hash($this)); $this->getTransport()->send(String::fromHex(33)); if (!preg_match_all("/,?(\\d+)#([0-9a-zA-Z\\._-]+),?/", $this->getTransport()->read(96), $matches) || !isset($matches[1]) || !isset($matches[2])) { throw new UpdateException("invalid reply from the server"); } $this->build_datetimes = $matches[1]; $this->version_strings = $matches[2]; Signal::getInstance()->emit("updateConnected", $this); }
/** * Connects the TeamSpeak3_Transport_Abstract object and performs initial actions on the remote * server. * * @throws TeamSpeak3_Adapter_Exception * @return void */ protected function syn() { $this->initTransport($this->options); $this->transport->setAdapter($this); Profiler::init(spl_object_hash($this)); if (!$this->getTransport()->readLine()->startsWith(Constant::READY)) { throw new AdapterException("invalid reply from the server"); } Signal::getInstance()->emit("serverqueryConnected", $this); }