mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
28 lines
744 B
Go
28 lines
744 B
Go
//go:build libdns_rfc2136 || libdns_all
|
|
// +build libdns_rfc2136 libdns_all
|
|
|
|
package libdns
|
|
|
|
import (
|
|
"github.com/foxcpp/maddy/framework/config"
|
|
"github.com/foxcpp/maddy/framework/module"
|
|
"github.com/libdns/rfc2136"
|
|
)
|
|
|
|
func init() {
|
|
module.Register("libdns.rfc2136", func(modName, instName string, _, _ []string) (module.Module, error) {
|
|
p := rfc2136.Provider{}
|
|
return &ProviderModule{
|
|
RecordDeleter: &p,
|
|
RecordAppender: &p,
|
|
setConfig: func(c *config.Map) {
|
|
c.String("key_name", false, true, "", &p.KeyName)
|
|
c.String("key", false, true, "", &p.Key)
|
|
c.String("key_alg", false, true, "", &p.KeyAlg)
|
|
c.String("server", false, true, "", &p.Server)
|
|
},
|
|
instName: instName,
|
|
modName: modName,
|
|
}, nil
|
|
})
|
|
}
|