(DNSInput in)
| 78 | } |
| 79 | |
| 80 | void |
| 81 | rrFromWire(DNSInput in) throws IOException { |
| 82 | longitude = in.readCountedString(); |
| 83 | latitude = in.readCountedString(); |
| 84 | altitude = in.readCountedString(); |
| 85 | try { |
| 86 | validate(getLongitude(), getLatitude()); |
| 87 | } |
| 88 | catch(IllegalArgumentException e) { |
| 89 | throw new WireParseException(e.getMessage()); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | void |
| 94 | rdataFromString(Tokenizer st, Name origin) throws IOException { |
nothing calls this directly
no test coverage detected