mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 03:05:51 +03:00
[PR #93] [MERGED] DNS over TLS #1238
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#1238
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/93
Author: @bluejekyll
Created: 2/25/2017
Status: ✅ Merged
Merged: 2/25/2017
Merged by: @bluejekyll
Base:
master← Head:dns_over_tls📝 Commits (10+)
21901acabstracting tcp stream for tlsd4bd992tls working!4122af4support various key types in servera1db07akey_format testsf0e71a0serverside DNS over TLS impl7850d11all TLS clients implemented9ae4f3eadd DNS over TLS test cased409317linux support for DNS over TLS0db72c5updating to newer native-tls and openssl versionsbaf9c1cmv tls_stream tests to tests/📊 Changes
42 files changed (+1687 additions, -601 deletions)
View changed files
📝
.travis.yml(+15 -7)📝
CHANGELOG.md(+4 -2)📝
Cargo.lock(+190 -114)📝
Cargo.toml(+6 -0)📝
client/Cargo.toml(+7 -2)📝
client/src/client/client.rs(+1 -1)📝
client/src/error/mod.rs(+6 -6)📝
client/src/lib.rs(+12 -10)➕
client/src/rr/dnssec/key_format.rs(+205 -0)📝
client/src/rr/dnssec/keypair.rs(+10 -0)📝
client/src/rr/dnssec/mod.rs(+2 -0)📝
client/src/rr/record_type.rs(+0 -2)➖
client/src/tcp/handler.rs(+0 -200)📝
client/src/tcp/mod.rs(+1 -4)📝
client/src/tcp/tcp_client_connection.rs(+4 -3)📝
client/src/tcp/tcp_client_stream.rs(+20 -11)📝
client/src/tcp/tcp_stream.rs(+50 -28)➕
client/src/tls/mod.rs(+25 -0)➕
client/src/tls/tls_client_connection.rs(+85 -0)➕
client/src/tls/tls_client_stream.rs(+65 -0)...and 22 more files
📄 Description
This also contains many tests to validate DNS over TLS.
This resolves #38
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.