## Feature Description Implement robust error handling for HTTP2 streams and connections, including correct error codes and resets. ## Problem/Use Case Ensures stability, interoperability, and compliance with protocol requirements. ## Proposed Solution - Support RST_STREAM, GOAWAY frames - Implement error codes as defined in RFC 7540 - Graceful shutdown and stream resets ## Code Example ```kotlin server.sendGoAway(lastStreamId = 5, errorCode = "NO_ERROR") ``` ## Alternatives Considered - Minimal error handling (not compliant) ## Additional Context - Would this be a breaking change? No - Priority: High - Related to #3 HTTP2 support ## Related Issues/PRs - #3 HTTP2 support
Feature Description
Implement robust error handling for HTTP2 streams and connections, including correct error codes and resets.
Problem/Use Case
Ensures stability, interoperability, and compliance with protocol requirements.
Proposed Solution
Code Example
Alternatives Considered
Additional Context
Related Issues/PRs