(DNSOutput out, Compression c, boolean canonical)
| 150 | } |
| 151 | |
| 152 | void |
| 153 | rrToWire(DNSOutput out, Compression c, boolean canonical) { |
| 154 | out.writeU16(footprint); |
| 155 | out.writeU8(alg); |
| 156 | out.writeU8(digestid); |
| 157 | if (digest != null) |
| 158 | out.writeByteArray(digest); |
| 159 | } |
| 160 | |
| 161 | } |
nothing calls this directly
no test coverage detected