mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
add a method to the session that blocks until it is closed
This commit is contained in:
parent
95c3db90a8
commit
cd02cc8f0f
5 changed files with 24 additions and 0 deletions
|
@ -37,6 +37,9 @@ type Session interface {
|
|||
RemoteAddr() net.Addr
|
||||
// Close closes the connection. The error will be sent to the remote peer in a CONNECTION_CLOSE frame. An error value of nil is allowed and will cause a normal PeerGoingAway to be sent.
|
||||
Close(error) error
|
||||
// WaitUntilClosed() blocks until the session is closed.
|
||||
// Warning: This API should not be considered stable and might change soon.
|
||||
WaitUntilClosed()
|
||||
}
|
||||
|
||||
// A NonFWSession is a QUIC connection between two peers half-way through the handshake.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue