From 1283a1f2151c57d6ab0c7a11296883129020bea6 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Fri, 21 Oct 2022 11:49:03 +0100 Subject: [PATCH] rename the variable in quic.Config.AllowConnectionWindowIncrease (#3602) --- interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface.go b/interface.go index 8fbeab1f..feb752f3 100644 --- a/interface.go +++ b/interface.go @@ -290,7 +290,7 @@ type Config struct { // limit the memory usage. // To avoid deadlocks, it is not valid to call other functions on the connection or on streams // in this callback. - AllowConnectionWindowIncrease func(sess Connection, delta uint64) bool + AllowConnectionWindowIncrease func(conn Connection, delta uint64) bool // MaxIncomingStreams is the maximum number of concurrent bidirectional streams that a peer is allowed to open. // Values above 2^60 are invalid. // If not set, it will default to 100.