Compile fixes and make it work
This commit is contained in:
parent
d383f279a0
commit
9328a8e7a4
6 changed files with 9 additions and 3 deletions
|
@ -75,7 +75,7 @@ func (a Auto) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (i
|
||||||
return xfr.ServeDNS(ctx, w, r)
|
return xfr.ServeDNS(ctx, w, r)
|
||||||
}
|
}
|
||||||
|
|
||||||
answer, ns, extra, result := z.Lookup(qname, state.QType(), state.Do())
|
answer, ns, extra, result := z.Lookup(state, qname)
|
||||||
|
|
||||||
m := new(dns.Msg)
|
m := new(dns.Msg)
|
||||||
m.SetReply(r)
|
m.SetReply(r)
|
||||||
|
|
|
@ -147,7 +147,7 @@ func autoParse(c *caddy.Controller) (Auto, error) {
|
||||||
case "upstream":
|
case "upstream":
|
||||||
args := c.RemainingArgs()
|
args := c.RemainingArgs()
|
||||||
if len(args) == 0 {
|
if len(args) == 0 {
|
||||||
return a, false, c.ArgErr()
|
return a, c.ArgErr()
|
||||||
}
|
}
|
||||||
for i := 0; i < len(args); i++ {
|
for i := 0; i < len(args); i++ {
|
||||||
h, p, e := net.SplitHostPort(args[i])
|
h, p, e := net.SplitHostPort(args[i])
|
||||||
|
|
|
@ -39,6 +39,7 @@ func TestAutoParse(t *testing.T) {
|
||||||
directory /tmp (.*) bliep
|
directory /tmp (.*) bliep
|
||||||
transfer to 127.0.0.1
|
transfer to 127.0.0.1
|
||||||
transfer to 127.0.0.2
|
transfer to 127.0.0.2
|
||||||
|
upstream 8.8.8.8
|
||||||
}`,
|
}`,
|
||||||
false, "/tmp", "bliep", `(.*)`, []string{"127.0.0.1:53", "127.0.0.2:53"},
|
false, "/tmp", "bliep", `(.*)`, []string{"127.0.0.1:53", "127.0.0.2:53"},
|
||||||
},
|
},
|
||||||
|
|
|
@ -136,6 +136,8 @@ var exernalTestCases = []test.Case{
|
||||||
Qname: "external.example.org.", Qtype: dns.TypeA,
|
Qname: "external.example.org.", Qtype: dns.TypeA,
|
||||||
Answer: []dns.RR{
|
Answer: []dns.RR{
|
||||||
test.CNAME("external.example.org. 1800 CNAME www.example.net."),
|
test.CNAME("external.example.org. 1800 CNAME www.example.net."),
|
||||||
|
// magic 303 TTL that says: don't check TTL.
|
||||||
|
test.A("www.example.net. 303 IN A 93.184.216.34"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -339,10 +339,12 @@ func cnameForType(targets []dns.RR, origQtype uint16) []dns.RR {
|
||||||
|
|
||||||
func (z *Zone) externalLookup(state request.Request, target string, qtype uint16) []dns.RR {
|
func (z *Zone) externalLookup(state request.Request, target string, qtype uint16) []dns.RR {
|
||||||
m, e := z.Proxy.Lookup(state, target, qtype)
|
m, e := z.Proxy.Lookup(state, target, qtype)
|
||||||
if e != nil || m == nil {
|
if e != nil {
|
||||||
|
println(e.Error())
|
||||||
// TODO(miek): debugMsg for this as well? Log?
|
// TODO(miek): debugMsg for this as well? Log?
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
println(m.String())
|
||||||
return m.Answer
|
return m.Answer
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -75,6 +75,7 @@ func (p Proxy) lookup(state request.Request, r *dns.Msg) (*dns.Msg, error) {
|
||||||
// hosts until timeout (or until we get a nil host).
|
// hosts until timeout (or until we get a nil host).
|
||||||
for time.Now().Sub(start) < tryDuration {
|
for time.Now().Sub(start) < tryDuration {
|
||||||
host := upstream.Select()
|
host := upstream.Select()
|
||||||
|
println(host.Name)
|
||||||
if host == nil {
|
if host == nil {
|
||||||
return nil, errUnreachable
|
return nil, errUnreachable
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue