mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
fix deadlock when sending stream data
This commit is contained in:
parent
dadb6d395c
commit
8761cee0ef
1 changed files with 5 additions and 1 deletions
|
@ -96,10 +96,10 @@ func (s *sendStream) Write(p []byte) (int, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
s.dataForWriting = p
|
s.dataForWriting = p
|
||||||
s.sender.onHasStreamData(s.streamID)
|
|
||||||
|
|
||||||
var bytesWritten int
|
var bytesWritten int
|
||||||
var err error
|
var err error
|
||||||
|
var notifiedSender bool
|
||||||
for {
|
for {
|
||||||
bytesWritten = len(p) - len(s.dataForWriting)
|
bytesWritten = len(p) - len(s.dataForWriting)
|
||||||
if !s.deadline.IsZero() && !time.Now().Before(s.deadline) {
|
if !s.deadline.IsZero() && !time.Now().Before(s.deadline) {
|
||||||
|
@ -112,6 +112,10 @@ func (s *sendStream) Write(p []byte) (int, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
s.mutex.Unlock()
|
s.mutex.Unlock()
|
||||||
|
if !notifiedSender {
|
||||||
|
s.sender.onHasStreamData(s.streamID) // must be called without holding the mutex
|
||||||
|
notifiedSender = true
|
||||||
|
}
|
||||||
if s.deadline.IsZero() {
|
if s.deadline.IsZero() {
|
||||||
<-s.writeChan
|
<-s.writeChan
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue