mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 03:05:51 +03:00
[PR #1673] [MERGED] DNS over QUIC #2501
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#2501
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/1673
Author: @bluejekyll
Created: 3/30/2022
Status: ✅ Merged
Merged: 4/7/2022
Merged by: @bluejekyll
Base:
main← Head:dns-over-quinn📝 Commits (10+)
a41423eapi for quic client streams implemented5d51faaquic client impl up to connect09e69c0QuicStream impl working671207aintegrate quic into resolver (untested)6499d76added server config for Quic1cf8d5einitial trust-dns server config integration544dc04fix cleanliness of quic impls04f3efcdisable actual UDP connecting logic, this causes an odd issue, and not strictly necessaryb45a79dimprove test diagnostics for named and quicc1fe5a5fix byte size of len on writing quic packets📊 Changes
45 files changed (+1546 additions, -80 deletions)
View changed files
📝
.github/workflows/test.yml(+1 -1)📝
Cargo.lock(+104 -1)📝
Makefile.toml(+7 -0)📝
bin/Cargo.toml(+2 -0)📝
bin/src/named.rs(+87 -2)📝
bin/tests/named_https_tests.rs(+2 -2)📝
bin/tests/named_openssl_tests.rs(+1 -1)➕
bin/tests/named_quic_tests.rs(+88 -0)📝
bin/tests/named_rustls_tests.rs(+1 -1)📝
bin/tests/named_test_rsa_dnssec.rs(+1 -1)📝
bin/tests/named_tests.rs(+8 -8)📝
bin/tests/server_harness/mod.rs(+31 -10)📝
copyright.txt(+1 -1)📝
crates/async-std-resolver/src/net.rs(+18 -1)📝
crates/client/Cargo.toml(+2 -0)📝
crates/proto/Cargo.toml(+3 -0)📝
crates/proto/src/error.rs(+67 -42)📝
crates/proto/src/https/https_client_stream.rs(+1 -1)📝
crates/proto/src/lib.rs(+6 -0)➕
crates/proto/src/quic/mod.rs(+22 -0)...and 25 more files
📄 Description
This is an implementation of DNS over QUIC (DoQ) using the
quinnlibrary.This is a draft right now, I still need to add a test harness for the full end-to-end configuration, but the stream implementation is done and working.
closes: #670
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.