(DNSInput in)
| 50 | } |
| 51 | |
| 52 | void |
| 53 | rrFromWire(DNSInput in) throws IOException { |
| 54 | strings = new ArrayList(2); |
| 55 | while (in.remaining() > 0) { |
| 56 | byte [] b = in.readCountedString(); |
| 57 | strings.add(b); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | void |
| 62 | rdataFromString(Tokenizer st, Name origin) throws IOException { |
nothing calls this directly
no test coverage detected