mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 03:05:51 +03:00
[PR #509] [CLOSED] (wip) DNS over HTTPS support #1486
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#1486
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/509
Author: @bluejekyll
Created: 6/11/2018
Status: ❌ Closed
Base:
master← Head:support_dns_over_https📝 Commits (7)
c760af2initial HttpsClientStream implb7e97ecredo the interface for the HttpsClientStreamff16639add query parameter for querydf05a26add basic test09a791einitial working HttpsClientStream2ef9dd9enable automated tests for httpsf9a16b3cleanup response handling states📊 Changes
14 files changed (+1015 additions, -14 deletions)
View changed files
📝
Cargo.toml(+1 -10)➕
https/Cargo.toml(+65 -0)➕
https/README.md(+9 -0)➕
https/src/https_client_stream.rs(+633 -0)➕
https/src/lib.rs(+35 -0)📝
proto/src/error.rs(+2 -2)📝
proto/src/xfer/dns_handle.rs(+2 -2)➕
proto/src/xfer/dns_stream.rs(+159 -0)📝
proto/src/xfer/mod.rs(+68 -0)➕
proto/src/xfer/serial_message.rs(+37 -0)📝
scripts/test_all_features.sh(+1 -0)📝
scripts/test_default_features.sh(+1 -0)📝
scripts/test_no_default_features.sh(+1 -0)📝
scripts/test_windows.bat(+1 -0)📄 Description
Still a lot of work to do here. This is adding this types (as work progresses this list will grow):
HttpsClientStream: An http/2.0 implementation over the H2 library supporting the client side of DNS over HTTPS spec: https://tools.ietf.org/html/draft-ietf-doh-dns-over-https-10DnsStream: This is a new abstraction that is pulling out some logic fromTcpStreamthat will be common across all stream like implementations. Initially this will just be used with HTTPS, then it will be backported to all protocol implementations, UDP, TCP, and TLS (DTLS if ever supported).fixes: #503
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.