mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-28 18:08:51 +03:00
19 lines
407 B
Go
19 lines
407 B
Go
|
package aghnet
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
// NormalizeDomain returns a lowercased version of host without the final dot,
|
||
|
// unless host is ".", in which case it returns it unchanged. That is a special
|
||
|
// case that to allow matching queries like:
|
||
|
//
|
||
|
// dig IN NS '.'
|
||
|
func NormalizeDomain(host string) (norm string) {
|
||
|
if host == "." {
|
||
|
return host
|
||
|
}
|
||
|
|
||
|
return strings.ToLower(strings.TrimSuffix(host, "."))
|
||
|
}
|