gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [ascension] branch master updated: add list of obsolete rec


From: gnunet
Subject: [GNUnet-SVN] [ascension] branch master updated: add list of obsolete record types
Date: Wed, 01 May 2019 13:18:59 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository ascension.

The following commit(s) were added to refs/heads/master by this push:
     new 86c094b  add list of obsolete record types
86c094b is described below

commit 86c094bdf1b2e48111b58617e46bf7b07a6afdfd
Author: Christian Grothoff <address@hidden>
AuthorDate: Wed May 1 13:18:32 2019 +0200

    add list of obsolete record types
---
 ascension/ascension.py | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/ascension/ascension.py b/ascension/ascension.py
index 423f39e..aa6f826 100644
--- a/ascension/ascension.py
+++ b/ascension/ascension.py
@@ -60,10 +60,23 @@ GNUNET_ZONE_CREATION_COMMAND = 'gnunet-identity'
 GNUNET_NAMESTORE_COMMAND = 'gnunet-namestore'
 GNUNET_GNS_COMMAND = 'gnunet-gns'
 GNUNET_ARM_COMMAND = 'gnunet-arm'
-# TODO find better solution for ignoring DNSSEC record types
+# This is the list of record types Ascension (and GNS) currently
+# explicitly supports.  Record types we encounter that are not
+# in this list and not in the OBSOLETE_RECORD_TYPES list will
+# create a warning (information loss during migration).
 SUPPORTED_RECORD_TYPES = [
     "A", "AAAA", "NS", "MX", "SRV", "TXT", "CNAME"
 ]
+# Record types that exist in DNS but that won't ever exist in GNS
+# as they are not needed anymore (so we should not create a warning
+# if we drop one of these).
+OBSOLETE_RECORD_TYPES = [
+    "PTR",
+    "SIG", "KEY",
+    "RRSIG", "NSEC", "DNSKEY", "NSEC3", "NSEC3PARAM", "CDNSKEY",
+    "TKEY", "TSIG",
+    "TA", "DLV"
+]
 
 class Ascender():
     """

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]