(DNSInput in)
| 82 | } |
| 83 | |
| 84 | void |
| 85 | rrFromWire(DNSInput in) throws IOException { |
| 86 | footprint = in.readU16(); |
| 87 | alg = in.readU8(); |
| 88 | digestid = in.readU8(); |
| 89 | digest = in.readByteArray(); |
| 90 | } |
| 91 | |
| 92 | void |
| 93 | rdataFromString(Tokenizer st, Name origin) throws IOException { |
nothing calls this directly
no test coverage detected