fix handling of unknown frames in the stream hijacker

This commit is contained in:
Marten Seemann 2022-05-27 17:35:00 +02:00
parent 3088865952
commit 5cb2e8265c
4 changed files with 4 additions and 8 deletions

View file

@ -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)