Merge pull request #9 from richtr/handle_multiple_mdns_questions

Handle multiple mDNS questions as allowed in RFC6762
This commit is contained in:
Armon Dadgar 2014-09-13 15:34:14 -07:00
commit 66d411ff65

View File

@ -131,9 +131,11 @@ func (s *Server) handleQuery(query *dns.Msg, from net.Addr) error {
// Handle each question // Handle each question
if len(query.Question) > 0 { if len(query.Question) > 0 {
if err := s.handleQuestion(query.Question[0], &resp); err != nil { for i, _ := range query.Question {
log.Printf("[ERR] mdns: failed to handle question %v: %v", if err := s.handleQuestion(query.Question[i], &resp); err != nil {
query.Question[0], err) log.Printf("[ERR] mdns: failed to handle question %v: %v",
query.Question[i], err)
}
} }
} }