We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Caddy should use a *net.UDPConn instead of a net.PacketConn in
*net.UDPConn
net.PacketConn
caddy/listeners.go
Lines 205 to 210 in e2940c8
This will allow quic-go to set the receive buffer size, see https://caddy.community/t/udp-receive-buffer-size-quic/11244 and quic-go/quic-go#3024.
The text was updated successfully, but these errors were encountered:
Is that safe to change though? Does that code path use TCP too? 🤔
Sorry, something went wrong.
I don't think that's possible. net.TCPConn doesn't implement net.PacketConn.
net.TCPConn
listeners: Use net.UDPConn instead
647ea15
See caddyserver#3998
ec3ac84
No branches or pull requests
Caddy should use a
*net.UDPConn
instead of anet.PacketConn
incaddy/listeners.go
Lines 205 to 210 in e2940c8
This will allow quic-go to set the receive buffer size, see https://caddy.community/t/udp-receive-buffer-size-quic/11244 and quic-go/quic-go#3024.
The text was updated successfully, but these errors were encountered: