mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
don't wrap close errors in the streams map
A close error might for example be a timeout error. We want to preserve the fact that it satisfies the net.Error interface and that Timeout() == true.
This commit is contained in:
parent
42ea34048a
commit
c03a8aaa97
4 changed files with 23 additions and 18 deletions
|
@ -49,6 +49,10 @@ func (m *outgoingUniStreamsMap) OpenStream() (sendStreamI, error) {
|
|||
m.mutex.Lock()
|
||||
defer m.mutex.Unlock()
|
||||
|
||||
if m.closeErr != nil {
|
||||
return nil, m.closeErr
|
||||
}
|
||||
|
||||
str, err := m.openStreamImpl()
|
||||
if err != nil {
|
||||
return nil, streamOpenErr{err}
|
||||
|
@ -61,6 +65,9 @@ func (m *outgoingUniStreamsMap) OpenStreamSync() (sendStreamI, error) {
|
|||
defer m.mutex.Unlock()
|
||||
|
||||
for {
|
||||
if m.closeErr != nil {
|
||||
return nil, m.closeErr
|
||||
}
|
||||
str, err := m.openStreamImpl()
|
||||
if err == nil {
|
||||
return str, nil
|
||||
|
@ -73,9 +80,6 @@ func (m *outgoingUniStreamsMap) OpenStreamSync() (sendStreamI, error) {
|
|||
}
|
||||
|
||||
func (m *outgoingUniStreamsMap) openStreamImpl() (sendStreamI, error) {
|
||||
if m.closeErr != nil {
|
||||
return nil, m.closeErr
|
||||
}
|
||||
if !m.maxStreamSet || m.nextStream > m.maxStream {
|
||||
if !m.blockedSent {
|
||||
if m.maxStreamSet {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue