mirror of https://github.com/v2ray/v2ray-core
parent
66b81a842d
commit
62258e6aef
|
@ -143,15 +143,20 @@ func (s *Stream) ReadTimeout(timeout time.Duration) (buf.MultiBuffer, error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Size returns the number of bytes hold in the Stream.
|
||||||
|
func (s *Stream) Size() uint64 {
|
||||||
|
s.access.RLock()
|
||||||
|
defer s.access.RUnlock()
|
||||||
|
|
||||||
|
return s.size
|
||||||
|
}
|
||||||
|
|
||||||
func (s *Stream) waitForStreamSize() error {
|
func (s *Stream) waitForStreamSize() error {
|
||||||
if streamSizeLimit == 0 {
|
if streamSizeLimit == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
s.access.RLock()
|
for s.Size() >= streamSizeLimit {
|
||||||
defer s.access.RUnlock()
|
|
||||||
|
|
||||||
for streamSizeLimit > 0 && s.size >= streamSizeLimit {
|
|
||||||
select {
|
select {
|
||||||
case <-s.ctx.Done():
|
case <-s.ctx.Done():
|
||||||
return io.ErrClosedPipe
|
return io.ErrClosedPipe
|
||||||
|
|
Loading…
Reference in New Issue