mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 06:07:36 +03:00
Remove HTTPS record creation
This commit is contained in:
parent
7ec5ed127e
commit
a584effbe9
1 changed files with 0 additions and 19 deletions
|
@ -68,25 +68,6 @@ func HandleCaptivePortalQuery(msg *dns.Msg, question *dns.Question, ips *Captive
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if question.Qtype == dns.TypeHTTPS {
|
|
||||||
rr := new(dns.HTTPS)
|
|
||||||
rr.Hdr = dns.RR_Header{Name: question.Name, Rrtype: dns.TypeHTTPS, Class: dns.ClassINET, Ttl: ttl}
|
|
||||||
v4 := new(dns.SVCBIPv4Hint)
|
|
||||||
v6 := new(dns.SVCBIPv6Hint)
|
|
||||||
for _, xip := range *ips {
|
|
||||||
if ip := xip.To4(); ip != nil {
|
|
||||||
v4.Hint = append(v4.Hint, ip)
|
|
||||||
} else if ip := xip.To16(); ip != nil {
|
|
||||||
v6.Hint = append(v6.Hint, ip)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if len(v4.Hint) > 0 {
|
|
||||||
rr.Value = append(rr.Value, v4)
|
|
||||||
}
|
|
||||||
if len(v6.Hint) > 0 {
|
|
||||||
rr.Value = append(rr.Value, v6)
|
|
||||||
}
|
|
||||||
respMsg.Answer = []dns.RR{rr}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
qType, ok := dns.TypeToString[question.Qtype]
|
qType, ok := dns.TypeToString[question.Qtype]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue