@@ -21,6 +21,7 @@ import (
21
21
22
22
"github.com/metacubex/sing-quic/hysteria2"
23
23
24
+ "github.com/metacubex/quic-go"
24
25
"github.com/metacubex/randv2"
25
26
M "github.com/sagernet/sing/common/metadata"
26
27
)
@@ -62,6 +63,12 @@ type Hysteria2Option struct {
62
63
CustomCAString string `proxy:"ca-str,omitempty"`
63
64
CWND int `proxy:"cwnd,omitempty"`
64
65
UdpMTU int `proxy:"udp-mtu,omitempty"`
66
+
67
+ // quic-go special config
68
+ InitialStreamReceiveWindow uint64 `proxy:"initial-stream-receive-window,omitempty"`
69
+ MaxStreamReceiveWindow uint64 `proxy:"max-stream-receive-window,omitempty"`
70
+ InitialConnectionReceiveWindow uint64 `proxy:"initial-connection-receive-window,omitempty"`
71
+ MaxConnectionReceiveWindow uint64 `proxy:"max-connection-receive-window,omitempty"`
65
72
}
66
73
67
74
func (h * Hysteria2 ) DialContext (ctx context.Context , metadata * C.Metadata , opts ... dialer.Option ) (_ C.Conn , err error ) {
@@ -145,6 +152,13 @@ func NewHysteria2(option Hysteria2Option) (*Hysteria2, error) {
145
152
option .UdpMTU = 1200 - 3
146
153
}
147
154
155
+ quicConfig := & quic.Config {
156
+ InitialStreamReceiveWindow : option .InitialStreamReceiveWindow ,
157
+ MaxStreamReceiveWindow : option .MaxStreamReceiveWindow ,
158
+ InitialConnectionReceiveWindow : option .InitialConnectionReceiveWindow ,
159
+ MaxConnectionReceiveWindow : option .MaxConnectionReceiveWindow ,
160
+ }
161
+
148
162
singDialer := proxydialer .NewByNameSingDialer (option .DialerProxy , dialer .NewDialer ())
149
163
150
164
clientOptions := hysteria2.ClientOptions {
@@ -156,6 +170,7 @@ func NewHysteria2(option Hysteria2Option) (*Hysteria2, error) {
156
170
SalamanderPassword : salamanderPassword ,
157
171
Password : option .Password ,
158
172
TLSConfig : tlsConfig ,
173
+ QUICConfig : quicConfig ,
159
174
UDPDisabled : false ,
160
175
CWND : option .CWND ,
161
176
UdpMTU : option .UdpMTU ,
0 commit comments