19 lines
395 B
Go
19 lines
395 B
Go
package core
|
|
|
|
import "github.com/miekg/dns"
|
|
|
|
//Handle the DNS request
|
|
func HandleDnsRequest(w dns.ResponseWriter, r *dns.Msg) {
|
|
|
|
//dns.Msg object
|
|
//Will be passed to the parseQuery() function
|
|
m := new(dns.Msg)
|
|
m.SetReply(r)
|
|
m.Compress = true //Less CPU usage (?)
|
|
|
|
if r.Opcode == dns.OpcodeQuery { //Only respond to dns queries
|
|
parseQuery(m)
|
|
}
|
|
|
|
w.WriteMsg(m) //Write the DNS response
|
|
}
|