mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 06:37:36 +03:00
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:
parent
f4631b9121
commit
d2602fd142
3 changed files with 11 additions and 5 deletions
|
@ -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{}),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue