mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
remove flow control mutexes for the sending data
Receiving MAX_{STREAM}_DATA frames and sending data is all done sequentially, so we don't need a mutex there.
This commit is contained in:
parent
efa781b067
commit
bfdeeae70c
3 changed files with 5 additions and 21 deletions
|
@ -102,9 +102,6 @@ func (c *streamFlowController) AddBytesSent(n protocol.ByteCount) {
|
|||
}
|
||||
|
||||
func (c *streamFlowController) SendWindowSize() protocol.ByteCount {
|
||||
c.mutex.Lock()
|
||||
defer c.mutex.Unlock()
|
||||
|
||||
window := c.baseFlowController.sendWindowSize()
|
||||
if c.contributesToConnection {
|
||||
window = utils.MinByteCount(window, c.connection.SendWindowSize())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue