43 $version = $this->getByte();
45 $addr = ((~$this->getByte()) & 0xff) .
"." . ((~$this->getByte()) & 0xff) .
"." . ((~$this->getByte()) & 0xff) .
"." . ((~$this->getByte()) & 0xff);
46 $port = $this->getShort();
48 }elseif($version === 6){
51 $port = $this->getShort();
53 $addr = inet_ntop($this->
get(16));
58 return new InternetAddress($addr, $port, $version);
60 throw new BinaryDataException(
"Unknown IP address version $version");