Set recursion available flag on nameserver responses

This commit is contained in:
Daniel 2022-03-16 11:48:42 +01:00
parent 92bf99d0ed
commit e3a450e96b

View file

@ -27,6 +27,8 @@ func sendResponse(
// Dropping query.
return nil
}
// Signify that we are a recursive resolver.
reply.RecursionAvailable = true
// Add extra RRs through a custom RRProvider.
for _, rrProvider := range rrProviders {