Skip to content
Snippets Groups Projects

No CNAME following for NSEC query

Merged Jan Včelák requested to merge fix-cname-query-nsec into master

Merge request reports

Merged by avatar (Apr 18, 2025 9:30am UTC)

Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
57 57 isset(not(self.resp.ednsflags & flag_val), "NO %s FLAG" % flag)
58 58
59 def check_rr(self, section="answer", rname=None, rtype=None):
59 def _check_rr(self, expect, section=None, rname=None, rtype=None):
60 60 """
61 61 Check for a presence of a RR with given name and type.
62 62 """
63 section_rrsets = getattr(self.resp, section)
63 if section is None:
64 section = "answer"
64 65 if rname is not None:
65 66 rname = dns.name.from_text(rname)
66 67 if rtype is not None:
67 68 rtype = dns.rdatatype.from_text(rtype)
68 69
70 assert section in ["answer", "authority", "additional"]
  • Daniel Salzman mentioned in commit 21b1bf82

    mentioned in commit 21b1bf82

  • Daniel Salzman Status changed to merged

    Status changed to merged

  • Please register or sign in to reply
    Loading