dns64: check the original question, not the returned one
This commit is contained in:
parent
26505ab560
commit
c74b993cbb
|
@ -65,7 +65,7 @@ func (plugin *PluginDNS64) Reload() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (plugin *PluginDNS64) Eval(pluginsState *PluginsState, msg *dns.Msg) error {
|
func (plugin *PluginDNS64) Eval(pluginsState *PluginsState, msg *dns.Msg) error {
|
||||||
if !hasAAAAQuestion(msg) || hasAAAAAnswer(msg) {
|
if !hasAAAAQuestion(pluginsState.questionMsg) || hasAAAAAnswer(msg) {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue