2017-08-19 15:22:09 +01:00
|
|
|
package dnsutil
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
|
|
"github.com/miekg/dns"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Join joins labels to form a fully qualified domain name. If the last label is
|
|
|
|
|
// the root label it is ignored. Not other syntax checks are performed.
|
2018-09-22 15:12:02 +01:00
|
|
|
func Join(labels ...string) string {
|
2017-08-19 15:22:09 +01:00
|
|
|
ll := len(labels)
|
|
|
|
|
if labels[ll-1] == "." {
|
2018-09-22 15:12:02 +01:00
|
|
|
return strings.Join(labels[:ll-1], ".") + "."
|
2017-08-19 15:22:09 +01:00
|
|
|
}
|
2018-09-22 15:12:02 +01:00
|
|
|
return dns.Fqdn(strings.Join(labels, "."))
|
2017-08-19 15:22:09 +01:00
|
|
|
}
|