(q *dns.Msg, rcode int)
| 65 | } |
| 66 | |
| 67 | func responseWithCode(q *dns.Msg, rcode int) *dns.Msg { |
| 68 | a := new(dns.Msg) |
| 69 | a.SetRcode(q, rcode) |
| 70 | return a |
| 71 | } |
| 72 | |
| 73 | func (s *dohstub) DohHandler() http.HandlerFunc { |
| 74 | // ref: github.com/folbricht/routedns/blob/5932594/dohlistener.go#L153 |