mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix handling of unknown frames in the stream hijacker
This commit is contained in:
parent
3088865952
commit
5cb2e8265c
4 changed files with 4 additions and 8 deletions
|
@ -53,7 +53,7 @@ type RoundTripper struct {
|
|||
|
||||
// When set, this callback is called for the first unknown frame parsed on a bidirectional stream.
|
||||
// It is called right after parsing the frame type.
|
||||
// Callers can either process the frame and return control of the stream back to HTTP/3
|
||||
// Callers can either ignore the frame and return control of the stream back to HTTP/3
|
||||
// (by returning hijacked false).
|
||||
// Alternatively, callers can take over the QUIC stream (by returning hijacked true).
|
||||
StreamHijacker func(FrameType, quic.Connection, quic.Stream) (hijacked bool, err error)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue