mirror of
https://github.com/miekg/dns.git
synced 2025-10-15 11:51:00 +02:00
17 lines
251 B
Go
17 lines
251 B
Go
package responder
|
|
|
|
import (
|
|
"./types"
|
|
)
|
|
|
|
func Respond(query types.DNSquery, config map[string]interface{}) types.DNSresponse {
|
|
var (
|
|
result types.DNSresponse
|
|
)
|
|
result.Responsecode = types.REFUSED
|
|
return result
|
|
}
|
|
|
|
func Init(firstoption int) {
|
|
}
|