-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
feat(ext/fetch): support custom DNS resolver #27740
base: main
Are you sure you want to change the base?
Conversation
8efc9e8
to
262c05e
Compare
262c05e
to
e14c3b7
Compare
Hi @bartlomieju, could you take a look on this PR when you are available? I am sorry if I misuse the @ function on you. |
@zino23 what do you need this API for? |
@bartlomieju We have a custom DNS rule that basically says for particular services, identified by a custom property in options of The usage is like this: // For requests that set `customProperty` to true, bypass the normal DNS resolutions.
await fetch("http://www.example.com", { customProperty: true }) |
Besides, I guess others who need their custom DNS rules can also benefit from this? |
Resolve
whose only method resolves aName
intoResult<SocketAddrs, io::Error>
asynchronously.Resolver
encapsulating a custom DNS resolver, and modifyResolver
's implementation ofService<Name>
accordingly.Fix #27739.