coredns/middleware/rewrite/name.go
Thong Huynh 3f05f7e6c0 Add set EDNS0 with variable substitution (#937)
* Add set EDNS0 with variable substitution

* Change variable from $ to {}. Un-export constants

* Update README

* Change getRuleData() to ruleData(); Change to use string match from regexp
2017-08-24 17:34:07 +01:00

24 lines
518 B
Go

package rewrite
import (
"github.com/coredns/coredns/middleware"
"github.com/miekg/dns"
)
type nameRule struct {
From, To string
}
func newNameRule(from, to string) (Rule, error) {
return &nameRule{middleware.Name(from).Normalize(), middleware.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
}