forked from TrueCloudLab/lego
3cd3024561
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
20 lines
320 B
Go
20 lines
320 B
Go
package dns01
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
// Update FQDN with CNAME if any.
|
|
func updateDomainWithCName(r *dns.Msg, fqdn string) string {
|
|
for _, rr := range r.Answer {
|
|
if cn, ok := rr.(*dns.CNAME); ok {
|
|
if strings.EqualFold(cn.Hdr.Name, fqdn) {
|
|
return cn.Target
|
|
}
|
|
}
|
|
}
|
|
|
|
return fqdn
|
|
}
|