mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
remove unused function from streamsMap
This commit is contained in:
parent
c12508c3c9
commit
10f8156951
3 changed files with 13 additions and 41 deletions
|
@ -197,14 +197,6 @@ func (m *streamsMap) RemoveStream(id protocol.StreamID) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
// NumberOfStreams gets the number of open streams
|
||||
func (m *streamsMap) NumberOfStreams() int {
|
||||
m.mutex.RLock()
|
||||
n := len(m.openStreams)
|
||||
m.mutex.RUnlock()
|
||||
return n
|
||||
}
|
||||
|
||||
// garbageCollectClosedStreams deletes nil values in the streams if they are smaller than protocol.MaxNewStreamIDDelta than the highest stream opened by the client
|
||||
// note that this garbage collection is relatively expensive, since it iterates over the whole streams map. It should not be called every time a stream is openend or closed
|
||||
func (m *streamsMap) garbageCollectClosedStreams() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue