Add HTTP 103 Early Hints status code#794
Conversation
vikanezrimaya
left a comment
There was a problem hiding this comment.
Please change your commit messages to conform to the contributing guidelines. Otherwise the patch is so trivial I believe it doesn't even require a review and can be merged right away.
Add support for HTTP 103 Early Hints status code as defined in RFC 8297. This allows servers to send preliminary response headers before the final response, improving performance for resource loading optimization. The status code is added to the existing status_codes! macro with proper documentation referencing RFC 8297 Section 2.
Thank you very much @vikanezrimaya for pointing out the missing header type on my commit message. I have update the commit message following the guidelines. |
|
Thanks for the PR! And the reminder to add this. I hope you don't mind, I merged #758 which was the same, but submitted several months ago. ❤️ |
feat(status): add HTTP 103 early hints status code
Add support for HTTP 103 Early Hints status code as defined in RFC 8297.
This allows servers to send preliminary response headers before the final
response, improving performance for resource loading optimization.
The status code is added to the existing status_codes! macro with proper
documentation referencing RFC 8297 Section 2.