mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
pass an error code to Session.CloseWithError
This commit is contained in:
parent
8b2992a243
commit
6d3d6dc47d
7 changed files with 27 additions and 22 deletions
|
@ -148,7 +148,8 @@ type Session interface {
|
|||
// Close the connection.
|
||||
io.Closer
|
||||
// Close the connection with an error.
|
||||
CloseWithError(error) error
|
||||
// The error must not be nil.
|
||||
CloseWithError(ErrorCode, error) error
|
||||
// The context is cancelled when the session is closed.
|
||||
// Warning: This API should not be considered stable and might change soon.
|
||||
Context() context.Context
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue