aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/dnsserver/server.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/dnsserver/server.go b/core/dnsserver/server.go
index 386b0edd3..c4e4b89ab 100644
--- a/core/dnsserver/server.go
+++ b/core/dnsserver/server.go
@@ -155,10 +155,12 @@ func (s *Server) Address() string { return s.Addr }
// defined in the request so that the correct zone
// (configuration and middleware stack) will handle the request.
func (s *Server) ServeDNS(w dns.ResponseWriter, r *dns.Msg) {
- s.serveDNSWithContext(context.Background(), w, r)
+ s.ServeDNSWithContext(context.Background(), w, r)
}
-func (s *Server) serveDNSWithContext(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) {
+// ServeDNSWithContext may be used as an entrypoint for requests that
+// come from transports that may include a Context (such as gRPC)
+func (s *Server) ServeDNSWithContext(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) {
defer func() {
// In case the user doesn't enable error middleware, we still
// need to make sure that we stay alive up here