mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 16:24:19 -04:00
@@ -8,15 +8,18 @@ import (
|
||||
"github.com/miekg/dns"
|
||||
)
|
||||
|
||||
// Header modifies dns.MsgHdr in the responses
|
||||
// Header modifies flags of dns.MsgHdr in queries and / or responses
|
||||
type Header struct {
|
||||
Rules []Rule
|
||||
Next plugin.Handler
|
||||
QueryRules []Rule
|
||||
ResponseRules []Rule
|
||||
Next plugin.Handler
|
||||
}
|
||||
|
||||
// ServeDNS implements the plugin.Handler interface.
|
||||
func (h Header) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
|
||||
wr := ResponseHeaderWriter{ResponseWriter: w, Rules: h.Rules}
|
||||
applyRules(r, h.QueryRules)
|
||||
|
||||
wr := ResponseHeaderWriter{ResponseWriter: w, Rules: h.ResponseRules}
|
||||
return plugin.NextOrFailure(h.Name(), h.Next, ctx, &wr, r)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user