(DNSOutput out, Compression c, boolean canonical)
| 178 | } |
| 179 | |
| 180 | void |
| 181 | rrToWire(DNSOutput out, Compression c, boolean canonical) { |
| 182 | out.writeU16(covered); |
| 183 | out.writeU8(alg); |
| 184 | out.writeU8(labels); |
| 185 | out.writeU32(origttl); |
| 186 | out.writeU32(expire.getTime() / 1000); |
| 187 | out.writeU32(timeSigned.getTime() / 1000); |
| 188 | out.writeU16(footprint); |
| 189 | signer.toWire(out, null, canonical); |
| 190 | out.writeByteArray(signature); |
| 191 | } |
| 192 | |
| 193 | } |
nothing calls this directly
no test coverage detected