-
Notifications
You must be signed in to change notification settings - Fork 17.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x/net/dns: create package #8540
Labels
Milestone
Comments
Comment 1 by [email protected]: > For this particular use, the strings within a record are supposed to be > concatenated[1]. I don't know if this is true in general. No such luck. RFC 1035 leaves it up to the application, and although DKIM, DMARC, IKE, and SPF specify that the constituent strings of their TXT record should be concatenated, DNS-SD specifies a different interpretation for its TXT record (RFC 6763 §6.3): “Each key/value pair is encoded as its own constituent string within the DNS TXT record, in the form "key=value" (without the quotation marks).” So for the general case, we do need a [][]string. |
This kinda happened. https://godoc.org/golang.org/x/net/dns/dnsmessage /cc @iangudger @mdempsky |
I am working on improvements for x/net/dns/dnsmessage and a DNS server to go along with it. |
Merged into #16218. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
by [email protected]:
The text was updated successfully, but these errors were encountered: