fix: correctly set maxDatagramFrameSizeParameter

This commit is contained in:
Moe 2024-04-15 03:49:07 +08:00
parent 67ff7e67cb
commit 6a7930915e

View file

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