mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
surface stream error as stream context cancelation cause (#3970)
* send stream: surface error as stream context cancellation cause * Update send_stream_test.go Co-authored-by: Marten Seemann <martenseemann@gmail.com> --------- Co-authored-by: Marten Seemann <martenseemann@gmail.com>
This commit is contained in:
parent
5ae28928db
commit
27301f791f
3 changed files with 12 additions and 5 deletions
|
@ -122,6 +122,8 @@ type SendStream interface {
|
|||
// The Context is canceled as soon as the write-side of the stream is closed.
|
||||
// This happens when Close() or CancelWrite() is called, or when the peer
|
||||
// cancels the read-side of their stream.
|
||||
// The cancellation cause is set to the error that caused the stream to
|
||||
// close, or `context.Canceled` in case the stream is closed without error.
|
||||
Context() context.Context
|
||||
// SetWriteDeadline sets the deadline for future Write calls
|
||||
// and any currently-blocked Write call.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue