mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 01:57:12 -05:00
fix error handling in ray
This commit is contained in:
parent
226d65c6c7
commit
f1231822f7
@ -85,14 +85,14 @@ func (s *Stream) getData() (buf.MultiBuffer, error) {
|
||||
return mb, nil
|
||||
}
|
||||
|
||||
if s.close {
|
||||
return nil, io.EOF
|
||||
}
|
||||
|
||||
if s.err {
|
||||
return nil, io.ErrClosedPipe
|
||||
}
|
||||
|
||||
if s.close {
|
||||
return nil, io.EOF
|
||||
}
|
||||
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
@ -121,7 +121,7 @@ func (s *Stream) ReadMultiBuffer() (buf.MultiBuffer, error) {
|
||||
|
||||
select {
|
||||
case <-s.ctx.Done():
|
||||
return nil, io.EOF
|
||||
return nil, s.ctx.Err()
|
||||
case <-s.writeSignal.Wait():
|
||||
}
|
||||
}
|
||||
@ -142,7 +142,7 @@ func (s *Stream) ReadTimeout(timeout time.Duration) (buf.MultiBuffer, error) {
|
||||
|
||||
select {
|
||||
case <-s.ctx.Done():
|
||||
return nil, io.EOF
|
||||
return nil, s.ctx.Err()
|
||||
case <-time.After(timeout):
|
||||
return nil, buf.ErrReadTimeout
|
||||
case <-s.writeSignal.Wait():
|
||||
@ -167,7 +167,7 @@ func (s *Stream) waitForStreamSize() error {
|
||||
for s.Size() >= streamSizeLimit {
|
||||
select {
|
||||
case <-s.ctx.Done():
|
||||
return io.ErrClosedPipe
|
||||
return s.ctx.Err()
|
||||
case <-s.readSignal.Wait():
|
||||
if s.err || s.close {
|
||||
return io.ErrClosedPipe
|
||||
@ -227,7 +227,9 @@ func (s *Stream) CloseError() {
|
||||
s.data = nil
|
||||
s.size = 0
|
||||
}
|
||||
s.access.Unlock()
|
||||
|
||||
s.readSignal.Signal()
|
||||
s.writeSignal.Signal()
|
||||
s.access.Unlock()
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user