From f1097691bbf4787466b48c32891f03c3d1c88bbe Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Tue, 17 Jan 2012 21:15:16 +0100 Subject: [PATCH] nsec3verify is not yet finished --- nsec3.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nsec3.go b/nsec3.go index 57bb2e44..d6f91259 100644 --- a/nsec3.go +++ b/nsec3.go @@ -68,6 +68,7 @@ func (m *Msg) NsecVerify(q Question) error { // Nsec3Verify verifies an denial of existence response with NSEC3s. // This function does not validate the NSEC3s. func (m *Msg) Nsec3Verify(q Question) error { + /* var nsec3 []*RR_NSEC3 if len(m.Answer) > 0 && len(m.Ns) > 0 { // Wildcard expansion @@ -203,5 +204,6 @@ func (m *Msg) Nsec3Verify(q Question) error { // If the nextcloser MATCHES the owername of one of the NSEC4s we have a NODATA response } + */ return nil }