You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ncdns/ncdomain/convert_notls.go

20 lines
319 B
Go

// +build no_namecoin_tls
package ncdomain
import (
"github.com/miekg/dns"
)
type Value struct {
valueWithoutTLSA
}
func (v *Value) appendTLSA(out []dns.RR, suffix, apexSuffix string) ([]dns.RR, error) {
return out, nil
}
func parseTLSA(rv map[string]interface{}, v *Value, errFunc ErrorFunc) {
v.TLSA = nil
}