-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implement HTTP/3 control stream handling #2949
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2949 +/- ##
==========================================
+ Coverage 86.04% 86.39% +0.35%
==========================================
Files 134 134
Lines 9286 9790 +504
==========================================
+ Hits 7990 8458 +468
- Misses 938 968 +30
- Partials 358 364 +6
Continue to review full report at Codecov.
|
fe30d87
to
f754bb2
Compare
f754bb2
to
a19c957
Compare
for { | ||
str, err := sess.AcceptUniStream(context.Background()) | ||
if err != nil { | ||
return |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can/should we somehow handle the error? Log at least?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same for the other exit points in this fn.
for { | ||
str, err := c.session.AcceptUniStream(context.Background()) | ||
if err != nil { | ||
return |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Handle / log the error?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same below
a19c957
to
808671e
Compare
We'll need this if we ever want to read the SETTINGS frame. This frame is used to negotiate HTTP/3 extensions.