aboutsummaryrefslogtreecommitdiff
path: root/plugin/pkg/dnsutil/join.go
blob: b3a40db425e2b301b1488858ca7f28b2dac4306f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.
func Join(labels ...string) string {
	ll := len(labels)
	if labels[ll-1] == "." {
		return strings.Join(labels[:ll-1], ".") + "."
	}
	return dns.Fqdn(strings.Join(labels, "."))
}