host; } /** * @return int */ public function getPort() { return $this->port; } /** * @return string */ public function getState() { return $this->state; } /** * @return string */ public function getOrigin() { return $this->origin; } /** * @return mixed */ public function getProtocol() { return $this->protocol; } /** * @return string */ public function getClient() { return $this->client; } /** * @return string */ public function getCountryCode() { return $this->country_code; } /** * @return int */ public function getTx() { return $this->tx; } /** * @return int */ public function getRx() { return $this->rx; } /** * @return int */ public function getTxRate() { return $this->tx_rate; } /** * @return int */ public function getRxRate() { return $this->rx_rate; } /** * @return int */ public function getProgress() { return $this->progress; } /** * @return \int[] (Read-only) */ public function getRequests() { return $this->requests; } }