[svn] commit: r854 - in /branches/jinmei-dnsrrset/src/lib/dns/cpp: rrset.cc rrset.h
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Feb 17 19:42:17 UTC 2010
Author: jinmei
Date: Wed Feb 17 19:42:16 2010
New Revision: 854
Log:
checkpoint: minor cleanup
Modified:
branches/jinmei-dnsrrset/src/lib/dns/cpp/rrset.cc (props changed)
branches/jinmei-dnsrrset/src/lib/dns/cpp/rrset.h (contents, props changed)
Modified: branches/jinmei-dnsrrset/src/lib/dns/cpp/rrset.h
==============================================================================
--- branches/jinmei-dnsrrset/src/lib/dns/cpp/rrset.h (original)
+++ branches/jinmei-dnsrrset/src/lib/dns/cpp/rrset.h Wed Feb 17 19:42:16 2010
@@ -19,7 +19,6 @@
#include <iostream>
#include <string>
-#include <vector>
#include <boost/shared_ptr.hpp>
@@ -73,6 +72,10 @@
// by one)? ldns has ldns_rr_list_compare(), which takes
// the latter approach (assuming the caller sorts the lists
// beforehand?).
+// - do we need to allow the user to remove specific Rdata?
+/// Looking at the BIND9 code, don't see the strong need for this at the
+/// moment.
+///
class AbstractRRset {
public:
virtual ~AbstractRRset() {}
@@ -91,10 +94,6 @@
///
/// once constructed, only TTL and the set of Rdata can be modified,
/// so \c setTTL() is the only explicit setter method.
- ///
- /// Do we need to allow the user to remove specific Rdata?
- /// Looking at the BIND9 code, don't see the strong need for this at the
- /// moment.
///
virtual void setTTL(const RRTTL& ttl) = 0;
More information about the bind10-changes
mailing list