X-Git-Url: https://git.distorted.org.uk/~mdw/zone/blobdiff_plain/32ebbe9b0fcc1a698c6ffec760259c5f7e953a9d..HEAD:/addr-family-ipv4.lisp diff --git a/addr-family-ipv4.lisp b/addr-family-ipv4.lisp index f1846c8..d6a084e 100644 --- a/addr-family-ipv4.lisp +++ b/addr-family-ipv4.lisp @@ -80,6 +80,7 @@ (defmethod reverse-domain-component-width ((ipaddr ip4addr)) 8) (defmethod reverse-domain-radix ((ipaddr ip4addr)) 10) -(defmethod reverse-domain-suffix ((ipaddr ip4addr)) "in-addr.arpa") +(defmethod reverse-domain-suffix ((ipaddr ip4addr)) + (make-domain-name :labels (list "arpa" "in-addr") :absolutep t)) ;;;----- That's all, folks --------------------------------------------------