]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Mention rfc4034.tx in comments, marking the spots something has to be done in the...
authorOtto <otto.moerbeek@open-xchange.com>
Tue, 26 Jan 2021 14:53:18 +0000 (15:53 +0100)
committerOtto <otto.moerbeek@open-xchange.com>
Tue, 26 Jan 2021 14:53:18 +0000 (15:53 +0100)
pdns/validate.cc

index f1631641ff852121f9ae5ec7a7d6bf77c8aa9b93..7f6bac214afa285a2e0358aef662aac13d36024d 100644 (file)
@@ -763,11 +763,13 @@ static const vector<DNSName> getZoneCuts(const DNSName& begin, const DNSName& en
 
 bool isRRSIGNotExpired(const time_t now, const shared_ptr<RRSIGRecordContent>& sig)
 {
+  // Should use https://www.rfc-editor.org/rfc/rfc4034.txt section 3.1.5 
   return sig->d_sigexpire >= now;
 }
 
 bool isRRSIGIncepted(const time_t now, const shared_ptr<RRSIGRecordContent>& sig)
 {
+  // Should use https://www.rfc-editor.org/rfc/rfc4034.txt section 3.1.5 
   return sig->d_siginception - g_signatureInceptionSkew <= now;
 }