mirror of
https://github.com/caddyserver/caddy.git
synced 2026-07-25 09:28:22 +02:00
86121c860f
SNI is always ASCII on the wire (RFC 6066), and most config patterns are also ASCII. For pure ASCII input, idna.ToASCII only validates and lowercases, which is equivalent to a simple strings.ToLower. Add a fast path to avoid the overhead of idna.ToASCII in the common case.