Fix read buffer size

This commit is contained in:
世界 2022-06-17 14:07:16 +08:00
parent ba1ca0fe97
commit 6ea03f47ed
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -34,7 +34,7 @@ func NewReader(upstream io.Reader, cipher cipher.AEAD, maxPacketSize int) *Reade
return &Reader{
upstream: upstream,
cipher: cipher,
buffer: make([]byte, maxPacketSize+PacketLengthBufferSize+Overhead*2),
buffer: make([]byte, maxPacketSize+Overhead),
nonce: make([]byte, cipher.NonceSize()),
}
}