Update deps

This commit is contained in:
Frank Denis 2020-03-19 10:18:43 +01:00
parent 16708a0c20
commit bad3d0accd
33 changed files with 792 additions and 237 deletions

View file

@ -317,6 +317,12 @@ func Fqdn(s string) string {
return s + "."
}
// CanonicalName returns the domain name in canonical form. A name in canonical
// form is lowercase and fully qualified. See Section 6.2 in RFC 4034.
func CanonicalName(s string) string {
return strings.ToLower(Fqdn(s))
}
// Copied from the official Go code.
// ReverseAddr returns the in-addr.arpa. or ip6.arpa. hostname of the IP