]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2435] Rename DsIter iterator class to DatasrcIter
authorMukund Sivaraman <muks@isc.org>
Wed, 9 Jan 2013 05:10:51 +0000 (10:40 +0530)
committerMukund Sivaraman <muks@isc.org>
Wed, 9 Jan 2013 05:10:51 +0000 (10:40 +0530)
src/lib/datasrc/rrset_collection.h

index 77c15745984e86a4cd82e5cb3314edf9d84b90d9..df307c726f13a65bc323f1aedddb622439f3e0cd 100644 (file)
@@ -52,9 +52,9 @@ private:
     ZoneUpdaterPtr updater_;
 
 protected:
-    class DsIter : public RRsetCollectionBase::Iter {
+    class DatasrcIter : public RRsetCollectionBase::Iter {
     public:
-        DsIter()
+        DatasrcIter()
         {}
 
         virtual const isc::dns::AbstractRRset& getValue() {
@@ -66,7 +66,7 @@ protected:
         }
 
         virtual bool equals(Iter& other) {
-            const DsIter* other_real = dynamic_cast<DsIter*>(&other);
+            const DatasrcIter* other_real = dynamic_cast<DatasrcIter*>(&other);
             if (other_real == NULL) {
                 return (false);
             }