mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[PR #1373] [MERGED] Enable RuntimeProvider in DoT implementations #2267
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#2267
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/1373
Author: @kmod-midori
Created: 2/3/2021
Status: ✅ Merged
Merged: 2/3/2021
Merged by: @djc
Base:
main← Head:tls-provider📝 Commits (5)
e84e67cMake Rustls respect RuntimeProvider7be8e7cAdd to native TLS9198206Add OpenSSLd751b41Make clippy happy1fedd27Fixusestyle📊 Changes
17 files changed (+142 additions, -94 deletions)
View changed files
📝
bin/tests/named_openssl_tests.rs(+6 -2)📝
bin/tests/named_rustls_tests.rs(+12 -3)📝
crates/native-tls/src/tests.rs(+3 -1)📝
crates/native-tls/src/tls_client_stream.rs(+9 -8)📝
crates/native-tls/src/tls_stream.rs(+17 -15)📝
crates/openssl/src/tls_client_stream.rs(+8 -7)📝
crates/openssl/src/tls_stream.rs(+18 -15)📝
crates/openssl/tests/openssl_tests.rs(+6 -3)📝
crates/resolver/src/name_server/connection_provider.rs(+11 -10)📝
crates/resolver/src/tls/dns_over_native_tls.rs(+4 -2)📝
crates/resolver/src/tls/dns_over_openssl.rs(+4 -2)📝
crates/resolver/src/tls/dns_over_rustls.rs(+3 -2)📝
crates/rustls/src/tests.rs(+7 -1)📝
crates/rustls/src/tls_client_stream.rs(+6 -6)📝
crates/rustls/src/tls_stream.rs(+13 -9)📝
tests/integration-tests/src/tls_client_connection.rs(+10 -7)📝
tests/integration-tests/tests/server_future_tests.rs(+5 -1)📄 Description
I was surprised that
RuntimeProviderdoes not work in DoT, which is not ideal for my application.Most changes of this PR are just playing around with types, almost no changes have been made to the logic.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.