Browse Source

[1176] Add flag to enforce inclusion of DNSSEC data

Not used for anything yet.
Michal 'vorner' Vaner 13 years ago
parent
commit
8d380bb47d
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/lib/datasrc/zone.h

+ 5 - 1
src/lib/datasrc/zone.h

@@ -107,7 +107,11 @@ public:
     /// performed on these values to express compound options.
     enum FindOptions {
         FIND_DEFAULT = 0,       ///< The default options
-        FIND_GLUE_OK = 1        ///< Allow search under a zone cut
+        FIND_GLUE_OK = 1,       ///< Allow search under a zone cut
+        FIND_DNSSEC = 2         ///< Require DNSSEC data in the answer
+                                ///< (RRSIG, NSEC, etc.). The implementation
+                                ///< is allowed to include it even if it is
+                                ///< not set.
     };
 
     ///