/**
  * @param int $time
  * @param Buffer $services
  * @param string ip
  * @param int|string $port
  */
 public function __construct($time, Buffer $services, $ip, $port)
 {
     $this->time = $time;
     parent::__construct($services, $ip, $port);
 }
 /**
  * @param int $time
  * @param int $services
  * @param IpInterface $ip
  * @param int|string $port
  */
 public function __construct($time, $services, IpInterface $ip, $port)
 {
     $this->time = $time;
     parent::__construct($services, $ip, $port);
 }