mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
when the stream write deadline expires, return the data length written
This commit is contained in:
parent
d28f09837e
commit
34ad9f9e63
2 changed files with 27 additions and 5 deletions
|
@ -243,13 +243,10 @@ func (s *stream) Write(p []byte) (int, error) {
|
|||
s.mutex.Lock()
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
if s.err != nil {
|
||||
return len(p) - len(s.dataForWriting), s.err
|
||||
err = s.err
|
||||
}
|
||||
return len(p), nil
|
||||
return len(p) - len(s.dataForWriting), err
|
||||
}
|
||||
|
||||
func (s *stream) GetWriteOffset() protocol.ByteCount {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue