mirror of
https://github.com/SagerNet/sing-mux.git
synced 2025-04-03 03:47:40 +03:00
Fix h2 buffer too large
This commit is contained in:
parent
ff03af056a
commit
b0a6ffd840
1 changed files with 4 additions and 2 deletions
6
h2mux.go
6
h2mux.go
|
@ -37,7 +37,8 @@ func newH2MuxServer(conn net.Conn) *h2MuxServerSession {
|
|||
inbound: make(chan net.Conn),
|
||||
done: make(chan struct{}),
|
||||
server: http2.Server{
|
||||
IdleTimeout: idleTimeout,
|
||||
IdleTimeout: idleTimeout,
|
||||
MaxReadFrameSize: buf.BufferSize,
|
||||
},
|
||||
}
|
||||
go func() {
|
||||
|
@ -168,7 +169,8 @@ func newH2MuxClient(conn net.Conn) (*h2MuxClientSession, error) {
|
|||
DialTLSContext: func(ctx context.Context, network, addr string, cfg *tls.Config) (net.Conn, error) {
|
||||
return conn, nil
|
||||
},
|
||||
ReadIdleTimeout: idleTimeout,
|
||||
ReadIdleTimeout: idleTimeout,
|
||||
MaxReadFrameSize: buf.BufferSize,
|
||||
},
|
||||
done: make(chan struct{}),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue