For Dynamic DNS Updates (RFC 2136), the Server must perform the following test:
3.2.1. For RRs in this section whose CLASS is ANY, test to see that
TTL and RDLENGTH are both zero (0), else signal FORMERR to the
requestor.
This version of the DNS library does not expose the RDLENGTH value. It would be useful to expose a helper function that can be used to test if any arbitrary RDATA is empty. Right now I could only figure out how to test individual RDATAs. If there is already a generic method for this, let me know!
For Dynamic DNS Updates ([RFC 2136](https://datatracker.ietf.org/doc/html/rfc2136)), the Server must perform the following test:
> 3.2.1. For RRs in this section whose CLASS is ANY, test to see that
TTL and RDLENGTH are both zero (0), else signal FORMERR to the
requestor.
This version of the DNS library does not expose the `RDLENGTH` value. It would be useful to expose a helper function that can be used to test if any arbitrary `RDATA` is empty. Right now I could only figure out how to test individual `RDATA`s. If there is already a generic method for this, let me know!