You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A-http2Area: HTTP/2 specific.C-featureCategory: feature. This is adding a new feature.E-easyEffort: easy. A task that would be a great starting point for a new contributor.
It would be useful to be able to send the additional debug_data in HTTP/2 GOAWAY frames. The frame currently has a field to hold it, and uses that when decoding, but if we try to send a frame with extra data, it gets ignored. Here's some steps to get this done:
Set the payload length and serialize the debug_data in GoAway::encode
Add a unit test to h2-tests showing debug data was serialized.
The text was updated successfully, but these errors were encountered:
seanmonstar
added
E-easy
Effort: easy. A task that would be a great starting point for a new contributor.
C-feature
Category: feature. This is adding a new feature.
A-http2
Area: HTTP/2 specific.
labels
Apr 13, 2023
A-http2Area: HTTP/2 specific.C-featureCategory: feature. This is adding a new feature.E-easyEffort: easy. A task that would be a great starting point for a new contributor.
It would be useful to be able to send the additional
debug_data
in HTTP/2 GOAWAY frames. The frame currently has a field to hold it, and uses that when decoding, but if we try to send a frame with extra data, it gets ignored. Here's some steps to get this done:debug_data
inGoAway::encode
fn data(self, b: Into<Bytes>)
method to the frames test support.h2-tests
showing debug data was serialized.The text was updated successfully, but these errors were encountered: