mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
Merge pull request #1030 from lucas-clemente/fix-1029
when the stream write deadline expires, return the data length written
This commit is contained in:
commit
93e99e239c
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