Browse Source

[2435] Elaborate note about unsupported RRTypes

Mukund Sivaraman 12 years ago
parent
commit
09c47d4fef
1 changed files with 7 additions and 1 deletions
  1. 7 1
      src/lib/dns/rrset_collection_base.h

+ 7 - 1
src/lib/dns/rrset_collection_base.h

@@ -58,7 +58,13 @@ public:
     /// is found, \c NULL is returned.
     ///
     /// This method's implementations currently are not specified to
-    /// handle \c RRTypes such as RRSIG, NSEC3, ANY, or AXFR.
+    /// handle \c RRTypes such as RRSIG and NSEC3. RRSIGs are attached
+    /// to their corresponding \c RRset and it is not straightforward to
+    /// search for them. Searching for RRSIGs will return \c false
+    /// always. Support for RRSIGs may be added in the future.
+    ///
+    /// Non-concrete types such as ANY and AXFR are unsupported and will
+    /// return \c false always.
     ///
     /// \throw RRsetCollectionError if find() results in some
     /// implementation-specific error.