AdGuardHome/internal/aghnet/hostgen.go

33 lines
647 B
Go
Raw Permalink Normal View History

package aghnet
import (
2023-04-12 12:48:42 +01:00
"net/netip"
"strings"
)
// GenerateHostname generates the hostname from ip. In case of using IPv4 the
// result should be like:
//
2022-09-07 16:03:18 +01:00
// 192-168-10-1
//
// In case of using IPv6, the result is like:
//
2022-09-07 16:03:18 +01:00
// ff80-f076-0000-0000-0000-0000-0000-0010
//
// ip must be either an IPv4 or an IPv6.
2023-04-12 12:48:42 +01:00
func GenerateHostname(ip netip.Addr) (hostname string) {
if !ip.IsValid() {
// TODO(s.chzhen): Get rid of it.
panic("aghnet generate hostname: invalid ip")
}
ip = ip.Unmap()
hostname = ip.StringExpanded()
if ip.Is4() {
2023-07-12 13:13:31 +01:00
return strings.ReplaceAll(hostname, ".", "-")
}
2023-07-12 13:13:31 +01:00
return strings.ReplaceAll(hostname, ":", "-")
}