We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This example from Readme does not work:
resolver := &dnscache.Resolver{} // First call will cache the result addrs, err := resolver.LookupHost("example.com")
This does (taken from tests, not sure if that's the correct context for me):
resolver := &dnscache.Resolver{} addrs, err := resolver.LookupHost(context.Background(), "example.com")
It would be great, we'd have correct docs. I can submit the PR, but not sure about what context it should be.
The text was updated successfully, but these errors were encountered:
The context can be background if you don’t want timeout or a context with timeout if you want timeout or be able to cancel.
Sorry, something went wrong.
okay, submitted a patch in my branch: #4 those docs seem to be broken since existing of the program, if I read the commit history correctly, btw
No branches or pull requests
This example from Readme does not work:
This does (taken from tests, not sure if that's the correct context for me):
It would be great, we'd have correct docs. I can submit the PR, but not sure about what context it should be.
The text was updated successfully, but these errors were encountered: