mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-07-26 11:44:22 -04:00
Don't report error for EOF
This commit is contained in:
parent
3138960443
commit
608f72f537
@ -28,7 +28,7 @@ func (reader CryptionReader) Read(blocks []byte) (int, error) {
|
||||
if nBytes > 0 {
|
||||
reader.stream.XORKeyStream(blocks[:nBytes], blocks[:nBytes])
|
||||
}
|
||||
if err != nil {
|
||||
if err != nil && err != io.EOF {
|
||||
log.Error("Error reading blocks: %v", err)
|
||||
}
|
||||
return nBytes, err
|
||||
|
Loading…
x
Reference in New Issue
Block a user