diff options
Diffstat (limited to 'plugin/forward/forward.go')
-rw-r--r-- | plugin/forward/forward.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/forward/forward.go b/plugin/forward/forward.go index 19a469c72..e7fcaaad6 100644 --- a/plugin/forward/forward.go +++ b/plugin/forward/forward.go @@ -56,7 +56,7 @@ type Forward struct { // New returns a new Forward. func New() *Forward { - f := &Forward{maxfails: 2, tlsConfig: new(tls.Config), expire: defaultExpire, p: new(random), from: ".", hcInterval: hcInterval, opts: options{forceTCP: false, preferUDP: false, hcRecursionDesired: true}} + f := &Forward{maxfails: 2, tlsConfig: new(tls.Config), expire: defaultExpire, p: new(random), from: ".", hcInterval: hcInterval, opts: options{forceTCP: false, preferUDP: false, hcRecursionDesired: true, hcDomain: "."}} return f } @@ -234,6 +234,7 @@ type options struct { forceTCP bool preferUDP bool hcRecursionDesired bool + hcDomain string } var defaultTimeout = 5 * time.Second |