summaryrefslogtreecommitdiffstats
path: root/src/lib/dns/gen-rdatacode.py.in
diff options
context:
space:
mode:
authorPaul Selkirk <pselkirk@isc.org>2013-05-08 17:37:31 +0200
committerPaul Selkirk <pselkirk@isc.org>2013-05-08 17:37:31 +0200
commitc6603decaadcd33ccf9aee4a7b22447acec4b7f6 (patch)
tree4e83b3a99ca7a0911336bcab8479becc58a04aaa /src/lib/dns/gen-rdatacode.py.in
parent[2467] Merge branch 'master' into trac2467 (diff)
parent[2521] add 0-length check to DHCID from-wire constructor (diff)
downloadkea-c6603decaadcd33ccf9aee4a7b22447acec4b7f6.tar.xz
kea-c6603decaadcd33ccf9aee4a7b22447acec4b7f6.zip
Merge branch 'trac2521'
Conflicts: src/lib/dns/gen-rdatacode.py.in
Diffstat (limited to 'src/lib/dns/gen-rdatacode.py.in')
-rwxr-xr-xsrc/lib/dns/gen-rdatacode.py.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/dns/gen-rdatacode.py.in b/src/lib/dns/gen-rdatacode.py.in
index e265d56603..a49f72f357 100755
--- a/src/lib/dns/gen-rdatacode.py.in
+++ b/src/lib/dns/gen-rdatacode.py.in
@@ -1,6 +1,6 @@
#!@PYTHON@
-# Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2013 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
@@ -32,9 +32,11 @@ import sys
#
# Example:
# new_rdata_factory_users = [('a', 'in'), ('a', 'ch'), ('soa', 'generic')]
-new_rdata_factory_users = [('a', 'in'), ('aaaa', 'in'),
+new_rdata_factory_users = [('a', 'in'),
+ ('aaaa', 'in'),
('afsdb', 'generic'),
('cname', 'generic'),
+ ('dhcid', 'in'),
('dlv', 'generic'),
('dname', 'generic'),
('dnskey', 'generic'),
@@ -46,7 +48,9 @@ new_rdata_factory_users = [('a', 'in'), ('aaaa', 'in'),
('nsec', 'generic'),
('nsec3', 'generic'),
('nsec3param', 'generic'),
+ ('opt', 'generic'),
('ptr', 'generic'),
+ ('rrsig', 'generic'),
('soa', 'generic'),
('spf', 'generic'),
('srv', 'in'),