mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
return bool if stream exists in StreamsMap GetStream
This commit is contained in:
parent
b3e76770de
commit
c3dcb649c7
2 changed files with 9 additions and 9 deletions
|
@ -19,14 +19,14 @@ func newStreamsMap() *streamsMap {
|
|||
}
|
||||
}
|
||||
|
||||
func (m *streamsMap) GetStream(id protocol.StreamID) (*stream, error) {
|
||||
func (m *streamsMap) GetStream(id protocol.StreamID) (*stream, bool) {
|
||||
m.mutex.RLock()
|
||||
s, ok := m.streams[id]
|
||||
m.mutex.RUnlock()
|
||||
if !ok {
|
||||
return nil, fmt.Errorf("unknown stream: %d", id)
|
||||
return nil, false
|
||||
}
|
||||
return s, nil
|
||||
return s, true
|
||||
}
|
||||
|
||||
func (m *streamsMap) PutStream(s *stream) error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue