|
@@ -231,8 +231,8 @@ public:
|
|
|
|
|
|
/// \brief Updates the owner name of the \c RRset.
|
|
|
///
|
|
|
- /// \param name A reference to a \c RRTTL class object to be copied as the
|
|
|
- /// new TTL.
|
|
|
+ /// \param name A reference to a \c Name class object to be copied as the
|
|
|
+ /// new name.
|
|
|
virtual void setName(const Name& name) = 0;
|
|
|
|
|
|
/// \brief Updates the TTL of the \c RRset.
|
|
@@ -590,8 +590,8 @@ public:
|
|
|
/// internal copy of the \c name involves resource allocation and it
|
|
|
/// fails.
|
|
|
///
|
|
|
- /// \param name A reference to a \c RRTTL class object to be copied as the
|
|
|
- /// new TTL.
|
|
|
+ /// \param name A reference to a \c Name class object to be copied as the
|
|
|
+ /// new name.
|
|
|
virtual void setName(const Name& name);
|
|
|
|
|
|
/// \brief Updates the TTL of the \c RRset.
|
|
@@ -722,7 +722,7 @@ public:
|
|
|
void removeRRsig() { rrsig_ = RRsetPtr(); }
|
|
|
|
|
|
/// \brief Return a pointer to this RRset's RRSIG RRset
|
|
|
- RRsetPtr getRRsig() { return (rrsig_); }
|
|
|
+ RRsetPtr getRRsig() const { return (rrsig_); }
|
|
|
private:
|
|
|
RRsetPtr rrsig_;
|
|
|
};
|