mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
remove fcm.StreamContributesToConnectionFlowControl
This commit is contained in:
parent
5f774c8e03
commit
3aa8b1bf37
4 changed files with 0 additions and 41 deletions
|
@ -180,17 +180,6 @@ func (f *flowControlManager) UpdateWindow(streamID protocol.StreamID, offset pro
|
|||
return streamFlowController.UpdateSendWindow(offset), nil
|
||||
}
|
||||
|
||||
func (f *flowControlManager) StreamContributesToConnectionFlowControl(streamID protocol.StreamID) (bool, error) {
|
||||
f.mutex.RLock()
|
||||
defer f.mutex.RUnlock()
|
||||
|
||||
contributes, ok := f.contributesToConnectionFlowControl[streamID]
|
||||
if !ok {
|
||||
return false, errMapAccess
|
||||
}
|
||||
return contributes, nil
|
||||
}
|
||||
|
||||
func (f *flowControlManager) getFlowController(streamID protocol.StreamID) (*flowController, error) {
|
||||
streamFlowController, ok := f.streamFlowController[streamID]
|
||||
if !ok {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue