mirror of
https://github.com/cloudflare/cloudflared.git
synced 2026-06-23 04:10:20 +00:00
9388e7f48c
Remove the DNS over HTTPS (DoH) proxy feature built on CoreDNS due to security vulnerabilities (GO-2025-3942, GO-2026-4289). This removes: - Standalone proxy-dns command (cloudflared proxy-dns) - Tunnel subcommand (cloudflared tunnel proxy-dns) - Proxy-dns flags for tunnel run (--proxy-dns, --proxy-dns-port, etc.) - Config file resolver section support - tunneldns/ package (CoreDNS-based implementation) - Related component tests BREAKING CHANGE: The proxy-dns feature is no longer available. Users should migrate to alternative DNS over HTTPS solutions.
11 lines
173 B
Python
11 lines
173 B
Python
METRICS_PORT = 51000
|
|
MAX_RETRIES = 5
|
|
BACKOFF_SECS = 7
|
|
MAX_LOG_LINES = 50
|
|
|
|
MANAGEMENT_HOST_NAME = "management.argotunnel.com"
|
|
|
|
|
|
def protocols():
|
|
return ["http2", "quic"]
|