mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-04 12:27:39 +03:00
Fix read buffer size
This commit is contained in:
parent
ba1ca0fe97
commit
6ea03f47ed
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ func NewReader(upstream io.Reader, cipher cipher.AEAD, maxPacketSize int) *Reade
|
||||||
return &Reader{
|
return &Reader{
|
||||||
upstream: upstream,
|
upstream: upstream,
|
||||||
cipher: cipher,
|
cipher: cipher,
|
||||||
buffer: make([]byte, maxPacketSize+PacketLengthBufferSize+Overhead*2),
|
buffer: make([]byte, maxPacketSize+Overhead),
|
||||||
nonce: make([]byte, cipher.NonceSize()),
|
nonce: make([]byte, cipher.NonceSize()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue