mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[PR #1987] [MERGED] DoH3 support #2741
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#2741
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/1987
Author: @daxpedda
Created: 7/7/2023
Status: ✅ Merged
Merged: 10/6/2023
Merged by: @bluejekyll
Base:
main← Head:http3📝 Commits (10+)
03c28dbProto client implementationb5dfa01Proto server implementation1518181Resolver implementationc8cd0d6Server implementation32f0377Util implementation72e918aIntegration tests implementationaa59d92Binary implementationb219ef6Recursor implementation8925a49Remove unnecessary whitespaced094ed4Remove incorrect warning in HTTP/3 stream handling📊 Changes
43 files changed (+1682 additions, -181 deletions)
View changed files
📝
.github/workflows/test.yml(+1 -0)📝
Cargo.lock(+44 -0)📝
Cargo.toml(+2 -0)📝
bin/Cargo.toml(+1 -1)📝
bin/tests/named_https_tests.rs(+1 -1)📝
crates/client/src/h2_client_connection.rs(+1 -1)📝
crates/client/src/lib.rs(+3 -3)📝
crates/proto/Cargo.toml(+3 -1)📝
crates/proto/src/h2/h2_client_stream.rs(+6 -4)📝
crates/proto/src/h2/h2_server.rs(+5 -4)📝
crates/proto/src/h2/mod.rs(+4 -10)➕
crates/proto/src/h3/h3_client_stream.rs(+655 -0)➕
crates/proto/src/h3/h3_server.rs(+127 -0)➕
crates/proto/src/h3/mod.rs(+39 -0)📝
crates/proto/src/http/error.rs(+13 -1)➕
crates/proto/src/http/mod.rs(+37 -0)📝
crates/proto/src/http/request.rs(+34 -19)📝
crates/proto/src/http/response.rs(+7 -6)📝
crates/proto/src/lib.rs(+10 -1)📝
crates/proto/src/quic/mod.rs(+1 -0)...and 23 more files
📄 Description
This adds DNS-over-HTTP/3 support.
I'm not familiar with all the other TrustDNS crates, so I'm not too sure whats going on there. I made sure that DoH3 was added to every crate that was also using DoQ.
Requires #2036.
Fixes #1939.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.