mirror of
https://github.com/SagerNet/sing-quic.git
synced 2025-04-04 12:27:38 +03:00
fix: set MaxDatagramFrameSize
This commit is contained in:
parent
e2eaae874d
commit
093de5d4d1
3 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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})
|
||||
|
|
|
@ -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 "":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue