From 1f7cc5e03f4fe05e3c4cd39b96bc31b7a27a709e Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Sat, 11 May 2013 18:04:55 +0200 Subject: [PATCH] Use correct number --- README.markdown | 1 + edns.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index e525d4b1..c550f622 100644 --- a/README.markdown +++ b/README.markdown @@ -103,6 +103,7 @@ with: `go build`. * xxxx - URI record (draft) * xxxx - EDNS0 DNS Update Lease (draft) * xxxx - IEU48/IEU64 records (draft) +* xxxx - Algorithm-Signal (draft) ## Loosely based upon diff --git a/edns.go b/edns.go index 87b34e2e..6aa3e582 100644 --- a/edns.go +++ b/edns.go @@ -37,7 +37,7 @@ const ( EDNS0LLQ = 0x1 // long lived queries: http://tools.ietf.org/html/draft-sekar-dns-llq-01 EDNS0UL = 0x2 // update lease draft: http://files.dns-sd.org/draft-sekar-dns-ul.txt EDNS0NSID = 0x3 // nsid (RFC6001) - EDNS0SUBNET = 0x60fa // client-subnet draft: http://tools.ietf.org/html/draft-vandergaast-edns-client-subnet-01 + EDNS0SUBNET = 0x50fa // client-subnet draft: http://tools.ietf.org/html/draft-vandergaast-edns-client-subnet-01 _DO = 1 << 7 // dnssec ok )