diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-02 21:06:54 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-02 21:06:54 +0000 |
commit | bad796d05629858e027778dc1280455926f68f2c (patch) | |
tree | 0b901c0b5515310df7b91119910528c1301c12de /net/base/dns_util.h | |
parent | c06c697b737656f912730bdd7d3572b179f7fd5e (diff) | |
download | chromium_src-bad796d05629858e027778dc1280455926f68f2c.zip chromium_src-bad796d05629858e027778dc1280455926f68f2c.tar.gz chromium_src-bad796d05629858e027778dc1280455926f68f2c.tar.bz2 |
net: switch from TXT DNS records to CAA.
The format of the keys-in-DNS record has started to solidify into CAA.
This change starts to switch over to using CAA records. None of this
code is enabled by default in Chrome.
BUG=none
TEST=net_unittests
Review URL: http://codereview.chromium.org/6281012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87677 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/dns_util.h')
-rw-r--r-- | net/base/dns_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/base/dns_util.h b/net/base/dns_util.h index d70dfd7..6c940c1 100644 --- a/net/base/dns_util.h +++ b/net/base/dns_util.h @@ -43,7 +43,7 @@ static const uint16 kDNS_DS = 43; static const uint16 kDNS_RRSIG = 46; static const uint16 kDNS_DNSKEY = 48; static const uint16 kDNS_ANY = 0xff; -static const uint16 kDNS_CAA = 13172; // temporary, not IANA +static const uint16 kDNS_CAA = 257; static const uint16 kDNS_TESTING = 0xfffe; // in private use area. // http://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml |