fix: set MaxDatagramFrameSize

This commit is contained in:
Zxneric 2024-04-28 17:15:44 +00:00
parent e2eaae874d
commit 093de5d4d1
3 changed files with 4 additions and 1 deletions

View file

@ -70,6 +70,7 @@ func NewClient(options ClientOptions) (*Client, error) {
MaxConnectionReceiveWindow: DefaultConnReceiveWindow,
MaxIdleTimeout: DefaultMaxIdleTimeout,
KeepAlivePeriod: DefaultKeepAlivePeriod,
MaxDatagramFrameSize: 1197,
}
if options.StreamReceiveWindow != 0 {
quicConfig.InitialStreamReceiveWindow = options.StreamReceiveWindow

View file

@ -72,6 +72,7 @@ func NewClient(options ClientOptions) (*Client, error) {
MaxConnectionReceiveWindow: hysteria.DefaultConnReceiveWindow,
MaxIdleTimeout: hysteria.DefaultMaxIdleTimeout,
KeepAlivePeriod: hysteria.DefaultKeepAlivePeriod,
MaxDatagramFrameSize: 1197,
}
if len(options.TLSConfig.NextProtos()) == 0 {
options.TLSConfig.SetNextProtos([]string{http3.NextProtoH3})

View file

@ -9,7 +9,7 @@ import (
"time"
"github.com/sagernet/quic-go"
"github.com/sagernet/sing-quic"
qtls "github.com/sagernet/sing-quic"
"github.com/sagernet/sing/common"
"github.com/sagernet/sing/common/baderror"
"github.com/sagernet/sing/common/buf"
@ -58,6 +58,7 @@ func NewClient(options ClientOptions) (*Client, error) {
DisablePathMTUDiscovery: !(runtime.GOOS == "windows" || runtime.GOOS == "linux" || runtime.GOOS == "android" || runtime.GOOS == "darwin"),
EnableDatagrams: true,
MaxIncomingUniStreams: 1 << 60,
MaxDatagramFrameSize: 1197,
}
switch options.CongestionControl {
case "":