mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
Added DS for cloudflare provider with tests
This commit is contained in:
committed by
Tom Limoncelli
parent
c0354a585d
commit
2e8589e4ce
@ -373,11 +373,11 @@ func naptr(name string, order uint16, preference uint16, flags string, service s
|
||||
return r
|
||||
}
|
||||
|
||||
func ds(name string, keytag uint16, algorithm, digesttype uint8, digest string) *rec {
|
||||
func ds(name string, keyTag uint16, algorithm, digestType uint8, digest string) *rec {
|
||||
r := makeRec(name, "", "DS")
|
||||
r.DsKeyTag = keytag
|
||||
r.DsKeyTag = keyTag
|
||||
r.DsAlgorithm = algorithm
|
||||
r.DsDigestType = digesttype
|
||||
r.DsDigestType = digestType
|
||||
r.DsDigest = digest
|
||||
return r
|
||||
}
|
||||
|
Reference in New Issue
Block a user