* Reads an Ip address * @returns {InetAddress}
()
| 291 | * @returns {InetAddress} |
| 292 | */ |
| 293 | readInetAddress() { |
| 294 | const length = this.readByte(); |
| 295 | return new types.InetAddress(this.read(length)); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * Reads the body bytes corresponding to the flags |