mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
add a context to Session.Open{Uni}StreamSync
This commit is contained in:
parent
e63a991950
commit
2b8cece60a
20 changed files with 218 additions and 104 deletions
|
@ -109,8 +109,8 @@ func (m *streamsMap) OpenStream() (Stream, error) {
|
|||
return str, convertStreamError(err, protocol.StreamTypeBidi, m.perspective)
|
||||
}
|
||||
|
||||
func (m *streamsMap) OpenStreamSync() (Stream, error) {
|
||||
str, err := m.outgoingBidiStreams.OpenStreamSync()
|
||||
func (m *streamsMap) OpenStreamSync(ctx context.Context) (Stream, error) {
|
||||
str, err := m.outgoingBidiStreams.OpenStreamSync(ctx)
|
||||
return str, convertStreamError(err, protocol.StreamTypeBidi, m.perspective)
|
||||
}
|
||||
|
||||
|
@ -119,8 +119,8 @@ func (m *streamsMap) OpenUniStream() (SendStream, error) {
|
|||
return str, convertStreamError(err, protocol.StreamTypeBidi, m.perspective)
|
||||
}
|
||||
|
||||
func (m *streamsMap) OpenUniStreamSync() (SendStream, error) {
|
||||
str, err := m.outgoingUniStreams.OpenStreamSync()
|
||||
func (m *streamsMap) OpenUniStreamSync(ctx context.Context) (SendStream, error) {
|
||||
str, err := m.outgoingUniStreams.OpenStreamSync(ctx)
|
||||
return str, convertStreamError(err, protocol.StreamTypeUni, m.perspective)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue