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
{{ message }}
This repository has been archived by the owner on Nov 6, 2022. It is now read-only.
I noticed that when the http-parser parses trailers, it does not call the on_headers_complete after the trailers have been parsed. It instead goes to on_message_complete
Is that the intended behavior? Was not sure if my implementation is wrong or if this is expected.
The text was updated successfully, but these errors were encountered:
Yes, that's the expected behavior. on_headers_complete signals the transition from headers to body, on_message_complete from body or trailing headers to end-of-message.
I noticed that when the http-parser parses trailers, it does not call the on_headers_complete after the trailers have been parsed. It instead goes to
on_message_complete
Is that the intended behavior? Was not sure if my implementation is wrong or if this is expected.
The text was updated successfully, but these errors were encountered: