mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 03:05:51 +03:00
[PR #136] [MERGED] A trust-dns resolver #1264
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#1264
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/hickory-dns/hickory-dns/pull/136
Author: @bluejekyll
Created: 5/23/2017
Status: ✅ Merged
Merged: 6/26/2017
Merged by: @bluejekyll
Base:
master← Head:bfry/resolver📝 Commits (10+)
ab5626binit resolver06ff521functional, very basic Resolver for TRust-DNSf988a88add a synchronous resolver57a6848fleshing out the name_server conn for conn_poolbd2322ccollect connection stats on NameServer78cf558retry and tracking of stats for connections12be436resolver pool, with failure check and tests248f8caadd timeout where needed7bd0c14add some resolver examplesdee320bcleanup a bit for an initial release📊 Changes
21 files changed (+1143 additions, -12 deletions)
View changed files
📝
.gitignore(+2 -0)📝
CHANGELOG.md(+5 -0)📝
Cargo.lock(+14 -4)📝
Cargo.toml(+1 -1)📝
appveyor.yml(+2 -0)📝
client/Cargo.toml(+2 -2)📝
client/src/client/client_future.rs(+2 -2)📝
client/src/error/client_error.rs(+9 -0)📝
client/src/error/parse_error.rs(+6 -0)📝
client/src/udp/udp_stream.rs(+1 -0)📝
native-tls/Cargo.toml(+1 -1)➕
resolver/Cargo.toml(+50 -0)➕
resolver/build.rs(+32 -0)➕
resolver/src/config.rs(+110 -0)➕
resolver/src/lib.rs(+55 -0)➕
resolver/src/lookup_ip.rs(+188 -0)➕
resolver/src/name_server_pool.rs(+507 -0)➕
resolver/src/resolver.rs(+81 -0)➕
resolver/src/resolver_future.rs(+73 -0)📝
rustls/Cargo.toml(+1 -1)...and 1 more files
📄 Description
The beginning of a TRust-DNS resolver.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.