Respect proxy.mainProto in forward plugin (#1259)

* Respect proxy.mainProto in forward plugin

* Make the serverProtocol part of pluginsState instead
This commit is contained in:
Kiril Angov 2020-04-05 14:49:30 -04:00 committed by GitHub
parent f4631b9121
commit d2602fd142
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 5 deletions

View file

@ -86,6 +86,7 @@ type PluginsState struct {
cacheHit bool
returnCode PluginsReturnCode
serverName string
serverProto string
}
func (proxy *Proxy) InitPluginsGlobals() error {
@ -222,7 +223,7 @@ type Plugin interface {
Eval(pluginsState *PluginsState, msg *dns.Msg) error
}
func NewPluginsState(proxy *Proxy, clientProto string, clientAddr *net.Addr, start time.Time) PluginsState {
func NewPluginsState(proxy *Proxy, clientProto string, clientAddr *net.Addr, serverProto string, start time.Time) PluginsState {
return PluginsState{
action: PluginsActionContinue,
returnCode: PluginsReturnCodePass,
@ -238,6 +239,7 @@ func NewPluginsState(proxy *Proxy, clientProto string, clientAddr *net.Addr, sta
questionMsg: nil,
qName: "",
serverName: "-",
serverProto: serverProto,
requestStart: start,
maxUnencryptedUDPSafePayloadSize: MaxDNSUDPSafePacketSize,
sessionData: make(map[string]interface{}),