coredns/plugin/rewrite/name.go
Thong Huynh ec21f83425 Modify the rewrite plugin to write multiple EDNS0 options (#936) (#1096)
* Add processing mode

* Add processing mode

* Update UTs

* Update README.md

* Change to use the constant Stop

* Fix README per review comments
2017-09-20 16:06:53 -04:00

29 lines
596 B
Go

package rewrite
import (
"github.com/coredns/coredns/plugin"
"github.com/miekg/dns"
)
type nameRule struct {
From, To string
}
func newNameRule(from, to string) (Rule, error) {
return &nameRule{plugin.Name(from).Normalize(), plugin.Name(to).Normalize()}, nil
}
// Rewrite rewrites the the current request.
func (rule *nameRule) Rewrite(w dns.ResponseWriter, r *dns.Msg) Result {
if rule.From == r.Question[0].Name {
r.Question[0].Name = rule.To
return RewriteDone
}
return RewriteIgnored
}
// Mode returns the processing mode
func (rule *nameRule) Mode() string {
return Stop
}