summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorMatthew Holt <[email protected]>2024-04-27 12:01:30 -0600
committerMatthew Holt <[email protected]>2024-04-27 12:01:30 -0600
commita46ff50a1ce61d02fc249821fb7e8ea04c1b2840 (patch)
tree1ad408c39d9ac6ab37cf6ff4f836a8de9d403bcd /modules
parentcabb5d71c493f4502df74f346b9d7e7fe4497c99 (diff)
downloadcaddy-a46ff50a1ce61d02fc249821fb7e8ea04c1b2840.tar.gz
caddy-a46ff50a1ce61d02fc249821fb7e8ea04c1b2840.zip
go.mod: Upgrade to quic-go v0.43.0
Diffstat (limited to 'modules')
-rw-r--r--modules/caddyhttp/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddyhttp/server.go b/modules/caddyhttp/server.go
index 0c616192d..5b855cde3 100644
--- a/modules/caddyhttp/server.go
+++ b/modules/caddyhttp/server.go
@@ -598,7 +598,7 @@ func (s *Server) serveHTTP3(addr caddy.NetworkAddress, tlsCfg *tls.Config) error
TLSConfig: tlsCfg,
MaxHeaderBytes: s.MaxHeaderBytes,
// TODO: remove this config when draft versions are no longer supported (we have no need to support drafts)
- QuicConfig: &quic.Config{
+ QUICConfig: &quic.Config{
Versions: []quic.Version{quic.Version1, quic.Version2},
},
ConnContext: func(ctx context.Context, c quic.Connection) context.Context {