(DNSInput in)
| 44 | } |
| 45 | |
| 46 | void |
| 47 | rrFromWire(DNSInput in) throws IOException { |
| 48 | address = in.readCountedString(); |
| 49 | if (in.remaining() > 0) |
| 50 | subAddress = in.readCountedString(); |
| 51 | } |
| 52 | |
| 53 | void |
| 54 | rdataFromString(Tokenizer st, Name origin) throws IOException { |
nothing calls this directly
no test coverage detected