use global 'timeout' option for forwarding queries (#1284)

* Update plugins.go

* Update plugin_forward.go
This commit is contained in:
29f 2020-04-18 02:57:23 +08:00 committed by GitHub
parent 4f41fc3fee
commit f71244ed74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -87,6 +87,7 @@ type PluginsState struct {
returnCode PluginsReturnCode
serverName string
serverProto string
timeout time.Duration
}
func (proxy *Proxy) InitPluginsGlobals() error {
@ -240,6 +241,7 @@ func NewPluginsState(proxy *Proxy, clientProto string, clientAddr *net.Addr, ser
qName: "",
serverName: "-",
serverProto: serverProto,
timeout: proxy.timeout,
requestStart: start,
maxUnencryptedUDPSafePayloadSize: MaxDNSUDPSafePacketSize,
sessionData: make(map[string]interface{}),