aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2018-07-07 14:38:05 +0100
committerGravatar GitHub <noreply@github.com> 2018-07-07 14:38:05 +0100
commit6ec1978340de48e25ff77b032040e0b39805d84c (patch)
tree560f0fe12887998d7642362bf7990af139c49e52
parent41c28719077168c1307db37a0ce5a71cc6eb72bf (diff)
downloadcoredns-6ec1978340de48e25ff77b032040e0b39805d84c.tar.gz
coredns-6ec1978340de48e25ff77b032040e0b39805d84c.tar.zst
coredns-6ec1978340de48e25ff77b032040e0b39805d84c.zip
plugin/forward: various cleanup (#1949)
Fix documentation and remove the unused From method. Signed-off-by: Miek Gieben <miek@miek.nl>
-rw-r--r--plugin/forward/README.md3
-rw-r--r--plugin/forward/forward.go16
2 files changed, 7 insertions, 12 deletions
diff --git a/plugin/forward/README.md b/plugin/forward/README.md
index dcbdec9ab..c0a426aab 100644
--- a/plugin/forward/README.md
+++ b/plugin/forward/README.md
@@ -63,8 +63,7 @@ forward FROM TO... {
* `force_tcp`, use TCP even when the request comes in over UDP.
* `prefer_udp`, try first using UDP even when the request comes in over TCP. If response is truncated
(TC flag set in response) then do another attempt over TCP. In case if both `force_tcp` and
- `prefer_udp`.
- options specified the `force_tcp` takes precedence.
+ `prefer_udp` options specified the `force_tcp` takes precedence.
* `max_fails` is the number of subsequent failed health checks that are needed before considering
an upstream to be down. If 0, the upstream will never be marked as down (nor health checked).
Default is 2.
diff --git a/plugin/forward/forward.go b/plugin/forward/forward.go
index 861ff61a8..6eb2e0084 100644
--- a/plugin/forward/forward.go
+++ b/plugin/forward/forward.go
@@ -112,7 +112,7 @@ func (f *Forward) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg
if err == ErrCachedClosed { // Remote side closed conn, can only happen with TCP.
continue
}
- // Retry with TCP if truncated and prefer_udp configured
+ // Retry with TCP if truncated and prefer_udp configured.
if err == dns.ErrTruncated && !opts.forceTCP && f.opts.preferUDP {
opts.forceTCP = true
continue
@@ -166,9 +166,7 @@ func (f *Forward) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg
}
func (f *Forward) match(state request.Request) bool {
- from := f.from
-
- if !plugin.Name(from).Matches(state.Name()) || !f.isAllowedDomain(state.Name()) {
+ if !plugin.Name(f.from).Matches(state.Name()) || !f.isAllowedDomain(state.Name()) {
return false
}
@@ -188,9 +186,6 @@ func (f *Forward) isAllowedDomain(name string) bool {
return true
}
-// From returns the base domain to match for the request to be forwarded.
-func (f *Forward) From() string { return f.from }
-
// ForceTCP returns if TCP is forced to be used even when the request comes in over UDP.
func (f *Forward) ForceTCP() bool { return f.opts.forceTCP }
@@ -201,11 +196,11 @@ func (f *Forward) PreferUDP() bool { return f.opts.preferUDP }
func (f *Forward) List() []*Proxy { return f.p.List(f.proxies) }
var (
- // ErrNoHealthy means no healthy proxies left
+ // ErrNoHealthy means no healthy proxies left.
ErrNoHealthy = errors.New("no healthy proxies")
- // ErrNoForward means no forwarder defined
+ // ErrNoForward means no forwarder defined.
ErrNoForward = errors.New("no forwarder defined")
- // ErrCachedClosed means cached connection was closed by peer
+ // ErrCachedClosed means cached connection was closed by peer.
ErrCachedClosed = errors.New("cached connection was closed by peer")
)
@@ -218,6 +213,7 @@ const (
sequentialPolicy
)
+// options holds various options that can be set.
type options struct {
forceTCP bool
preferUDP bool