mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
surface connection error as connection context cancelation cause (#3961)
* connection: surface connection error as connection context cancellation cause * docs: add note about connection context canellation cause
This commit is contained in:
parent
ab192a084d
commit
4378283f95
4 changed files with 21 additions and 13 deletions
|
@ -178,6 +178,8 @@ type Connection interface {
|
|||
// The error string will be sent to the peer.
|
||||
CloseWithError(ApplicationErrorCode, string) error
|
||||
// Context returns a context that is cancelled when the connection is closed.
|
||||
// The cancellation cause is set to the error that caused the connection to
|
||||
// close, or `context.Canceled` in case the listener is closed first.
|
||||
Context() context.Context
|
||||
// ConnectionState returns basic details about the QUIC connection.
|
||||
// Warning: This API should not be considered stable and might change soon.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue