mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
Fix type
This commit is contained in:
parent
f3b8678ca6
commit
baa6005b9c
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ type Session interface {
|
|||
// AcceptStream returns the next stream opened by the peer, blocking until one is available.
|
||||
// Since stream 1 is reserved for the crypto stream, the first stream is either 2 (for a client) or 3 (for a server).
|
||||
AcceptStream() (Stream, error)
|
||||
// OpenStream opens a new QUIC stream, returning a special error when the peeer's concurrent stream limit is reached.
|
||||
// OpenStream opens a new QUIC stream, returning a special error when the peer's concurrent stream limit is reached.
|
||||
// New streams always have the smallest possible stream ID.
|
||||
// TODO: Enable testing for the special error
|
||||
OpenStream() (Stream, error)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue